-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (42 loc) · 1.37 KB
/
Gemfile
File metadata and controls
50 lines (42 loc) · 1.37 KB
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
source 'https://rubygems.org'
gem 'rails', '>= 5.0.0.rc1', '< 5.1'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks', '~> 5.x'
gem 'jbuilder', '~> 2.0'
gem 'bootstrap-sass', '~> 3.3', '>= 3.3.6'
gem 'devise', '~> 4.1', '>= 4.1.1'
gem 'cancancan', '~> 1.14'
gem 'jquery-turbolinks'
gem 'will_paginate', '~> 3.1.0'
gem 'stripe'
gem 'angularjs-rails'
gem 'dalli'
gem 'elevatezoom-rails'
group :production do
gem 'rails_12factor'
gem 'pg'
end
group :development, :test do
gem 'sqlite3'
gem 'byebug', platform: :mri
# Currently rspec isn't 100% rails 5 ready... hence the mess. See Issue #1527 on rspec-rails git
gem 'rspec-core', github: 'rspec/rspec-core', branch: 'master'
gem 'rspec-support', github: 'rspec/rspec-support', branch: 'master'
gem 'rspec-expectations', github: 'rspec/rspec-expectations', branch: 'master'
gem 'rspec-mocks', github: 'rspec/rspec-mocks', branch: 'master'
gem 'rspec-rails', github: 'rspec/rspec-rails', branch: 'master'
# Needed for rspec controller tests to access 'assert_template' function
gem 'rails-controller-testing'
gem 'factory_girl_rails'
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]