-
-
Notifications
You must be signed in to change notification settings - Fork 504
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Working on some rubocop cleanup. * Ran the auto-correct (should have done this in the first place) * Rubocop fixes * rubocop fixes
- Loading branch information
1 parent
b383867
commit 0683743
Showing
112 changed files
with
999 additions
and
2,106 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,78 +1,78 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
git_source(:github) do |repo_name| | ||
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") | ||
"https://github.com/#{repo_name}.git" | ||
end | ||
|
||
gem 'api-auth', '~> 1.5' | ||
gem 'bootstrap-sass' | ||
gem 'bugsnag' | ||
gem 'chartkick' | ||
gem 'cocoon' | ||
gem 'coffee-rails' | ||
gem 'devise' | ||
gem 'devise_invitable' | ||
gem 'dotenv-rails' | ||
gem 'font-awesome-rails' | ||
gem 'font-ionicons-rails' | ||
gem 'groupdate', '~> 3.2' | ||
gem 'jbuilder' | ||
gem 'jquery-rails' | ||
gem 'jquery-ui-rails' | ||
gem 'newrelic_rpm' | ||
gem 'paperclip' | ||
gem 'pg', '~> 0.2' | ||
gem 'prawn-rails' | ||
gem 'puma' | ||
gem 'rails', '~> 5.2.0' | ||
gem 'react-rails', '~> 2.3.0' | ||
gem 'sass-rails' | ||
gem 'simple_form' | ||
gem 'skylight' | ||
gem 'uglifier', '>= 1.3.0' | ||
gem 'therubyracer', '~> 0.12', platforms: :ruby | ||
gem 'yajl-ruby' | ||
gem 'toastr-rails' | ||
gem "api-auth", "~> 1.5" | ||
gem "bootstrap-sass" | ||
gem "bugsnag" | ||
gem "chartkick" | ||
gem "cocoon" | ||
gem "coffee-rails" | ||
gem "devise" | ||
gem "devise_invitable" | ||
gem "dotenv-rails" | ||
gem "font-awesome-rails" | ||
gem "font-ionicons-rails" | ||
gem "groupdate", "~> 3.2" | ||
gem "jbuilder" | ||
gem "jquery-rails" | ||
gem "jquery-ui-rails" | ||
gem "newrelic_rpm" | ||
gem "paperclip" | ||
gem "pg", "~> 0.2" | ||
gem "prawn-rails" | ||
gem "puma" | ||
gem "rails", "~> 5.2.0" | ||
gem "react-rails", "~> 2.3.0" | ||
gem "sass-rails" | ||
gem "simple_form" | ||
gem "skylight" | ||
gem "uglifier", ">= 1.3.0" | ||
gem "therubyracer", "~> 0.12", platforms: :ruby | ||
gem "yajl-ruby" | ||
gem "toastr-rails" | ||
|
||
group :development, :test do | ||
gem 'awesome_print' | ||
gem 'byebug', '~> 9.0', platform: :mri | ||
gem 'guard-rspec' | ||
gem 'pry' | ||
gem 'rspec-rails', '~> 3.5' | ||
gem 'terminal-notifier-guard' | ||
gem 'terminal-notifier' | ||
gem 'rubocop' | ||
gem "awesome_print" | ||
gem "byebug", "~> 9.0", platform: :mri | ||
gem "guard-rspec" | ||
gem "pry" | ||
gem "rspec-rails", "~> 3.5" | ||
gem "terminal-notifier-guard" | ||
gem "terminal-notifier" | ||
gem "rubocop" | ||
end | ||
|
||
group :development do | ||
gem 'annotate' | ||
gem 'binding_of_caller' | ||
gem 'better_errors' | ||
gem 'capistrano-rails' | ||
gem 'capistrano-rbenv' | ||
gem 'capistrano-bundler' | ||
gem 'capistrano3-puma' | ||
gem 'capistrano-rails-console', require: false | ||
gem 'listen', '~> 3.0.5' | ||
gem 'rails-erd' | ||
gem 'spring' | ||
gem 'spring-watcher-listen' | ||
gem 'web-console' | ||
gem "annotate" | ||
gem "binding_of_caller" | ||
gem "better_errors" | ||
gem "capistrano-rails" | ||
gem "capistrano-rbenv" | ||
gem "capistrano-bundler" | ||
gem "capistrano3-puma" | ||
gem "capistrano-rails-console", require: false | ||
gem "listen", "~> 3.0.5" | ||
gem "rails-erd" | ||
gem "spring" | ||
gem "spring-watcher-listen" | ||
gem "web-console" | ||
end | ||
|
||
group :test do | ||
gem 'capybara', '~> 2.18' | ||
gem 'capybara-screenshot' | ||
gem 'database_cleaner' | ||
gem 'factory_bot_rails' | ||
gem 'launchy' | ||
gem 'chromedriver-helper' | ||
gem 'selenium-webdriver' | ||
gem 'rails-controller-testing' | ||
gem 'webmock', '~> 2.1' | ||
gem "capybara", "~> 2.18" | ||
gem "capybara-screenshot" | ||
gem "database_cleaner" | ||
gem "factory_bot_rails" | ||
gem "launchy" | ||
gem "chromedriver-helper" | ||
gem "selenium-webdriver" | ||
gem "rails-controller-testing" | ||
gem "webmock", "~> 2.1" | ||
end | ||
|
||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', '~> 1.2', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | ||
gem "tzinfo-data", "~> 1.2", platforms: %i(mingw mswin x64_mingw jruby) |
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.