Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit bb78458

Browse files
committed
let it run on heroku
1 parent 8b655c5 commit bb78458

File tree

4 files changed

+47
-0
lines changed

4 files changed

+47
-0
lines changed

.rvmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rvm use 1.9.2
2+
rvm_gemset_create_on_use_flag=1

Gemfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'bluecloth'
4+
gem 'nokogiri'
5+
gem 'showoff'
6+
gem 'gli'

Gemfile.lock

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
blankslate (2.1.2.4)
5+
bluecloth (2.2.0)
6+
gli (1.4.0)
7+
json (1.6.5)
8+
nokogiri (1.5.0)
9+
parslet (1.2.3)
10+
blankslate (~> 2.0)
11+
rack (1.4.1)
12+
rack-protection (1.2.0)
13+
rack
14+
showoff (0.7.0)
15+
bluecloth
16+
gli (>= 1.3.2)
17+
json
18+
nokogiri
19+
parslet
20+
sinatra
21+
sinatra (1.3.2)
22+
rack (~> 1.3, >= 1.3.6)
23+
rack-protection (~> 1.2)
24+
tilt (~> 1.3, >= 1.3.3)
25+
tilt (1.3.3)
26+
27+
PLATFORMS
28+
ruby
29+
30+
DEPENDENCIES
31+
bluecloth
32+
gli
33+
nokogiri
34+
showoff

config.ru

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
require "rubygems"
2+
require "bundler/setup"
3+
4+
require "showoff"
5+
run ShowOff.new

0 commit comments

Comments
 (0)