forked from startae/middleman-startae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
32 lines (23 loc) · 799 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
source 'https://rubygems.org'
ruby '2.2.3'
# HTTP server for Ruby/Rack recommended by Heroku
gem 'puma', '3.4.0'
# Middleman
gem 'middleman', '3.4.1'
# Middleman LiveReload
gem 'middleman-livereload', '3.4.6'
# Middleman Autoprefixer
gem 'middleman-autoprefixer', '2.7.0'
# Rack Middleware and Utilities
gem 'rack-contrib', '1.4.0'
# For faster file watcher updates on Windows:
gem 'wdm', '0.1.1', :platforms => [:mswin, :mingw]
# Windows does not come with time zone data
gem 'tzinfo-data', platforms: [:mswin, :mingw]
# Precompilers
gem 'slim', '3.0.7'
gem 'sassc', '1.10.0'
gem 'compass', '1.0.3' # Using compass temporarily so we can have sass 3.3, remove this when Middleman without compass dependency is released
gem 'coffee-script', '2.4.1'
# Generate fake data
gem 'faker', '1.6.3'