From 9c4e56a8c127afd2e05dd90b3a689c288abf3b7f Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Mon, 29 Dec 2014 12:04:04 -0600 Subject: [PATCH] Ensure a compatible version of slop is installed 3.6 will work with byebug (Installed by rails 4.2) and ldp --- .travis.yml | 7 +++++-- Gemfile | 4 +--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 121ccd5..efdc54e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,11 @@ rvm: - 2.1 env: - - "RAILS_VERSION=4.2.0" - - "RAILS_VERSION=4.1.8" + matrix: + - "RAILS_VERSION=4.2.0" + - "RAILS_VERSION=4.1.8" + global: + - NOKOGIRI_USE_SYSTEM_LIBRARIES=true notifications: irc: "irc.freenode.org#projecthydra" diff --git a/Gemfile b/Gemfile index 7169079..6fa8e74 100644 --- a/Gemfile +++ b/Gemfile @@ -5,9 +5,7 @@ source "https://rubygems.org" # development dependencies will be added by default to the :development group. gemspec path: File.expand_path('..', __FILE__) -# To use debugger -# gem 'debugger' -# +gem 'slop', '~> 3.6.0' # This just helps us generate a valid Gemfile.lock when Rails 4.2 is installed (which requires byebug which has a dependency on slop) file = File.expand_path("Gemfile", ENV['ENGINE_CART_DESTINATION'] || ENV['RAILS_ROOT'] || File.expand_path("../spec/internal", __FILE__)) if File.exists?(file)