public
Description: A XHTML templating engine written in Ruby based on so-called pipes
Homepage: http://ramaze.net
Clone URL: git://github.com/manveru/nagoro.git
Click here to lend your support to: nagoro and make a donation at www.pledgie.com !
manveru (author)
Thu Oct 15 10:10:53 -0700 2009
commit  c4d0186e86c4a1df3c275febcf96eaf8aa789d80
tree    24775b409456689de0bfe20b230d2e232000bc7f
parent  e3beb9b6132b98808b3edf2c358d7e02cf1ab82b
nagoro / Rakefile
100644 30 lines (24 sloc) 0.872 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'rake'
require 'rake/clean'
require 'rake/gempackagetask'
require 'time'
require 'date'
 
PROJECT_SPECS = Dir['spec/{nagoro,example}/**/*.rb']
PROJECT_MODULE = 'Nagoro'
PROJECT_VERSION = ENV['VERSION'] || Date.today.strftime("%Y.%m.%d")
 
GEMSPEC = Gem::Specification.new{|s|
  s.name = 'nagoro'
  s.author = "Michael 'manveru' Fellinger"
  s.summary = "An extendible and fast templating engine in pure ruby."
  s.description = "An extendible and fast templating engine in pure ruby."
  s.email = 'm.fellinger@gmail.com'
  s.homepage = 'http://github.com/manveru/nagoro'
  s.platform = Gem::Platform::RUBY
  s.version = PROJECT_VERSION
  s.files = `git ls-files`.split("\n").sort
  s.has_rdoc = true
  s.require_path = 'lib'
}
 
Dir['tasks/*.rake'].each{|f| import(f) }
 
task :default => [:bacon]
 
CLEAN.include('')