-
Notifications
You must be signed in to change notification settings - Fork 65
/
Gemfile
54 lines (48 loc) · 1.16 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
source 'https://rubygems.org'
ruby '~> 2.7'
gem 'rails', '~> 5.2.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
gem 'pg'
gem 'json'
gem 'memcachier'
gem 'dalli'
gem 'omniauth', '~> 2.0'
gem 'omniauth-rails_csrf_protection'
gem 'omniauth-twitter2'
gem 'omniauth-github'
gem 'tweet-button'
gem 'newrelic_rpm'
gem 'unicorn'
gem 'rack-timeout'
gem 'sprockets-rails', '~> 2.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.0.3'
gem 'kaminari'
gem 'ruby_identicon'
gem 'vimgolf', path: 'lib/vimgolf'
group :test, :development do
gem 'sqlite3', '~> 1.3.6'
gem 'rspec-rails', '~> 4.0'
gem 'rails-controller-testing'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'simplecov-cobertura', require: false
gem 'codeclimate-test-reporter', '~> 1.0.0'
gem 'capybara'
gem 'climate_control'
gem 'cuprite'
gem 'diff-lcs', require: false
gem 'execjs'
gem 'mini_racer'
gem 'launchy'
gem 'listen', '~> 3.2'
gem 'pry-byebug'
gem 'pry-stack_explorer'
gem 'factory_bot', '~> 4.0'
gem 'faker'
gem 'rubocop', '~> 1.9.1'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'webmock'
end