File: bacon.gemspec

package info (click to toggle)
ruby-bacon 1.2.0-6.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 200 kB
  • sloc: ruby: 772; makefile: 7
file content (25 lines) | stat: -rw-r--r-- 785 bytes parent folder | download | duplicates (3)
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           = `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.rdoc', 'RDOX']
  s.test_files      = []

  s.author          = 'Christian Neukirchen'
  s.email           = 'chneukirchen@gmail.com'
  s.homepage        = 'http://github.com/chneukirchen/bacon'
end