Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional requirements #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ GreenScreen is a build monitoring tool that is designed to be used as a dynamic

== Getting Started ==

GreenScreen depends on Sinatra to run. You can install it via rubygems:
sudo gem install sinatra
GreenScreen depends on Sinatra and hpricot to run. You can install them via rubygems:
sudo gem install sinatra hpricot

To get the GreenScreen application itself, you can clone it from git here:
git clone git://github.com/martinjandrews/greenscreen.git
Expand Down
1 change: 1 addition & 0 deletions greenscreen.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
require 'rexml/document'
require 'hpricot'
require 'open-uri'
require 'yaml'

get '/' do
servers = YAML.load_file 'config.yml'
Expand Down