Sha256: b57bb255e4a2fcdc3da85f41b07642a72f0882fe1c1c5bcb6f582ca36594e0c8

Contents?: true

Size: 872 Bytes

Versions: 2

Compression:

Stored size: 872 Bytes

Contents

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('')

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
manveru-nagoro-2009.05 Rakefile
nagoro-2009.05 Rakefile