public
Description: Statistically correct benchmarking for Ruby.
Homepage:
Clone URL: git://github.com/Pistos/better-benchmark.git
Pistos (author)
Wed Feb 11 06:41:19 -0800 2009
commit  d59a8aabce08c604ec1b58308a34002a25c048af
tree    5a85c4cf0a927bb5f67c57f3ebf5f8616ae8acb3
parent  10bbdf6981c7bd752d17260e3ae76d7a81a38d9f
better-benchmark / better-benchmark.gemspec
100755 29 lines (24 sloc) 0.777 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
25
26
27
28
29
#!/usr/bin/env ruby
 
require 'rubygems'
 
spec = Gem::Specification.new do |s|
    s.name = 'better-benchmark'
    s.version = '0.7.0'
    s.summary = 'Statistically correct benchmarking for Ruby.'
    s.description = 'Statistically correct benchmarking for Ruby.'
    s.homepage = 'http://github.com/Pistos/better-benchmark/tree'
    s.requirements << 'The R project: http://www.r-project.org/'
    s.rubyforge_project = 'better-benchmark'
 
    s.authors = [ 'Pistos' ]
    s.email = 'pistos at purepistos dot net'
 
    s.files = [
        'README',
        'LICENCE',
        'example.rb',
        'run-example',
        'lib/better-benchmark.rb',
    ]
    s.extra_rdoc_files = [ 'README', 'LICENCE', ]
end
 
if $PROGRAM_NAME == __FILE__
    Gem::Builder.new( spec ).build
end