File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,19 +7,19 @@ before_install:
77 - gem install bundler
88
99after_success :
10- - coveralls
10+ # - coveralls
1111 - bundle exec danger
1212
1313rvm :
1414 - 2.4.5
1515 - 2.5.3
16- - 2.6.0-preview2
16+ - 2.6.0-rc1
1717env :
1818 - MODEL_PARSER=grape-swagger-entity
1919 - MODEL_PARSER=grape-swagger-representable
2020 - GRAPE_VERSION=0.19.2
2121 - GRAPE_VERSION=1.0.3
22- - GRAPE_VERSION=1.2.0
22+ - GRAPE_VERSION=1.2.2
2323 - GRAPE_VERSION=HEAD
2424
2525matrix :
Original file line number Diff line number Diff line change 77#### Fixes
88
99* Your contribution here.
10+
11+ ### 0.32.1 (December 7, 2018)
12+
13+ #### Fixes
14+
1015* [ #731 ] ( https://github.com/ruby-grape/grape-swagger/pull/731 ) : Skip empty parameters and tags arrays - [ @fotos ] ( https://github.com/fotos ) .
1116* [ #729 ] ( https://github.com/ruby-grape/grape-swagger/pull/729 ) : Allow empty security array for endpoints - [ @fotos ] ( https://github.com/fotos ) .
1217
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ group :development, :test do
3030 if RUBY_VERSION == '2.6.0'
3131 gem 'rubocop' , git : 'https://github.com/rubocop-hq/rubocop.git' , require : false
3232 else
33- gem 'rubocop' , '~> 0.60 ' , require : false
33+ gem 'rubocop' , '~> 0.61 ' , require : false
3434 end
3535end
3636
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module GrapeSwagger
4- VERSION = '0.32.0 '
4+ VERSION = '0.32.1 '
55end
Original file line number Diff line number Diff line change 22
33if RUBY_ENGINE == 'ruby'
44 require 'simplecov'
5- require 'coveralls'
5+ # require 'coveralls'
66
7- SimpleCov . formatter = Coveralls ::SimpleCov ::Formatter
7+ # SimpleCov.formatter = Coveralls::SimpleCov::Formatter
88 SimpleCov . start do
99 add_filter 'spec/'
10- add_filter 'example/'
10+ # add_filter 'example/'
1111 end
12- Coveralls . wear!
12+ # Coveralls.wear!
1313end
1414
1515$LOAD_PATH. unshift File . expand_path ( '../lib' , __dir__ )
You can’t perform that action at this time.
0 commit comments