A quick way to get some REST
A Ruby lib to swifly create a simple web application.
Install the gem:
gem install quicknap
Or add it to your Gemfile
:
gem 'quicknap'
require 'quicknap'
get '/' do
"Taking a quick nap: #{params}!"
end
post '/' do
"Posted: #{post_body}"
end
listen_at 6969
ruby quicknap_app.rb
Still under "heavy" development, feel free to contribute.