Use ruby-grape-danger gem. (#497)

This commit is contained in:
Daniel Doubrovkine (dB.) @dblockdotorg 2016-09-05 10:56:55 -04:00 committed by GitHub
parent 463b289c51
commit 5c8249f49e
3 changed files with 5 additions and 2 deletions

View File

@ -3,6 +3,7 @@
#### Features #### Features
* [#492](https://github.com/ruby-grape/grape/pull/492): Define security requirements on endpoint methods - [@tomregelink](https://github.com/tomregelink). * [#492](https://github.com/ruby-grape/grape/pull/492): Define security requirements on endpoint methods - [@tomregelink](https://github.com/tomregelink).
* [#497](https://github.com/ruby-grape/grape-swagger/pull/497): Use ruby-grape-danger in Dangerfile - [@dblock](https://github.com/dblock).
* Your contribution here. * Your contribution here.
#### Fixes #### Fixes

View File

@ -1 +1 @@
# inherits from https://github.com/ruby-grape/danger danger.import_dangerfile(gem: 'ruby-grape-danger')

View File

@ -16,4 +16,6 @@ if RUBY_VERSION < '2.2.2'
gem 'activesupport', '<5.0.0' gem 'activesupport', '<5.0.0'
end end
gem 'danger', '~> 2.1', require: false group :test do
gem 'ruby-grape-danger', '~> 0.1.0', require: false
end