From e50d4d6b6e1acedabedf0dfe5d34410630856193 Mon Sep 17 00:00:00 2001 From: Jordon Bedwell Date: Wed, 20 Jan 2016 07:30:07 -0600 Subject: [PATCH] Fix bad UNLESS. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 091a7564..4e4189d2 100644 --- a/Gemfile +++ b/Gemfile @@ -7,7 +7,7 @@ group :development do gem "rubocop", :branch => :master, :github => "bbatsov/rubocop" gem "pry" - UNLESS RUBY_ENGINE == "jruby" + unless RUBY_ENGINE == "jruby" gem "byebug" end end