mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Don't need to use Array.wrap
This commit is contained in:
parent
027d964d89
commit
376cfeb83e
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|||
|
||||
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
|
||||
|
||||
<%= '# ' if options.dev? || options.edge? -%>s.add_dependency "rails", "<%= Array.wrap(rails_version_specifier).join('", "') %>"
|
||||
<%= '# ' if options.dev? || options.edge? -%>s.add_dependency "rails", "<%= Array(rails_version_specifier).join('", "') %>"
|
||||
<% unless options[:skip_active_record] -%>
|
||||
|
||||
s.add_development_dependency "<%= gem_for_database[0] %>"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
source 'https://rubygems.org'
|
||||
|
||||
<% if options[:skip_gemspec] -%>
|
||||
<%= '# ' if options.dev? || options.edge? -%>gem 'rails', '<%= Array.wrap(rails_version_specifier).join("', '") %>'
|
||||
<%= '# ' if options.dev? || options.edge? -%>gem 'rails', '<%= Array(rails_version_specifier).join("', '") %>'
|
||||
<% else -%>
|
||||
# Declare your gem's dependencies in <%= name %>.gemspec.
|
||||
# Bundler will treat runtime dependencies like base dependencies, and
|
||||
|
|
Loading…
Reference in a new issue