-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gemfile
104 lines (83 loc) · 3.16 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
# frozen_string_literal: true
source 'http://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1', '>= 6.1.7.8'
# Use sqlite3 as the database for Active Record
# gem 'sqlite3', '~> 1.3'
# Use postgres as the database for Active Record
gem 'pg', '>= 0.4.4'
# Use Puma as the app server
gem 'puma', '>= 6.4.2'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6.0.0'
# Use Uglifier as compressor for JavaScript assets
# gem 'uglifier', '>= 1.3.0'
gem 'terser', '~> 1.1.8'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 5.0', '>= 5.0.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'http'
gem 'addressable', '~> 2.7'
gem 'faraday'
gem 'oauthenticator', '~> 1.4', '>= 1.4.1'
gem 'bundler', '>=2.1.4'
# Use jquery as the JavaScript library
gem 'jquery-rails', '>= 4.6.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11', '>= 2.11.5'
# Use Redis adapter to run Action Cable in production
gem 'redis', '~> 4.2'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem 'jwt', '~> 2.2.2'
gem 'oauth', '~> 0.5.1'
gem 'doorkeeper', '~> 5.7.0'
gem 'repost', '~> 0.3.8'
gem 'lodash-rails'
gem 'react-rails', '>= 3.2.1'
gem 'rails_lti2_provider', git: 'https://github.com/blindsidenetworks/rails_lti2_provider.git', tag: '0.2.1.2'
gem 'ims-lti', git: 'https://github.com/blindsidenetworks/ims-lti.git', tag: 'v2.3.2.1'
gem 'simple_oauth', git: 'https://github.com/blindsidenetworks/simple_oauth.git', tag: 'v0.3.1.1'
gem 'activerecord-session_store', '>= 2.1.0'
# frontend
gem 'bootstrap', '~> 5.0.0'
gem 'font-awesome-sass', '~> 6.4.0'
gem 'popper_js', '>= 1.16'
# 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 'byebug', platform: :mri
gem 'dotenv-rails', '>= 3.1.1'
gem 'rspec'
gem 'rspec-rails', '>= 6.1.3'
end
group :development do
gem 'rubocop', '~> 1.63', '>= 1.63.0', require: false
gem 'rubocop-rails', '~> 2.25', '>= 2.25.0', require: false
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen', '~> 3.5'
gem 'web-console', '>= 4.2.1'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'minitest-stub_any_instance'
gem 'webmock', '>= 3.23.1'
end
group :production do
gem 'lograge', '~> 0.14.0'
gem 'remote_syslog_logger'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data'
gem 'coveralls_reborn', require: false
gem 'rdoc', require: false
# These libraries will be removed from the default set of gems included with Ruby 3.4.0.
gem 'bigdecimal', require: false
gem 'mutex_m', require: false