We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, if you have Grape mounted in Rails 3.2.9 via routes.rb:
mount API => "/"
with the class defined in lib/api.rb
require 'grape' class API < Grape::API prefix "api" version 'v1' format :json resource "ping" do get do 'pong' end end end
If I change the code in the method 'get,' I have to restart the server, even in development, for the code to reload.
The text was updated successfully, but these errors were encountered:
This is a dup of #131. There're some solutions provided in #131, but I would really like an official way to support this via Railties.
Sorry, something went wrong.
No branches or pull requests
Currently, if you have Grape mounted in Rails 3.2.9 via routes.rb:
with the class defined in lib/api.rb
If I change the code in the method 'get,' I have to restart the server, even in development, for the code to reload.
The text was updated successfully, but these errors were encountered: