forked from 18F/api.data.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
52 lines (37 loc) · 1.12 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
source "https://rubygems.org"
# 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]
# Middleman Gems
gem "middleman", "~> 4.1.14"
gem "middleman-livereload", "~> 3.4.6"
# Environment specific config with environment variables
gem "dotenv", "~> 2.1.1"
# Syntax highlighting
gem "middleman-syntax", "~> 3.0.0"
# Deploy to GitHub Pages
gem "middleman-gh-pages", "~> 0.3.1"
# Assets
gem "middleman-sprockets", "~> 4.1.0"
# Bootstrap
gem "bootstrap-sass", "~> 3.3.7"
source "https://rails-assets.org" do
# jQuery
gem "rails-assets-jquery", "~> 1.12.4"
# Programmatic bootstrap modals
gem "rails-assets-bootbox", "~> 4.4.0"
# Form validation
gem "rails-assets-parsleyjs", "~> 2.6.0"
# Icons
gem "rails-assets-font-awesome", "~> 4.7.0"
# Number formatting
gem "rails-assets-numeral", "~> 2.0.0"
# Date formatting
gem "rails-assets-moment", "~> 2.17.1"
end
group :development do
# Deployment
gem "capistrano", "~> 3.6.1"
gem "capistrano-rsync-bladrak", "~> 1.3.8"
end