Skip to content

Commit c7b471a

Browse files
committed
Using Foreman and Bundler to launch the development environment.
1 parent 702ce6f commit c7b471a

File tree

4 files changed

+61
-0
lines changed

4 files changed

+61
-0
lines changed

Gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source :rubygems
2+
3+
group :development do
4+
gem "RedCloth"
5+
gem "foreman"
6+
gem "serve"
7+
gem "jekyll"
8+
gem "thin"
9+
end

Gemfile.lock

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
RedCloth (4.2.7)
5+
activesupport (3.0.7)
6+
classifier (1.3.3)
7+
fast-stemmer (>= 1.0.0)
8+
daemons (1.1.3)
9+
directory_watcher (1.4.0)
10+
eventmachine (0.12.10)
11+
fast-stemmer (1.0.0)
12+
foreman (0.13.0)
13+
term-ansicolor (~> 1.0.5)
14+
thor (>= 0.13.6)
15+
i18n (0.4.2)
16+
jekyll (0.10.0)
17+
classifier (>= 1.3.1)
18+
directory_watcher (>= 1.1.1)
19+
liquid (>= 1.9.0)
20+
maruku (>= 0.5.9)
21+
liquid (2.2.2)
22+
maruku (0.6.0)
23+
syntax (>= 1.0.0)
24+
rack (1.2.2)
25+
serve (1.0.0)
26+
activesupport (~> 3.0.1)
27+
i18n (~> 0.4.1)
28+
rack (~> 1.2.1)
29+
tzinfo (~> 0.3.23)
30+
syntax (1.0.0)
31+
term-ansicolor (1.0.5)
32+
thin (1.2.11)
33+
daemons (>= 1.0.9)
34+
eventmachine (>= 0.12.6)
35+
rack (>= 1.0.0)
36+
thor (0.14.6)
37+
tzinfo (0.3.27)
38+
39+
PLATFORMS
40+
ruby
41+
42+
DEPENDENCIES
43+
RedCloth
44+
foreman
45+
jekyll
46+
serve
47+
thin

Procfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jekyll: bundle exec jekyll --auto
2+
serve: bundle exec serve 4000 development _site

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@ exclude:
44
- CNAME
55
- TODO.textile
66
- script
7+
- Procfile
8+
- Gemfile
9+
- Gemfile.lock
710

811

0 commit comments

Comments
 (0)