Pull spring gem entry into the Gemfile template instead of gemfile_entries so...

Pull spring gem entry into the Gemfile template instead of gemfile_entries so it can be grouped with the other development tools
上级 089661b6
......@@ -113,7 +113,6 @@ def gemfile_entries
javascript_gemfile_entry,
jbuilder_gemfile_entry,
sdoc_gemfile_entry,
spring_gemfile_entry,
psych_gemfile_entry,
@extra_entries].flatten.find_all(&@gem_filter)
end
......@@ -306,12 +305,6 @@ def javascript_runtime_gemfile_entry
end
end
def spring_gemfile_entry
return [] unless spring_install?
comment = 'Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring'
GemfileEntry.new('spring', nil, comment, group: :development)
end
def psych_gemfile_entry
return [] unless defined?(Rubinius)
......
......@@ -21,14 +21,23 @@ source 'https://rubygems.org'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
<% unless defined?(JRUBY_VERSION) -%>
# To use a debugger
# Call 'debugger' anywhere in the code to stop execution and get a debugger console
<%- if RUBY_VERSION < '2.0.0' -%>
# gem 'debugger', group: [:development, :test]
gem 'debugger'
<%- else -%>
# gem 'byebug', group: [:development, :test]
gem 'byebug'
<%- end -%>
# Access an IRB console on exceptions page and /console in development
gem 'web-console'
<%- if spring_install? %>
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
<% end -%>
<% end -%>
end
<% if RUBY_PLATFORM.match(/bccwin|cygwin|emx|mingw|mswin|wince/) -%>
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册