-
Notifications
You must be signed in to change notification settings - Fork 476
Adds support for grape >= 1.2 #717
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
Changes from 3 commits
41dc9c6
8fcb0ea
c3de530
61d7edd
3197cee
0329a7a
d67981a
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ group :development, :test do | |
gem 'rake' | ||
gem 'rdoc' | ||
gem 'rspec', '~> 3.0' | ||
gem 'rubocop', '~> 0.59', require: false | ||
gem 'rubocop', '0.60', require: false | ||
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. please don't lock it, minor rubocop updates are much easier to handle then big ones 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. @dblock Could you guys agree on a decision? I'm happy either way as I see both views as valid, but I don't want to step over either of you 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. Lets take it to #719 |
||
end | ||
|
||
group :test do | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# frozen_string_literal: true | ||
|
||
GrapeInstance = if defined? Grape::API::Instance | ||
Grape::API::Instance | ||
else | ||
Grape::API | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module GrapeSwagger | ||
VERSION = '0.31.2' | ||
VERSION = '0.32.0' | ||
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. revert, will be done on next release |
||
end |
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.
please re-add it again, same for line 9