-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
80 lines (62 loc) · 2.21 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
# frozen_string_literal: true
ruby '2.7.7'
source 'https://rubygems.org'
# webserver https://devcenter.heroku.com/articles/ruby-default-web-server
# gem 'puma'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'pg'
gem 'rails', '~>6.0'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# authorization
gem 'devise'
gem 'devise-i18n'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-google-oauth2'
gem 'omniauth-linkedin-oauth2'
gem 'omniauth-oauth2'
gem 'omniauth-rails_csrf_protection'
gem 'omniauth-twitter'
gem 'sendgrid-actionmailer' # for sending emails in production
# gem 'nokogiri', '1.10.5'
gem 'activity_notification'
group :development, :test do
# Coffee-rails and Uglifier demands ExecJS, which require JS runtime.
# So I pick up MiniRacer
# Production is on Heroku where they have NODE, so no rubyracer is needed there https://devcenter.heroku.com/articles/rails-asset-pipeline
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'mini_racer', platforms: :ruby
gem 'pry-byebug' # debugging with pry on ruby 2 ('step','next','finish','continue')
gem 'pry-rails' # pry in Rails console instead IRB
gem 'minitest-reporters' # better formatted output of Minitest
# managing secrets
gem 'dotenv-heroku' # upload secrets to HEROKU as ENV variables
gem 'dotenv-rails' # loads secrets from .env file into ENV variables
end
group :development do
# speeds up development by keeping your application running in the background.
gem 'spring'
gem 'spring-watcher-listen'
# style check, allways learning best practicies
gem 'rubocop', require: false
gem 'rubocop-rails'
gem 'annotate' # write DB structure as comments in models etc.
gem 'bundle-audit'
end
group :test do
gem 'cucumber-rails', require: false
gem 'database_cleaner', require: false
gem 'webdrivers', '~> 4.0', require: false
# TODO: refactor tests to delete this
gem 'rails-controller-testing' # for assert_template and assigns
end