forked from 18F/api.data.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
56 lines (39 loc) · 1.33 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.2"
gem "rake", "~> 10.3.1"
# Use a newer compass so we can use Sass 3.3. That seems to fix odd sass
# compilation issues with our nesting of the @import bootstrap inside
# embed.scss.
gem "compass", "~> 1.0.0.alpha.19"
# Live-reloading plugin
gem "middleman-livereload", "~> 3.3.3"
# 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.3.3"
# Swagger UI - Patched version with IE console fixes.
gem "rails-assets-GUI--swagger-ui", "2.0.3.patch1"
# JSON validation
gem "multi_json", "~> 1.9.3"
# jQuery
gem "rails-assets-jquery", "~> 1.11.1"
# Bootstrap
gem "bootstrap-sass", "~> 3.1.1.1"
gem 'middleman-sprockets', '3.3.2' # https://github.com/middleman/middleman/issues/1265
# Programmatic bootstrap modals
gem "rails-assets-bootbox", "~> 4.2.0"
# Form validation
gem "rails-assets-parsleyjs", "~> 2.0.0"
# Number formatting
gem "rails-assets-numeral", "~> 1.5.3"
# Date formatting
gem "rails-assets-moment", "~> 2.9.0"