-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
77 lines (67 loc) · 1.45 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
gem 'rails', '5.2.3'
gem 'pg'
gem 'puma'
gem 'sassc-rails'
gem 'jbuilder'
# gem 'redis', '~> 4.0'
# gem 'bcrypt', '~> 3.1.7'
# gem 'capistrano-rails', group: :development
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'hirb'
gem 'rails-flog', require: 'flog'
gem 'better_errors'
gem 'binding_of_caller'
gem 'awesome_print'
gem 'test-queue'
gem 'pry-rails'
gem 'pry-doc'
gem 'pry-byebug'
gem 'pry-stack_explorer'
end
group :development do
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'spring-commands-rspec'
gem 'bullet'
gem 'rubocop', require: false
gem 'rubocop-rails'
gem 'rubocop-performance'
gem 'guard-livereload', require: false
gem 'erd'
end
group :test do
gem 'capybara'
gem 'launchy'
gem 'shoulda-matchers'
gem 'webdrivers'
end
group :production do
gem 'uglifier'
gem 'google-analytics-rails'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'config'
gem 'haml-rails'
gem 'webpacker'
gem 'devise'
gem 'hashie'
gem 'rein'
gem 'seed-fu', '~> 2.3'
gem 'bootsnap', require: false
gem 'hashie-forbidden_attributes'
gem 'selenium-webdriver'
gem 'ransack'
gem 'kaminari'
gem 'active_hash'
gem 'meta-tags'
gem 'hurricane_trimar'