forked from emberjs/guides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
35 lines (30 loc) · 781 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
source 'https://rubygems.org'
gem "redcarpet"
gem "activesupport"
gem "highline"
gem "rake"
gem "coderay", :git => "git://github.com/dgeb/coderay.git", :branch => "handlebars"
gem "middleman", '~> 3.0'
gem "thin"
gem "rack"
gem "listen"
gem "builder"
gem "middleman-alias"
gem "middleman-swiftype", :git => "git://github.com/LeonB/middleman-swiftype.git"
gem "underscore-rails"
source 'https://rails-assets.org' do
gem "rails-assets-js-md5"
gem "rails-assets-moment"
end
group :development, :test do
gem 'pry'
end
group :test do
gem "rspec"
gem "capybara"
gem "poltergeist"
gem "hashie"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin]
gem 'wdm', '>= 0.1.0', platforms: [:mingw, :mswin]