-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrubystone.gemspec
More file actions
20 lines (18 loc) · 804 Bytes
/
rubystone.gemspec
File metadata and controls
20 lines (18 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |spec|
spec.name = 'rubystone'
spec.version = File.read File.expand_path(File.join('..', 'VERSION'), __FILE__)
spec.license = 'MIT'
spec.summary = 'Ruby porting of the Python PYSTONE script'
spec.description = <<-DESC
It provides a rough benchmark of the Ruby interpreter
via the `rubystone` executable.
DESC
spec.author = 'Maurizio De Santis'
spec.email = 'desantis.maurizio@gmail.com'
spec.homepage = 'https://github.com/mdesantis/rubystone'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['.']
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'rake', '~> 10.0'
end