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
Update fails as requires symbolize_keys from rails extensions to hash ( http://apidock.com/rails/Hash/symbolize_keys ).
Should instead manually map key strings to key symbols.
def update(opts = {}) res = put "#{resource_path}/#{id}", :body => opts if res.success? res['data'] = Hash[res['data'].map {|k, v| [k.to_sym, v] }] @table.merge!(res['data']) else false end end
The text was updated successfully, but these errors were encountered:
Hi Joel. I'm going to use this repo in my project but it looks like You don't support gem anymore. Maybe I can help with that if you give me access.
Sorry, something went wrong.
Hey there @alexmamonchik , happy to hand over but I've not go ownership :(
No branches or pull requests
Update fails as requires symbolize_keys from rails extensions to hash ( http://apidock.com/rails/Hash/symbolize_keys ).
Should instead manually map key strings to key symbols.
The text was updated successfully, but these errors were encountered: