aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-07-23 17:45:15 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-07-23 17:45:15 -0300
commitbec08e774438e0a6bab74f7439106e2bd02ecc5a (patch)
tree2295af9d69b1ebae84fb4c719180b59c8484f8a6 /Gemfile
parentcd7d414e48f537278043bfc77cfb4217e8c89c24 (diff)
parent558f8aa2ee80ee8cb859f0da9714dc93294c856b (diff)
downloadrails-bec08e774438e0a6bab74f7439106e2bd02ecc5a.tar.gz
rails-bec08e774438e0a6bab74f7439106e2bd02ecc5a.tar.bz2
rails-bec08e774438e0a6bab74f7439106e2bd02ecc5a.zip
Merge pull request #16267 from robin850/rbx-yaml
Set Psych as the YAML engine for Rubinius
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 60c4b31e5b..49a68c7d9d 100644
--- a/Gemfile
+++ b/Gemfile
@@ -87,6 +87,12 @@ platforms :jruby do
end
end
+platforms :rbx do
+ # The rubysl-yaml gem doesn't ship with Psych by default
+ # as it needs libyaml that isn't always available.
+ gem 'psych', '~> 2.0'
+end
+
# gems that are necessary for ActiveRecord tests with Oracle database
if ENV['ORACLE_ENHANCED']
platforms :ruby do