From c4c16ad68276522bb387371e47333ce499657df9 Mon Sep 17 00:00:00 2001 From: sanemat Date: Sun, 14 Apr 2013 22:48:05 +0900 Subject: [PATCH 1/3] Change rubygems source This solves deprecated message below: $ bundle install or $ bundle exec rake spec:all The source :rubygems is deprecated because HTTP requests are insecure. Please change your source to 'https://rubygems.org' if possible, or 'http://rubygems.org' if not. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 17a5b0eae..fe9680f27 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ -source :rubygems +source 'https://rubygems.org' gemspec From 1d6bc0df181050f363b1d33db11f3b88f6e6b815 Mon Sep 17 00:00:00 2001 From: sanemat Date: Sun, 14 Apr 2013 22:51:24 +0900 Subject: [PATCH 2/3] All tests pass in ruby 2.0 --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 87b773359..915edf3a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,3 @@ notifications: - sbazyl@google.com on_success: change on_failure: change -matrix: - allow_failures: - - rvm: 2.0.0 From 747df1ad8bd3400340ea8d3787e4f37f8717300d Mon Sep 17 00:00:00 2001 From: Ian MacLeod Date: Wed, 17 Apr 2013 22:46:53 -0700 Subject: [PATCH 3/3] Full jruby and rubinius coverage --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 915edf3a4..b2a21e056 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,11 @@ rvm: - 1.9.2 - 1.9.3 - 2.0.0 - - jruby + - rbx-18mode + - rbx-19mode + - jruby-18mode + - jruby-19mode + - jruby-20mode - ree script: "bundle exec rake spec:all" before_install: