-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathGemfile
More file actions
15 lines (14 loc) · 688 Bytes
/
Gemfile
File metadata and controls
15 lines (14 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source "https://rubygems.org"
gemspec
# Rubinius 2.0 distributes the standard library as gems
platform :rbx do
stdlibs = %w(benchmark cgi coverage delegate erb find logger net-http open-uri
optparse ostruct prettyprint singleton tempfile tmpdir yaml)
stdlibs.each { |lib| gem "rubysl-#{lib}", "~> 2.0" }
# rubysl-test-unit 2.0.2's gemspec relaxed its dependency on minitest to allow
# any version (previously, it specified "~> 4.7"). Minitest 5 doesn't have a
# Test::Unit compatibility layer like 4.x, so it doesn't work with Test::Unit
# at all. rubysl-test-unit 2.0.3 fixed this.
gem "rubysl-test-unit", ["~> 2.0", "!= 2.0.2"]
gem "psych", "~> 2.0"
end