forked from emberjs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
41 lines (37 loc) · 986 Bytes
/
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
source 'https://rubygems.org'
gem "redcarpet"
gem "activesupport"
gem "highline"
gem "rake"
gem "coderay", github: "dgeb/coderay", branch: "handlebars"
gem "middleman", '~> 3.0'
gem "middleman-blog", "~> 3.0"
gem "thin"
gem "rack"
gem "listen"
gem "builder"
gem "middleman-alias", github: "wagenet/middleman-alias", branch: "keep-search-and-hash"
gem "underscore-rails"
gem "gmaps4rails"
gem "geocoder"
gem "faraday"
gem "bourbon", "~> 4.2.7"
gem "neat", "~> 1.8.0"
gem 'bootstrap-sass', '~> 3.3.7'
gem 'sass-rails', '>= 3.2'
gem 'middleman-bootstrap-navbar'
gem 'eventmachine', '1.0.9.1'
gem 'loofah', ">= 2.2.2"
gem 'rails-html-sanitizer', '>= 1.0.4'
group :development, :test do
gem 'pry'
gem 'pry-byebug'
end
group :test do
gem "rspec"
gem "capybara"
gem "poltergeist"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
gem 'wdm', '>= 0.1.0', platforms: [:mingw, :mswin, :x64_mingw]