File: foo.gemspec

package info (click to toggle)
gem2deb 2.2.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,228 kB
  • sloc: ruby: 5,562; sh: 140; perl: 46; ansic: 33; makefile: 31
file content (12 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
spec = Gem::Specification.new do |s|
  s.platform = Gem::Platform::RUBY
  s.summary = "Simple foo library"
  s.name = 'foo'
  s.version = '0.0.1'
  s.requirements << 'none'
  s.require_path = 'lib'
  s.files = Dir.glob('lib/**') + Dir.glob('bin/*')
  s.description = <<EOF
foo ...
EOF
end