-
-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address todos generated by rubocop for gemfiles and gemspec files (#295)
This partially addresses #293. Since rubocop generated quite a few todos, the commits addressing them are split up into a few different PRs that cover different files.
- Loading branch information
1 parent
124c89b
commit 879b47f
Showing
3 changed files
with
28 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
gemspec name: 'factory_bot_rails' | ||
gemspec name: "factory_bot_rails" | ||
|
||
gem 'appraisal' | ||
gem 'aruba' | ||
gem 'coffee-rails' | ||
gem 'cucumber', '1.3.19' | ||
gem 'jquery-rails' | ||
gem 'rake' | ||
gem 'rspec-rails' | ||
gem 'uglifier' | ||
gem 'test-unit' | ||
gem "appraisal" | ||
gem "aruba" | ||
gem "coffee-rails" | ||
gem "cucumber", "1.3.19" | ||
gem "jquery-rails" | ||
gem "rake" | ||
gem "rspec-rails" | ||
gem "test-unit" | ||
gem "uglifier" | ||
|
||
gem 'activerecord-jdbcsqlite3-adapter', platforms: :jruby | ||
gem 'jdbc-sqlite3', platforms: :jruby | ||
gem 'therubyrhino', platforms: :jruby | ||
gem 'jruby-openssl', platforms: :jruby | ||
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby | ||
gem "jdbc-sqlite3", platforms: :jruby | ||
gem "jruby-openssl", platforms: :jruby | ||
gem "therubyrhino", platforms: :jruby | ||
|
||
gem 'sqlite3', platforms: :ruby | ||
gem "sqlite3", platforms: :ruby | ||
|
||
gem "rubocop", "0.54", require: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Gem::Specification.new do |s| | ||
s.name = %q{factory_bot_rails} | ||
s.version = '4.11.1' | ||
s.name = "factory_bot_rails" | ||
s.version = "4.11.1" | ||
s.authors = ["Joe Ferris"] | ||
s.email = %q{jferris@thoughtbot.com} | ||
s.email = "jferris@thoughtbot.com" | ||
s.homepage = "https://github.com/thoughtbot/factory_bot_rails" | ||
s.summary = %q{factory_bot_rails provides integration between | ||
factory_bot and rails 3 or newer} | ||
s.description = %q{factory_bot_rails provides integration between | ||
factory_bot and rails 3 or newer (currently just automatic factory definition | ||
loading)} | ||
s.summary = "factory_bot_rails provides integration between "\ | ||
"factory_bot and rails 3 or newer" | ||
s.description = "factory_bot_rails provides integration between "\ | ||
"factory_bot and rails 3 or newer (currently just automatic "\ | ||
"factory definition loading)" | ||
|
||
s.files = Dir['lib/**/*'] + %w[CONTRIBUTING.md LICENSE NEWS README.md] | ||
s.files = Dir["lib/**/*"] + %w[CONTRIBUTING.md LICENSE NEWS README.md] | ||
s.require_paths = ["lib"] | ||
s.executables = [] | ||
s.license = "MIT" | ||
|
||
s.add_runtime_dependency('railties', '>= 3.0.0') | ||
s.add_runtime_dependency('factory_bot', '~> 4.11.1') | ||
s.add_runtime_dependency("factory_bot", "~> 4.11.1") | ||
s.add_runtime_dependency("railties", ">= 3.0.0") | ||
end |