public
Description: Prettier Benchmarking for Ruby
Homepage:
Clone URL: git://github.com/wycats/benchwarmer.git
benchwarmer / benchwarmer.gemspec
100644 24 lines (21 sloc) 0.631 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
GEM = "benchwarmer"
VERSION = "0.5"
AUTHOR = "Yehuda Katz"
EMAIL = "wycats@gmail.com"
HOMEPAGE = "http://yehudakatz.com"
SUMMARY = "A gem that provides a prettier formatting and DSL for Ruby benchmarks"
 
GEMSPEC = Gem::Specification.new do |s|
  s.name = GEM
  s.version = VERSION
  s.platform = Gem::Platform::RUBY
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "LICENSE"]
  s.summary = SUMMARY
  s.description = s.summary
  s.author = AUTHOR
  s.email = EMAIL
  s.homepage = HOMEPAGE
  
  s.require_path = 'lib'
  s.autorequire = GEM
  s.files = %w(LICENSE README Rakefile lib/benchwarmer.rb lib/vendor/dictionary.rb)
end