Skip to content
This repository has been archived by the owner on Jul 29, 2020. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bbck committed Feb 10, 2012
0 parents commit 62e7f08
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.bundle
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
source :rubygems

gem "sinatra"

group :development, :test do
gem "heroku"
gem "rspec"
gem "rack-test"
end
44 changes: 44 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
GEM
remote: http://rubygems.org/
specs:
addressable (2.2.6)
diff-lcs (1.1.3)
heroku (2.19.2)
launchy (>= 0.3.2)
rest-client (~> 1.6.1)
rubyzip
term-ansicolor (~> 1.0.5)
launchy (2.0.5)
addressable (~> 2.2.6)
mime-types (1.17.2)
rack (1.4.1)
rack-protection (1.2.0)
rack
rack-test (0.6.1)
rack (>= 1.0)
rest-client (1.6.7)
mime-types (>= 1.16)
rspec (2.8.0)
rspec-core (~> 2.8.0)
rspec-expectations (~> 2.8.0)
rspec-mocks (~> 2.8.0)
rspec-core (2.8.0)
rspec-expectations (2.8.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.8.0)
rubyzip (0.9.6.1)
sinatra (1.3.2)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
term-ansicolor (1.0.7)
tilt (1.3.3)

PLATFORMS
ruby

DEPENDENCIES
heroku
rack-test
rspec
sinatra
3 changes: 3 additions & 0 deletions auction_notifier.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
get '/' do
"Hello World!"
end
8 changes: 8 additions & 0 deletions config.ru
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
require 'rubygems'
require 'bundler'

Bundler.require

require './auction_notifier'

run Sinatra::Application

0 comments on commit 62e7f08

Please sign in to comment.