-
-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rubocop and gem specification cleanups
- Loading branch information
Showing
22 changed files
with
199 additions
and
388 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
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# frozen_string_literal: true | ||
|
||
|
||
# We'll revert this before the final merge. | ||
# gem "webpacker", git: 'https://github.com/rails/webpacker.git' | ||
gem "webpacker" | ||
gem "bootsnap", ">= 1.1.0", require: false | ||
gem "rails" | ||
gem "sqlite3" | ||
gem "sass-rails" | ||
gem "uglifier" | ||
gem "jquery-rails" | ||
gem "puma" | ||
|
||
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | ||
gem "turbolinks" if ENV["DISABLE_TURBOLINKS"].nil? || ENV["DISABLE_TURBOLINKS"].strip.empty? | ||
|
||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
gem "jbuilder" | ||
# bundle exec rake doc:rails generates the API under doc/api. | ||
gem "sdoc", group: :doc | ||
|
||
gem "sprockets" | ||
|
||
# Use Capistrano for deployment | ||
# gem 'capistrano-rails', group: :development | ||
gem "awesome_print" | ||
gem "mini_racer" | ||
|
||
group :development, :test do | ||
gem "listen" | ||
gem "pry" | ||
gem "pry-byebug" | ||
gem "pry-doc" | ||
gem "pry-rails" | ||
gem "pry-rescue" | ||
gem "rubocop", "1.2.0", require: false | ||
gem "scss_lint", require: false | ||
gem "spring" | ||
end | ||
|
||
group :test do | ||
gem "capybara" | ||
gem "capybara-screenshot" | ||
gem "coveralls", require: false | ||
gem "equivalent-xml" | ||
gem "generator_spec" | ||
gem "launchy" | ||
gem "rspec_junit_formatter" | ||
gem "rspec-rails" | ||
gem "rspec-retry" | ||
gem "selenium-webdriver" | ||
gem "webdrivers", "~> 3.0" | ||
end |
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
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
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
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
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
Oops, something went wrong.