Project

absolute

0.0
No commit activity in last 3 years
No release in over 3 years
This rubygem does not have a description or summary.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
 Project Readme

absolute.gem

What is absolute.gem

Absolute provides a boilerplate near zero config base layer for web applications

Including:

  • Login and authentication integration
  • Registration and subscription services

Why?

Becase we dont like doing things 2wice.

Absolute has only just begun

The current version only does this:

install absolute gem

gem install absolute

Experiment 1

make a Rack (usually config.ru) file with:

require 'absolute'

Absolute::post_received do |data|

    #
    # data is the post body
    #

    puts "\n\nDID YOU: #{data}\n\n" 

end

run Absolute::App

start the rack (up)

rackup config.ru

post a spot of json

curl -i -X POST -d '{"c":"this"}' http://localhost:9292