blob: 1494ea087dfdb9f079fc5f823d1ea74663034344 (
plain) (
blame)
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.1.11'
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 = `git ls-files`.split("\n") - [".gitignore"] + %w(RDOX ChangeLog)
s.bindir = 'bin'
s.executables << 'bacon'
s.require_path = 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README', 'RDOX']
s.test_files = []
s.author = 'Christian Neukirchen'
s.email = 'chneukirchen@gmail.com'
s.homepage = 'http://github.com/chneukirchen/bacon'
end
|