-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gemfile
95 lines (77 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# frozen_string_literal: true
source 'http://rubygems.org'
###
### This file is for MRI
### Please see gemfiles/Gemfile.jruby for JRuby env
###
gem 'rails', '~> 4.2.11'
# Use unicorn as the web server
# gem 'unicorn'
group :development, :test do
gem 'fabrication'
gem 'haml_lint', require: false
gem 'launchy'
gem 'rspec-activemodel-mocks'
gem 'rspec-collection_matchers'
gem 'rspec-rails', '>= 2.13.1'
unless ENV['TRAVIS']
if RUBY_VERSION >= '2.0.0'
gem 'byebug'
else
gem 'debugger'
end
end
gem 'dotenv-rails'
gem 'rubocop', require: false
# sometimes rvm-capistrano can not be downloaded
# gem 'capistrano', '~> 2.0'
# gem 'rvm-capistrano'
end
group :test do
gem 'capybara', '>= 2.2.0'
gem 'capybara-webkit', '>= 1.0.0'
gem 'cucumber-rails', require: false
gem 'growl'
gem 'rb-fsevent'
gem 'simplecov'
gem 'spork'
gem 'webrat'
gem 'database_cleaner', '>= 1.2.0'
gem 'guard-cucumber'
gem 'guard-rspec'
gem 'guard-spork'
gem 'minitest'
end
group :production do
gem 'libv8', '>= 3.11.8.12'
gem 'redis-rails'
gem 'therubyracer', '>= 0.11.4'
# CVE-2017-1000248
gem 'redis-store', '>= 1.4.0'
end
gem 'mysql2'
# for AR-4.2
gem 'pg', '~> 0.21'
# for AR-4.2
gem 'sqlite3', '~> 1.3.11'
gem 'coffee-rails', '~> 4.1.0'
gem 'haml', '>= 5.0.0'
gem 'haml-rails'
gem 'i18n'
gem 'jquery-rails'
gem 'jquery-ui-rails', '>= 5.0.0'
gem 'memoist'
gem 'puma'
gem 'sass-rails', '~> 5.0'
gem 'settingslogic'
gem 'uglifier'
# currently twitter bootstrap 3 is not supported in Sanataro
gem 'twitter-bootstrap-rails', '>= 2.2.8', '< 3'
gem 'jbuilder'
gem 'rails_emoji'
gem 'underscore-rails'
gem 'doorkeeper', '>= 0.7.1'
gem 'rails-observers'
## for database cleaner and cucumber
gem 'connection_pool'
gem 'responders'