Start by making a Cloud9 account. Cloud9 will ask for your credit card info, but they won't charge you unless you specifically ask to upgrade (we'll vouch for them!) If you'd prefer not to disclose your credit card info, feel free to use CodeAnywhere instead.
Once you have an account on Cloud9, follow the following steps:
- Create a new workspace; call it 'jumpstart_workspace'
- Choose 'custom' when asked to chose a template
Test your environment by following these steps:
- Create a new file called
hello_world.rb
; put it in the 'jumpstart_workspace' folder - write the line
puts "Hello World!"
inhello_world.rb
- Open a new terminal and run
ruby hello_world.rb
- You should see "Hello World!"