From 40a556fee63d9bb26a47ad4337228298b379b6e4 Mon Sep 17 00:00:00 2001 From: "Peter M. Goldstein" Date: Thu, 5 Dec 2013 08:32:17 -0800 Subject: [PATCH] Add rubinius-specific dependencies to get specs running --- .travis.yml | 4 ++-- Gemfile | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 09729e9c..70c26ba3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ services: rvm: - 1.9.3 - jruby-19mode - - rbx-2.1.1 + - rbx - 2.0.0 branches: only: @@ -17,4 +17,4 @@ notifications: matrix: allow_failures: - rvm: jruby-19mode - - rvm: rbx-2.1.1 + - rvm: rbx diff --git a/Gemfile b/Gemfile index 851fabc2..33c230df 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,9 @@ source 'https://rubygems.org' gemspec + +platforms :rbx do + gem 'rubysl', '~> 2.0' # if using anything in the ruby standard library + gem 'psych' # if using yaml + gem 'minitest' # if using minitest + gem 'rubinius-developer_tools' # if using any of coverage, debugger, profiler +end