-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
121 lines (104 loc) · 3.18 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.3.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.1'
gem 'puma', '~> 6.0'
# Use mysql as the database for Active Record
gem 'mysql2'
# Use Uglifier as compressor for JavaScript assets
# gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
# gem 'coffee-rails'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Transpile app-like JavaScript. Read more:
gem 'shakapacker', '8.0.2'
# Use jquery as the JavaScript library
# gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', group: :doc
gem 'activerecord-session_store'
gem 'active_storage_validations'
gem 'ahoy_email'
gem 'aws-sdk-s3'
gem 'bootsnap'
gem 'chronic'
gem 'city-state'
# gem 'country_select'
gem 'd3-rails'
gem 'delayed_job_active_record'
gem 'descriptive_statistics', '~> 2.5.1', require: 'descriptive_statistics/safe'
gem 'devise-multi_email', git: 'https://github.com/mgmodell/devise-multi_email'
gem 'devise_token_auth', git: 'https://github.com/mgmodell/devise_token_auth'
# gem 'devise_token_auth', path: '/Users/micah/dev/devise_token_auth_multi_email'
gem 'email_address'
gem 'faker'
gem 'image_processing', '~> 1.0'
gem 'listen'
gem 'matrix'
gem 'net-smtp'
gem 'omniauth'
#This one is currently preventing oauth2 up update
gem 'omniauth-google-oauth2'
gem 'oj'
gem 'prawn'
gem 'prawn-table'
gem 'prawn-qrcode'
gem 'rails_12factor', group: :production
gem 'react_on_rails', '14.0.5'
gem 'stopwords-filter2', require: 'stopwords'
gem 'traco'
gem 'tzinfo-data'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'bullet'
gem 'byebug'
# gem 'derailed'
# gem 'ruby-debug-ide'
# gem 'debase'
gem 'htmlbeautifier'
gem 'htmlentities'
gem 'i18n_data'
# gem 'paperclip'
gem 'keypairs'
gem 'parallel_tests'
gem 'railroady'
gem 'rails-erd', require: false
gem 'rb-readline'
gem 'report_builder'
gem 'rspec'
gem 'rails_best_practices'
gem 'rubocop', '~> 1.66', require: false
gem 'reek'
gem 'rubocop-thread_safety'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-capybara'
gem 'solargraph'
gem 'traceroute'
end
group :test do
gem 'simplecov', require: false
gem 'webdrivers', '~> 5.3.1', require: false
# gem 'selenium-webdriver'
gem 'cucumber-rails', require: false
gem 'capybara'
gem 'database_cleaner'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end