forked from solomonhawk/rizzo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
38 lines (34 loc) · 801 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
source 'https://rubygems.org'
gem 'rails', '~> 4.1.8'
gem 'haml'
gem 'sass'
gem 'sass-globbing'
gem 'haml-rails'
gem 'sass-rails'
gem 'requirejs-rails', git: 'https://github.com/jwhitley/requirejs-rails.git'
gem 'uglifier'
gem 'autoprefixer-rails'
gem 'unicorn'
gem 'rake'
gem 'sanitize'
gem 'dotenv'
gem 'redcarpet'
gem 'image-resizer', git: 'https://github.com/lonelyplanet/image-resizer.git', require: 'image_resizer'
group :test do
gem 'rspec-rails', '~> 2.14.0'
gem 'rubyzip', '< 1.0.0'
gem 'selenium-webdriver', '2.26.0'
gem 'capybara', '< 2.0.0'
gem 'cucumber'
gem 'cucumber-rails', :require => false
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry-rails'
end
group :production do
gem "lograge"
gem "logstash-event"
gem "airbrake"
end