-
Notifications
You must be signed in to change notification settings - Fork 12
Rails 6.0 limit graphql #1625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rails 6.0 limit graphql #1625
Changes from all commits
d4cdb16
91b4904
74e46aa
259ac09
b3292b9
5320ab6
d3b6391
ffc9263
2590044
65d6322
d138687
94b6b93
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,8 +13,11 @@ gem 'httparty' | |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
| if next? | ||
| gem "rails", '6.0.6.1' | ||
| gem 'omniauth-oauth2' | ||
| gem 'graphql', "1.12" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bundler/OrderedGems: Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem graphql should appear before omniauth-oauth2. |
||
| else | ||
| gem 'rails', '~> 5.2' | ||
| gem 'graphql' | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bundler/DuplicatedGem: Gem graphql requirements already given on line 17 of the Gemfile. |
||
| end | ||
| # Use postgresql as the database for Active Record | ||
| gem 'pg', '~> 1.3' | ||
|
|
@@ -55,7 +58,6 @@ gem 'rest-client', '> 2.0' | |
| gem 'jsonpath' | ||
| gem 'simple_form' | ||
| gem 'pundit', "~> 2.2.0" | ||
| gem 'graphql' | ||
| gem 'graphiql-rails' | ||
| gem 'stoplight' | ||
| gem 'ranked-model' | ||
|
|
@@ -78,7 +80,7 @@ group :development, :test do | |
| # Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
| gem 'byebug', platform: [:mri, :mingw, :x64_mingw] | ||
| gem 'pry-byebug' | ||
| gem 'rspec-rails', '~> 3.8' | ||
| gem 'rspec-rails' | ||
| gem 'pry-rails' | ||
| gem 'webmock' | ||
| gem 'spring-commands-rspec' | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bundler/OrderedGems: Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem omniauth-oauth2 should appear before rails.