-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrujitsu.gemspec
27 lines (22 loc) · 1.29 KB
/
rujitsu.gemspec
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
26
27
# encoding: utf-8
Gem::Specification.new do |spec|
spec.name = "rujitsu"
spec.version = "0.5.0"
spec.date = "2010-06-03"
spec.authors = ["Brightbox Systems Ltd", "Caius Durling", "Rahoul Baruah"]
spec.email = %q{hello@brightbox.co.uk}
spec.summary = %q{Various helper methods to smooth over Ruby development}
spec.description = %q{Various helper methods to smooth over Ruby development}
spec.homepage = %q{http://github.com/brightbox/rujitsu}
spec.license = "MIT"
spec.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "lib/rujitsu.rb", "lib/rujitsu/all.rb", "lib/rujitsu/integer.rb", "lib/rujitsu/grammar.rb", "lib/rujitsu/inspect.rb", "lib/rujitsu/numeric.rb", "lib/rujitsu/object.rb", "lib/rujitsu/range.rb", "lib/rujitsu/string.rb", "lib/ujitsu.rb"]
spec.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rujitsu", "--main", "README.rdoc"]
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "timecop"
end