forked from le0pard/pgtune
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
28 lines (26 loc) · 727 Bytes
/
Gemfile
File metadata and controls
28 lines (26 loc) · 727 Bytes
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
source 'https://rubygems.org'
gem 'middleman', '3.4.0'
# EXTENSIONS
gem 'middleman-favicon-maker', '~> 3.5' # Generate favicon files in various sizes from a base image
gem 'middleman-minify-html' # min html
gem 'middleman-deploy' # Deploy site
# css
gem 'sass', '>= 3.3.0'
gem 'compass'
# assets
source 'https://rails-assets.org' do
gem 'rails-assets-jquery', '2.1.4'
gem 'rails-assets-fastclick', '1.0.6'
end
gem 'foundation-rails', '~> 5.5', require: false
# UTILS
gem 'oily_png' # faster PNG
gem 'therubyracer' # faster ExecJS
gem 'oj' # faster JSON
gem 'kramdown', '>= 1.9.0' # faster ExecJS
gem 'builder' # XML builder
gem 'erubis'
gem 'multi_json'
gem 'nokogiri'
gem 'mini_magick'
gem 'tzinfo'