forked from Aalto-LeTech/rubyric
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGemfile
More file actions
87 lines (62 loc) · 1.9 KB
/
Gemfile
File metadata and controls
87 lines (62 loc) · 1.9 KB
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
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8
source 'https://rubygems.org'
ruby '>=2.3.1'
gem 'rails', '~> 6.1.6'
gem 'puma', '~> 3.0'
#gem 'pg'
gem 'pg', '~> 1.1'
# Gems used only for assets and not required in production environments by default.
gem 'sass' # Sass is locked for now because of this bug: https://github.com/sass/sass/issues/1028. Remove this line at some point.
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
#gem 'therubyracer', '~> 0.12.3'
#gem 'therubyracer'
gem 'execjs'
# See the Dockerfile for an explanation regarding mini_racer installation problems.
gem 'mini_racer', '0.6.2'
gem 'uglifier', '>= 3.0'
gem 'jquery-ui-rails', '~> 4.2.0'
group :development, :test do
gem 'rspec-rails'
gem 'shoulda'
gem 'capybara', '3.36.0' # Last version to support Ruby 2.6
#gem 'capybara-webkit'
gem 'byebug', platform: :mri
#gem 'sqlite3'
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'jquery-rails', '~> 4.2.2'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
#gem 'json', '2.0.3' # For Ruby 2.3 compatibility
gem 'json', '~> 2.6'
gem 'authlogic'
gem 'oauth'
gem 'scrypt'
gem 'cancan'
# gem 'delayed_job', '~> 3.0.0'
gem 'delayed_job_active_record', '~> 4.1.0'
gem 'daemons'
gem 'rest-client'
#gem 'paypal-sdk-core' # , :git => 'https://github.com/paypal/sdk-core-ruby.git'
gem 'paypal-sdk-rest'
gem 'ims-lti', '1.1.13'
source 'https://rails-assets.org' do
gem 'rails-assets-bootstrap-css'
gem 'rails-assets-knockout'
gem 'rails-assets-knockout-sortable'
gem 'rails-assets-knockout-validation'
end