Permalink
Cannot retrieve contributors at this time
Fetching contributors…

# require 'rake' | |
# require 'rake/testtask' | |
# require 'rake/rdoctask' | |
# | |
# desc 'Default: run unit tests.' | |
# task :default => :test | |
# | |
# desc 'Test the version_system plugin.' | |
# Rake::TestTask.new(:test) do |t| | |
# t.libs << 'lib' | |
# t.libs << 'test' | |
# t.pattern = 'test/**/*_test.rb' | |
# t.verbose = true | |
# end | |
# | |
# desc 'Generate documentation for the version_system plugin.' | |
# Rake::RDocTask.new(:rdoc) do |rdoc| | |
# rdoc.rdoc_dir = 'rdoc' | |
# rdoc.title = 'VersionSystem' | |
# rdoc.options << '--line-numbers' << '--inline-source' | |
# rdoc.rdoc_files.include('README') | |
# rdoc.rdoc_files.include('lib/**/*.rb') | |
# end | |
PKG_FILES = FileList[ '[a-zA-Z]*', 'generators/**/*', 'lib/**/*', 'rails/**/*', 'tasks/**/*', 'test/**/*' ] | |
spec = Gem::Specification.new do |s| | |
s.name = "yaffle" | |
s.version = "0.0.1" | |
s.author = "Gleeful Yaffler" | |
s.email = "yaffle@example.com" | |
s.homepage = "http://yafflers.example.com/" | |
s.platform = Gem::Platform::RUBY | |
s.summary = "Sharing Yaffle Goodness" | |
s.files = PKG_FILES.to_a | |
s.require_path = "lib" | |
s.has_rdoc = false | |
s.extra_rdoc_files = ["README"] | |
end | |
desc 'Turn this plugin into a gem.' | |
Rake::GemPackageTask.new(spec) do | |
|pkg| pkg.gem_spec = spec | |
end |