From a9f6b38bfd0fccbc34d70633cac082f41fed571c Mon Sep 17 00:00:00 2001
From: Alex Reisner <alex@alexreisner.com>
Date: Fri, 13 Feb 2015 12:21:53 -0500
Subject: [PATCH] Don't try to load byebug in non-MRI envs.

---
 Gemfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Gemfile b/Gemfile
index 32f179d7..b10a60ef 100644
--- a/Gemfile
+++ b/Gemfile
@@ -3,13 +3,13 @@ source "https://rubygems.org"
 group :development, :test do
   gem 'rake'
   gem 'mongoid', '2.6.0'
-  gem 'bson_ext', :platforms => :ruby
+  gem 'bson_ext', platforms: :ruby
   gem 'geoip'
   gem 'rubyzip'
   gem 'rails'
   gem 'test-unit' # needed for Ruby >=2.2.0
 
-  gem 'byebug'
+  gem 'byebug', platforms: :mri
 
   platforms :jruby do
     gem 'jruby-openssl'
-- 
GitLab