-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (40 loc) · 853 Bytes
/
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.1'
gem 'dotenv-rails'
gem 'active_attr'
gem 'bootsnap', require: false
gem 'coffee-rails'
gem 'config'
gem 'devise'
gem 'draper'
gem 'nadir'
gem 'font-awesome-sass'
gem 'meta-tags'
gem 'newrelic_rpm'
gem 'omniauth-google-oauth2'
gem 'rails'
gem 'pg'
gem 'puma'
gem 'sass-rails'
gem 'simple_form'
gem 'slack-ruby-client'
gem "slim-rails"
gem 'uglifier'
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem "capistrano", require: false
gem "capistrano-rails", require: false
gem 'capistrano-rbenv'
gem 'capistrano3-puma'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'rspec-rails'
end
group :test do
gem 'timecop'
end