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
|
Gem::Specification.new do |s|
s.name = "bacon"
s.version = '1.2.0'
s.platform = Gem::Platform::RUBY
s.summary = "a small RSpec clone"
s.description = <<-EOF
Bacon is a small RSpec clone weighing less than 350 LoC but
nevertheless providing all essential features.
http://github.com/chneukirchen/bacon
EOF
s.files = [".travis.yml","COPYING","ChangeLog","RDOX","README.rdoc","Rakefile","bacon.gemspec","bin/bacon","lib/autotest/bacon.rb","lib/autotest/bacon_rspec.rb","lib/autotest/discover.rb","lib/bacon.rb","metadata.yml","test/spec_bacon.rb","test/spec_nontrue.rb","test/spec_should.rb"]
s.bindir = 'bin'
s.executables << 'bacon'
s.require_path = 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README.rdoc', 'RDOX']
s.test_files = []
s.author = 'Christian Neukirchen'
s.email = 'chneukirchen@gmail.com'
s.homepage = 'http://github.com/chneukirchen/bacon'
end
|