This repository has been archived by the owner on May 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
82 lines (66 loc) · 1.91 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
source 'https://rubygems.org'
ruby '2.5.0'
# `github` shorthand set to be use `https` protocol instead of `git` protocol.
# @see https://github.com/rails/rails/commit/12d5c21031446686898d5bac924ff3e9e34b6a7d
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.0'
gem 'pg', '~> 0.20.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 5.1'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# To use ActiveModel has_secure_password
gem 'bcrypt'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', group: :development
# To use debugger
# gem 'debugger'
gem 'activerecord-session_store', '~> 1.1'
gem 'exception_notification'
gem 'haml-rails'
gem 'simple_form', '~> 3.5'
gem 'kaminari'
gem 'factory_bot_rails'
gem 'faker'
gem 'cancan', github: 'ryanb/cancan', branch: '2.0'
gem 'therubyracer'
gem 'less-rails', '~> 3.0'
gem 'twitter-bootstrap-rails', '~> 2.2'
gem 'font-awesome-less', '~> 4.7'
gem 'jquery-ui-rails'
gem 'ransack'
gem 'memcachier'
gem 'dalli'
gem 'responders', '~> 2.0'
group :development do
gem 'i18n_generators', '~> 2.1'
gem 'better_errors'
gem 'binding_of_caller'
gem 'annotate'
gem 'pry-rails'
gem 'web-console', '~> 2.0'
end
group :development, :test do
gem 'rspec-rails', '~> 3.7'
gem 'capybara'
gem 'spring'
gem 'ci_reporter'
gem 'simplecov'
gem 'simplecov-rcov'
end
group :test do
gem 'test_after_commit' # to test after_commit
end
gem 'rails_12factor', group: :production