-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
39 lines (26 loc) · 811 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
38
39
source "https://rubygems.org"
gem "slim"
gem "bourbon", :require => false
# Live-reloading plugin
gem "middleman-livereload", "~> 3.1.0"
gem "middleman", "3.3.4"
# For faster file watcher updates on Windows:
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]
# Cross-templating language block fix for Ruby 1.8
platforms :mri_18 do
gem "ruby18_source_location"
end
# to sync to s3
# gem "middleman-sync", "~> 3.0.11"
gem 'middleman-s3_sync'
# gem 'image_optim', :git => '[email protected]:manofstone/image_optim.git'
# image optimization
# gem "middleman-imageoptim", :github => "manofstone/middleman-imageoptim"
gem "middleman-imageoptim"
# google closure compiler
gem "closure-compiler"
# for deploying to rackspace cloud
gem "middleman-deploy"
gem 'sanitize'
gem "maruku"
gem "middleman-syntax"