forked from NREL/api-umbrella-static-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
56 lines (39 loc) · 1.17 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
46
47
48
49
50
51
52
53
54
55
56
source "https://rubygems.org"
source "https://rails-assets.org"
gem "middleman", "~> 3.3.5"
gem "rake", "~> 10.4.2"
# Environment specific config with environment variables
gem "dotenv", "~> 0.11.1"
# Live-reloading plugin
gem "middleman-livereload", "~> 3.3.4"
# 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]
# Redirects
gem "middleman-alias", "~> 0.0.9"
# Syntax highlighting
gem "middleman-syntax", "~> 2.0.0"
# Deploy to GitHub Pages
gem "middleman-gh-pages", "~> 0.0.3"
# Markdown
gem "kramdown", "~> 1.4.1"
# JSON validation
gem "multi_json", "~> 1.10.1"
# jQuery
gem "rails-assets-jquery", "~> 1.11.2"
# Bootstrap
gem "bootstrap-sass", "~> 3.2.0.1"
# Programmatic bootstrap modals
gem "rails-assets-bootbox", "~> 4.3.0"
# Form validation
gem "rails-assets-parsleyjs", "~> 2.0.3"
# Icons
gem "rails-assets-fontawesome", "~> 4.1.0"
# JS runtime for execjs (used for asset minification).
gem "therubyracer", "~> 0.12.2"
group :development do
# Deployment
gem "capistrano", "~> 3.3.5"
gem "capistrano-bundler", "~> 1.1.4"
end