This repository has been archived by the owner on Aug 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
146 lines (107 loc) · 3.07 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 2.6'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
# Semantic versioning
gem 'semverse'
# State Machine
gem 'state_machines'
gem 'state_machines-activerecord'
# Authentication
gem 'devise'
gem 'jwt-auth', '~> 5.0.1'
gem 'omniauth'
gem 'omniauth-cas'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
# Authorization
gem 'pundit'
# Data store providers
gem 'net-ssh'
gem 'rugged'
# JSON:API spec compliant resources
gem 'jsonapi-utils'
# Asynchronous processing
gem 'redis'
gem 'sidekiq'
# Filename sanitization
gem 'zaru'
# Accept header parsing
gem 'http-accept'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails'
# Use Puma as the application server
gem 'puma'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use ActiveModel has_secure_password
gem 'bcrypt'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors'
# Tame Rails logging
gem 'lograge'
group :development, :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.3.6'
# Enforce code style using Rubocop
gem 'rubocop', :require => false
gem 'rubocop-performance', :require => false
gem 'rubocop-rspec', :require => false
# Check for vulnerable versions of gems
gem 'bundler-audit', :require => false
# Coverage report
gem 'coveralls', :require => false
gem 'simplecov', :require => false
# Detect code smells
gem 'reek', :require => false
end
group :test do
# BDD testing for Ruby
gem 'rspec'
gem 'rspec-rails'
# Rails RSpec matchers
gem 'shoulda-matchers', :git => 'https://github.com/thoughtbot/shoulda-matchers.git', :branch => 'rails-5'
# State machine RSpec matchers
gem 'state_machines-rspec'
# Pundit RSpec matchers
gem 'pundit-matchers'
# JSONAPI RSpec matchers
gem 'jsonapi-matchers', :github => 'floriandejonckheere/jsonapi-matchers'
gem 'jsonapi-resources-matchers'
# Factory pattern for testing
gem 'factory_bot'
gem 'factory_bot_rails'
# Fake data generator
gem 'faker'
# Reset database
gem 'database_cleaner'
end
group :development do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', :platform => :mri
# Debugger
gem 'debase', '~> 0.2.1'
# Notify of file changes
gem 'listen'
# Git pre-commit hooks
gem 'overcommit', :require => false
# Analyze potential speed improvements
gem 'fasterer', :require => false
# Check for valid JSON syntax
gem 'json', :require => false
# Security vulnerability scanner
gem 'brakeman', :require => false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', :platforms => %i[mingw mswin x64_mingw jruby]
group :production do
# Use PostgreSQL as database
gem 'pg'
# Error tracking
gem 'bugsnag'
end