-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (32 loc) · 966 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
40
41
42
43
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'
gem "middleman", "~> 3.3.6"
# Languages
gem "slim"
gem "kramdown"
gem "coffee-script"
# Stuffs (pick em or add em!)
gem "jquery-rails", :require => false
# gem "bootstrap-sass", "~> 3.2.0", :require => false
# gem "fastclick-rails", :require => false
# gem "angularjs-rails", :require => false
# gem "susy"
# gem "breakpoint"
# Optimize images
gem "middleman-imageoptim", "~> 0.1.4"
# Live-reloading plugin
gem "middleman-livereload", "~> 3.1.0"
# Deploy to GitHub pages (and other places)
gem 'middleman-deploy', '~> 0.3.0'
# For faster file watcher updates on Windows:
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]
# Windows does not come with time zone data
gem "tzinfo-data", platforms: [:mswin, :mingw]
# Autoprefixer
gem "middleman-autoprefixer"
# Uglifier
gem "uglifier"
# Faster JS compiles
gem 'therubyracer'
gem 'oj'