Skip to content

Instantly share code, notes, and snippets.

View vigosan's full-sized avatar
🏠
Working from home

Vicent Gozalbes vigosan

🏠
Working from home
View GitHub Profile
# MySQL. Versions 4.1 and 5.0 are recommended.
#
# Install the MySQL driver:
# gem install mysql2
#
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development:
adapter: mysql2
encoding: utf8
@vigosan
vigosan / gist:9357298
Last active August 29, 2015 13:57 — forked from fanktom/gist:1675562
# list
curl -v http://localhost:9292/api/v1/posts
# create
curl -v -H "Accept: application/json" -H "Content-type: application/json" -X POST -d '{"login":"foo","password":"bar"}' http://localhost:9292/api/v1/login
# read
curl -v http://localhost:9292/api/v1/posts/1.json
# update