This is an example application written in Ruby for introducing users to basic features of Travis CI.
First, fork this repository.
Clone to your local development machine, and have a look around.
$ git clone https://github.com/OWNER/travis-intro-ruby.git
$ cd travis-intro-ruby
To start the server, run
$ ruby lib/server.rb
If you visit http://localhost:8000, you should see a bare minimum web page.
You can confirm that the following runs our basic test, and passes:
$ ruby test/test_server.rb
For the remainder of this Workshop, we will work on a different branch on our
local machine, while following the instructions on GitHub.
You can name our local branch anything you like; default
is a fine choice:
$ git checkout -b default
Time to head on over to the next step.