Skip to content

Commit eaf2709

Browse files
authored
Fix warning: Skipping set of ruby2_keywords flag for process (again) (#761)
1 parent 55ffe80 commit eaf2709

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
Also deleted the `Gemfile` that was now a broken symlink.
55
please use `export BUNDLE_GEMFILE='gemfiles/Gemfile.rails61'; bundle exec rspec` to run the test suite
66

7+
## [v0.8.1](https://github.com/Apipie/apipie-rails/tree/v0.8.1) (2022-05-26)
8+
[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v0.8.0...v0.8.1)
9+
* Remove warning that came back as of [#752](https://github.com/Apipie/apipie-rails/pull/752). [#761](https://github.com/Apipie/apipie-rails/pull/761) (Jorge Santos / Mathieu Jobin)
10+
711
## [v0.8.0](https://github.com/Apipie/apipie-rails/tree/v0.8.0) (2022-05-24)
812
[Full Changelog](https://github.com/Apipie/apipie-rails/compare/v0.7.2...v0.8.0)
913
* Add support for scheme definition in Swagger docs. [#710](https://github.com/Apipie/apipie-rails/pull/710) (Dan Leyden)

lib/apipie/extractor/recorder.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def analyze(env, &block)
150150
end
151151

152152
module FunctionalTestRecording
153-
def process(*, **) # action, parameters = nil, session = nil, flash = nil, http_method = 'GET')
153+
def process(*) # action, parameters = nil, session = nil, flash = nil, http_method = 'GET')
154154
ret = super
155155
if Apipie.configuration.record
156156
Apipie::Extractor.call_recorder.analyze_functional_test(self)

lib/apipie/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Apipie
2-
VERSION = "0.8.0"
2+
VERSION = "0.8.1"
33
end

0 commit comments

Comments
 (0)