This repository was archived by the owner on Apr 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
67 lines (56 loc) · 2.16 KB
/
Gemfile
File metadata and controls
67 lines (56 loc) · 2.16 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
source 'https://rubygems.org'
ruby '2.3.1'
# Rails
gem 'rails', '~> 5.0.0'
gem 'coffee-rails', '~> 4.2.1'
gem 'jquery-rails', '~> 4.1.1'
gem 'sass-rails', '~> 5.0.6'
gem 'slim-rails', '~> 3.1.0'
gem 'uglifier', '>= 2.7.1'
# Services
gem 'pg', '~> 0.18.4'
gem 'puma', '~> 3.6.0'
# Assets
gem 'bootstrap-sass', '~> 3.3.3'
gem 'font-awesome-rails', '~> 4.6.3.1'
gem 'aasm', '~> 4.2.0'
gem 'activerecord-humanized_errors', '~> 2.0.1'
gem 'activevalidators', '~> 4.0.0'
gem 'awesome_print', '~> 1.6.1'
gem 'faker', '~> 1.4.3'
gem 'lograge', '~> 0.4.1'
gem 'omniauth-github', '~> 1.1.2'
gem 'rake', '~> 10.5.0 '
group :development do
gem 'dotenv-rails', '~> 2.0.0'
gem 'powder', '~> 0.3.0'
gem 'rails_best_practices', '~> 1.16.0'
gem 'rubocop', '~> 0.42.0'
gem 'spring', '~> 1.7.2'
gem 'spring-commands-rspec', '~> 1.0.4'
end
group :development, :test do
gem 'capybara', '~> 2.8.1'
gem 'guard-rspec', '~> 4.7.3', require: false
gem 'pry-byebug', '~> 3.3.0'
gem 'pry-doc', '~> 0.9.0'
gem 'pry-rails', '~> 0.3.4'
gem 'rails-controller-testing', '~> 0.1.1'
gem 'rspec-rails', '~> 3.5.1', require: false
end
group :development, :review, :test do
gem 'fabrication', '~> 2.12.2'
end
group :production do
gem 'airbrake', '~> 5.4.3'
gem 'newrelic_rpm', '~> 3.16.0.318'
end
group :production, :review do
gem 'rails_12factor', '~> 0.0.3'
end
group :test do
gem 'coveralls', '~> 0.8.14', require: false
gem 'fakeweb', '~> 1.3.0'
gem 'poltergeist', '~> 1.10.0'
gem 'simplecov', '~> 0.12.0', require: false
end