From a7fa76f6af26b8e75db022bb2daf1ab07684570f Mon Sep 17 00:00:00 2001 From: "Peter M. Goldstein" Date: Sat, 28 Dec 2013 00:01:41 -0800 Subject: [PATCH] Add Rubinius and 2.1.0 to Travis config. Add Rubinius gems to Gemfile. Remove jruby-openssl from Gemfile and README. Update JRuby version in README to 1.7.9 --- .travis.yml | 5 +++++ Gemfile | 4 +++- README.md | 10 +++------- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index ed6667e..d18132a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,4 +3,9 @@ rvm: - 1.9.2 - 1.9.3 - 2.0.0 + - 2.1.0 - jruby + - rbx +matrix: + allow_failures: + - rvm: rbx diff --git a/Gemfile b/Gemfile index 08c3acf..2fc94e1 100644 --- a/Gemfile +++ b/Gemfile @@ -2,4 +2,6 @@ source 'https://rubygems.org' gemspec -gem 'jruby-openssl', :platform => :jruby +platforms :rbx do + gem 'rubysl', '~> 2.0' +end diff --git a/README.md b/README.md index c2f3227..7cfb261 100644 --- a/README.md +++ b/README.md @@ -165,17 +165,13 @@ If you're having issue getting a long lived token with the server-side flow, mak Actively tested with the following Ruby versions: +- MRI 2.1.0 - MRI 2.0.0 - MRI 1.9.3 - MRI 1.9.2 - MRI 1.8.7 -- JRuby 1.7.4 - -*NB.* For JRuby < 1.7, you'll need to install the `jruby-openssl` gem. There's no way to automatically specify this in a Rubygem gemspec, so you need to manually add it your project's own Gemfile: - -```ruby -gem 'jruby-openssl', :platform => :jruby -``` +- JRuby 1.7.9 +- Rubinius (latest stable) ## License