This repository has been archived by the owner on Jun 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
92 lines (65 loc) · 1.55 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby File.read('.ruby-version').strip
gem 'bootsnap', require: false
gem 'rails', '~> 5.1.0'
gem 'rails-i18n'
gem 'warden', '!= 1.2.5'
gem 'pg', '~> 1.0.0'
gem 'bcrypt'
gem 'kramdown', '< 2.0.0'
gem 'pygments.rb'
gem 'devise'
gem 'devise-i18n'
gem 'autoprefixer-rails'
gem 'coffee-rails'
gem 'sass-rails', '> 4.0.0'
gem 'sprockets'
gem 'uglifier', '>= 1.0.3'
gem 'redis', '~> 3.0'
gem 'sidekiq', '~> 5.0.0'
gem 'sidekiq-cron'
gem 'rufus-scheduler', '~> 3.4.0'
gem 'terrapin'
gem 'content_for_in_controllers'
gem 'kaminari'
group :development, :test do
gem 'active_record_query_trace'
gem 'capybara'
gem 'capybara-screenshot'
gem 'email_spec'
gem 'factory_bot_rails'
gem 'faker'
gem 'guard-rspec'
gem 'listen'
gem 'pry-byebug'
gem 'puma'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'selenium-webdriver'
gem 'spring-commands-rspec'
gem 'terminal-notifier-guard'
end
gem 'rails-controller-testing', require: false, group: :test
gem 'simplecov', require: false, group: :test
gem 'spring', group: :development
gem 'web-console', '~> 3.5', group: :development
gem 'libnotify',
group: :development,
require: RUBY_PLATFORM.include?('linux') && 'libnotify'
gem 'font-awesome-sass', '<5.0'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'email_validator'
gem 'validate_url'
gem 'paperclip'
gem 'stringex'
gem 'diffy'
gem 'exception_notification'
gem 'htmlentities'
gem 'unicorn', group: :production
gem 'oauth'
gem 'twitter'
gem 'appsignal'
gem 'invisible_captcha'
# eof