Sha256: 212ce9a2403d3675c0d93d27764185f2d661821b99724834487e51672856fe04
Contents?: true
Size: 748 Bytes
Versions: 1
Compression:
Stored size: 748 Bytes
Contents
require 'rubygems' require 'hoe' require './lib/diy.rb' task :default => [ :test ] Hoe.new('diy', DIY::VERSION) do |p| p.rubyforge_name = 'atomicobjectrb' p.author = 'Atomic Object' p.email = 'dev@atomicobject.com' p.summary = 'Constructor-based dependency injection container using YAML input.' p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n") p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1] p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") p.test_globs = 'test/*_test.rb' p.extra_deps << ['constructor', '>= 1.0.0'] end load "../tools/tasks/homepage.rake" load "../tools/tasks/release_tagging.rake" ReleaseTagging.new do |t| t.package = "diy" t.version = DIY::VERSION end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
diy-1.0.1 | Rakefile |