-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathGemfile
37 lines (29 loc) · 917 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
source 'https://rubygems.org'
gem 'builder'
gem 'rack-contrib'
gem 'rack-environment'
gem 'middleman'
gem 'middleman-sprockets'
gem 'middleman-gh-pages'
gem 'middleman-smusher'
gem 'middleman-livereload'
gem 'middleman-blog'
gem 'nokogiri' # required to generate blog post summaries
gem 'slim'
gem 'oj' # faster JSON
gem 'gibbon'
# gem 'libv8', '~> 3.11.8'
gem 'execjs'
# gem 'therubyracer' #faster ExecJS
# gem 'therubyracer-heroku', '0.8.1.pre3'
gem 'redcarpet' # Better Markdown
gem 'coderay'
# gem 'compass', :git => 'git://github.com/chriseppstein/compass.git', :ref => 'cbe1aa274cb3a245c77e3ffd5d49add471f5e566'
gem 'compass', :git => 'git://github.com/chriseppstein/compass.git', :tag => 'v0.13.alpha.4'
gem "sass-getunicode"
gem "activesupport"
group :development do
gem 'heroku'
gem 'shotgun'
gem 'fontcustom', :git => '[email protected]:hull/fontcustom.git', :branch => 'big-refactor'
end