This repository has been archived by the owner on Apr 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
72 lines (67 loc) · 1.5 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
# frozen_string_literal: true
# rubocop:disable Metrics/BlockLength
ruby '2.3.3'
source 'https://rubygems.org' do
gem 'active_decorator'
gem 'cancancan'
gem 'coffee-rails'
gem 'config'
gem 'devise'
gem 'gon'
gem 'google-api-client'
gem 'jbuilder'
gem 'jquery-rails'
gem 'komachi_heartbeat'
gem 'mysql2'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'puma'
gem 'rails', '5.0.0.1'
gem 'rinku', require: 'rails_rinku'
gem 'rmail'
gem 'sass-rails'
gem 'slim-rails'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'uglifier'
gem 'virtus'
gem 'whenever', require: false
group :production do
gem 'sentry-raven'
gem 'skylight'
end
group :development do
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen'
gem 'rubocop', require: false
gem 'spring'
gem 'spring-watcher-listen'
gem 'web-console'
gem 'yard', require: false
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'database_rewinder'
gem 'json_expressions'
gem 'launchy'
gem 'poltergeist'
gem 'rails-controller-testing'
gem 'rspec-parameterized'
gem 'rspec-rails'
gem 'rspec_junit_formatter'
gem 'simplecov', require: false
gem 'validation_examples_matcher'
gem 'vcr'
gem 'webmock'
end
group :development, :test do
gem 'bullet'
gem 'byebug', platform: :mri
gem 'factory_girl_rails'
gem 'ffaker'
gem 'pry-byebug'
gem 'pry-rails'
end
end