-
Notifications
You must be signed in to change notification settings - Fork 472
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
Development deps in Gemfile #546
Changes from all commits
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
language: ruby | ||
|
||
sudo: false | ||
before_install: | ||
- gem install bundler | ||
|
||
matrix: | ||
include: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,7 @@ | |
|
||
#### Fixes | ||
|
||
* Your contribution here. | ||
|
||
* [#546](https://github.com/ruby-grape/grape-swagger/pull/546): Move development dependencies to Gemfile - [@olleolleolle](https://github.com/olleolleolle). | ||
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 can you re-add it above your entry 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. Oh, of course. 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. There 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. sorry, my fault, meant after |
||
|
||
### 0.25.2 (November 30, 2016) | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,36 @@ | ||
source 'http://rubygems.org' | ||
|
||
ruby RUBY_VERSION | ||
|
||
gemspec | ||
|
||
case version = ENV['GRAPE_VERSION'] || '~> 0.18' | ||
when 'HEAD' | ||
gem 'grape', github: 'ruby-grape/grape' | ||
else | ||
gem 'grape', version | ||
end | ||
gem 'grape', case version = ENV['GRAPE_VERSION'] || '~> 0.18' | ||
when 'HEAD' | ||
{ github: 'ruby-grape/grape' } | ||
else | ||
version | ||
end | ||
|
||
gem ENV['MODEL_PARSER'] if ENV.key?('MODEL_PARSER') | ||
|
||
if RUBY_VERSION < '2.2.2' | ||
gem 'rack', '<2.0.0' | ||
gem 'activesupport', '<5.0.0' | ||
group :development, :test do | ||
gem 'bundler' | ||
gem 'kramdown' | ||
gem 'pry', platforms: [:mri] | ||
gem 'pry-byebug', platforms: [:mri] | ||
gem 'rack' | ||
gem 'rack-cors' | ||
gem 'rack-test' | ||
gem 'rake' | ||
gem 'rdoc' | ||
gem 'redcarpet', platforms: [:mri] | ||
gem 'rouge', platforms: [:mri] | ||
gem 'rspec', '~> 3.0' | ||
gem 'rubocop', '~> 0.40' | ||
gem 'shoulda' | ||
end | ||
|
||
group :test do | ||
gem 'ruby-grape-danger', '~> 0.1.0', require: false | ||
gem 'grape-entity' | ||
gem 'grape-swagger-entity' | ||
gem 'ruby-grape-danger', '~> 0.1.0', require: false | ||
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.
👍