-
Notifications
You must be signed in to change notification settings - Fork 2
/
rubinius-bridge.gemspec
30 lines (25 loc) · 1.14 KB
/
rubinius-bridge.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
28
29
30
# coding: utf-8
require './lib/rubinius/bridge/version'
Gem::Specification.new do |spec|
spec.name = "rubinius-bridge"
spec.version = Rubinius::Bridge::VERSION
spec.authors = ["Brian Shirai"]
spec.email = ["[email protected]"]
spec.description = <<-EOD
Classes and methods to run other Rubinius tools under MRI.
Rubinius needs to bootstrap building its core library and code tools
because they are written in Ruby. One way to do this is to run the
code tools under MRI. To do so requires adding some classes and methods
that are built into Rubinius.
EOD
spec.summary = %q{Classes and methods to run other Rubinius tools under MRI.}
spec.homepage = "https://github.com/rubinius/rubinius-bridge"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "redcard", "~> 1.0"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", ">= 12.3.3"
end