-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathGemfile
45 lines (32 loc) · 1.11 KB
/
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
44
45
# If you do not have OpenSSL installed, update
# the following line to use 'http://' instead
source 'https://rubygems.org'
gem 'middleman', '~>4.1.0'
# Live-reloading plugin
gem 'middleman-livereload', '~>3.4.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, :jruby]
# Helps to require all helper methods
gem 'require_all', '1.3.3'
# Autoprefixer for all vendor-specific CSS attributes
gem 'middleman-autoprefixer', '~>2.7.0'
# Use sprokets for assets + compass
gem 'middleman-compass', '4.0.1'
gem 'middleman-sprockets', '4.0.0'
# Generating articles
gem 'middleman-blog', '~> 4.0'
# Boostrap as SASS
gem 'bootstrap', '~> 4.0.0.alpha4'
gem 'rails-assets-tether', '>= 1.1.0'
gem 'sass', '3.4.19'
# Grab jQuery
gem 'jquery-middleman', '3.1.2'
# Markdown redcarpet parsing engine + syntax highlighter for middleman
gem 'middleman-syntax', '~>3.0.0'
gem 'redcarpet', '3.3.3'
# Publish middleman website to gh-pages
gem 'middleman-gh-pages', '~>0.3.0'
# Rake tasks
gem 'rake', '10.5.0'