This is a free, ready-to-use, PHP-based REST framework by Sheldon C.C. Senseng, currently a tech lead at Ripple Edge Development. And since this is the quote I saw on his Google+, I thought it proper to share.
Anyway, you can access the code here below. I asked him why it wasn’t on GitHub, and he said he preferred subversion…
http://svn.theredfla.me/svn/framework/trunk/
When I asked him why he made it, he said it was because he was lazy. Umm..yeah right.
So basically, you get to rest extra, and code less, because of this opensource REST server! It’s free and open anyone to use, but just know that it is under the MIT License.
Since I last pulled the code, the install script is only for Linux, so I had to use a VM.
In your terminal:
1) Install subversion:
sudo apt-get install subversion
2) Create a folder and go there. In my case, I made www:
cd /var/www (or whatever folder)
3) Check out the code:
svn co http://svn.theredfla.me/svn/framework/trunk/
username/password is guest/guest
4) Install PHP, APACHE, MySQL:
sudo apt-get install php5 php5-mysql msql-server
5) Some configuration :
sudo a2enmod rewrite
sudo vi /etc/apache2/sites-available/default
Change AllowOverride None to AllowOverride All
6) Restart server :
sudo /etc/init.d/apache2 restart
7) Run the install script:
sudo ./install.sh
Happy Weekend!
Dev like a Diva,
Fran

So awesome! Thanks for this!