forked from Hacktoberfest/hacktoberfest-2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
101 lines (67 loc) · 2.04 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
93
94
95
96
97
98
99
100
101
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(File.expand_path("../.ruby-version", __FILE__)).chomp
gem 'airbrake', '~> 9.4'
gem 'airrecord'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bulma-rails', '~> 0.7.5'
gem 'coffee-rails', '~> 4.2'
gem 'dalli', '~> 2.7'
gem 'faraday'
gem 'faraday_middleware'
gem 'health_check'
gem 'jbuilder', '~> 2.5'
gem 'kramdown'
gem 'loofah', '>= 2.3.1'
# Must be locked before version 3.0 for use with airrecord gems
# See: https://github.com/sirupsen/airrecord/issues/63
gem 'net-http-persistent', '~> 2.9'
gem 'octokit'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection', '~> 0.1'
gem 'puma', '~> 4.0'
gem 'rails', '~> 5.2.3'
gem 'sass-rails', '~> 5.0'
gem 'sidekiq', '< 6.0'
unless ENV['RAILS_ENV'] == 'production' || ENV['RAILS_ENV'] == 'staging'
require 'dotenv'
Dotenv.load['BUNDLE_ENTERPRISE__CONTRIBSYS__COM']
end
install_if -> { ENV['BUNDLE_ENTERPRISE__CONTRIBSYS__COM'] } do
source 'https://enterprise.contribsys.com/' do
gem 'sidekiq-pro'
gem 'sidekiq-ent'
end
end
gem 'state_machines'
gem 'state_machines-activerecord'
gem 'pg'
gem 'pry'
gem 'turbolinks', '~> 5'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'rubocop-rails'
gem 'shoulda-matchers'
gem 'vcr'
gem 'webmock'
end
group :development do
gem 'capistrano', '~> 3.11', require: false
gem 'capistrano-bundler', '~> 1.6', require: false
gem 'capistrano-dotenv', require: false
gem 'capistrano-rails', '~> 1.4', require: false
gem 'capistrano3-puma', '~> 4.0', require: false
gem 'capistrano-sidekiq', require: false
gem 'guard-rspec', require: false
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'terminal-notifier-guard'
gem 'web-console', '>= 3.3.0'
end