Skip to content

Commit 8d7579f

Browse files
committed
Let foreman to run all processes we need
1 parent 1932bd2 commit 8d7579f

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ source 'https://rubygems.org'
22

33
gem 'compass'
44
gem 'zurb-foundation'
5+
gem 'foreman'

Gemfile.lock

+4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ GEM
66
chunky_png (~> 1.2)
77
fssm (>= 0.2.7)
88
sass (~> 3.1)
9+
foreman (0.62.0)
10+
thor (>= 0.13.6)
911
fssm (0.2.10)
1012
rake (10.0.3)
1113
sass (3.2.6)
14+
thor (0.17.0)
1215
zurb-foundation (4.0.4)
1316
rake
1417
sass (>= 3.2.0)
@@ -18,4 +21,5 @@ PLATFORMS
1821

1922
DEPENDENCIES
2023
compass
24+
foreman
2125
zurb-foundation

Procfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
compass: compass watch
2+
toaster: toaster -dw
3+
specs: toaster -dw -f toaster_spec.coffee

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ Always know when it's time to increase blinds during Holdem Poker tournament gam
66
Developing
77
==========
88

9-
$ toaster -dw
10-
$ compass watch
9+
You need Ruby and Node.js installed
10+
11+
$ bundle
12+
$ foreman start
1113
$ open index.html
1214

13-
Running tests
14-
=============
15+
To run tests:
1516

16-
$ toaster -dw -f toaster_spec.coffee
1717
$ open SpecRunner.html
18+

0 commit comments

Comments
 (0)