-
Notifications
You must be signed in to change notification settings - Fork 467
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
Deprecation warnings #483
Comments
I am currently switching to Rails 5.0.0 and also see these warnings although in my project do not use
gives the following output (within apipie-rails gem): /Users/andreydeineko/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/apipie-rails-0.3.6/app/controllers/apipie/apipies_controller.rb
9: before_filter :authenticate
/Users/andreydeineko/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/apipie-rails-0.3.6/CHANGELOG.md
87:* ability to use before_filter instead of overriding the action method
/Users/andreydeineko/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/apipie-rails-0.3.6/lib/apipie/extractor.rb
12: before_filter do |controller|
/Users/andreydeineko/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/apipie-rails-0.3.6/README.rst
531: controller method ``apipie_validations`` (typically in a before_filter).
729:Parameter validation normally happens after before_filters, just before
736: before_filter: :apipie_validations
738:This is useful if you have before_filters which use parameter values: just add them
739:after the ``apipie_validations`` before_filter. |
Same here with
|
The
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get the following warnings when running my tests using Ruby 2.3.0, Rails 5.0.0.1:
Where the line in question is
The only reference to said method is 1
ApplicationController
is currently empty for me. I would guess it's caused by 2I also saw a warning about use of
each_key
on params, see 3 due toparams
no longer being a subclass ofHash
.The text was updated successfully, but these errors were encountered: