Skip to content
This repository has been archived by the owner on Apr 2, 2018. It is now read-only.

Latest commit

 

History

History
36 lines (22 loc) · 1.13 KB

README.md

File metadata and controls

36 lines (22 loc) · 1.13 KB

rubyinstaller-org

Important

This codebase is an unfinished attempt to build a Sinatra-based application for the RubyInstaller project. The live website is based on this repository: https://github.com/oneclick/rubyinstaller.org-website

If you want to report issues with current site, please use it's issue tracker.

Getting Started

The website requires Ruby 1.9.3 (patchlevel 0 at this time) and Isolate

Simply invoke rake isolate:env so it install all the required dependencies for you.

These dependencies will be installed inside tmp directory, so it will not pollute your system.

Running locally

During development you can run the application using the following command

ruby -S rake isolate:sh["ruby -S rackup"]

I know, very mouthful, but using ruby -S avoid hitting the Ctrl+C issue generated by the usage of batch files:

>> Stopping ...
Terminate batch job (Y/N)?

You never know if you need to say yes or no to that...

Until we have rake.exe and rackup.exe scripts, this is the only workaround.