aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-02-26 20:08:22 -0300
committerRafael França <rafaelmfranca@gmail.com>2016-02-26 20:08:22 -0300
commit84252a4f3cd0f85ce4e35cd912750a445cbfe382 (patch)
treeea163893555d15f9832342aaf430d57432752084 /railties/lib/rails
parentbf1ac69636f6dabfd993afd4ad29416514816daf (diff)
parent25a8ba935fad69d3dfe038227736976a9ab2044f (diff)
downloadrails-84252a4f3cd0f85ce4e35cd912750a445cbfe382.tar.gz
rails-84252a4f3cd0f85ce4e35cd912750a445cbfe382.tar.bz2
rails-84252a4f3cd0f85ce4e35cd912750a445cbfe382.zip
Merge pull request #23920 from ianks/master
Specify plaform: :mri for byebug
Diffstat (limited to 'railties/lib/rails')
-rw-r--r--railties/lib/rails/generators/rails/app/templates/Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile
index f3bc9d9734..e8ec214b28 100644
--- a/railties/lib/rails/generators/rails/app/templates/Gemfile
+++ b/railties/lib/rails/generators/rails/app/templates/Gemfile
@@ -26,7 +26,7 @@ source 'https://rubygems.org'
<% if RUBY_ENGINE == 'ruby' -%>
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
- gem 'byebug'
+ gem 'byebug', platform: :mri
end
group :development do