coalescing_panda 5.2.2.beta1 → 5.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/app/models/coalescing_panda/group.rb +1 -1
- data/lib/coalescing_panda/controller_helpers.rb +1 -0
- data/lib/coalescing_panda/engine.rb +1 -1
- data/lib/coalescing_panda/version.rb +1 -1
- data/lib/coalescing_panda.rb +5 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +136 -151
- data/spec/dummy/db/test.sqlite3 +0 -0
- metadata +162 -61
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0ff79a0045d9ce6d7bc441835775dc872f1257c3a9e958ce9760b7cc45166bf9
|
4
|
+
data.tar.gz: 2069483ad4e45877780af43c0b2210db63bca59fd7060912528d8131fd13de7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b092c17ec0fce72c4f64e602b9a58cf28793174b9a37d7e1386b6c6d77626ea99e8fa92e5d4af0b0cd9a7a816ff21f0e270765b466a598992e481e1731314dc5
|
7
|
+
data.tar.gz: 34a4160773bc6c60a7ae6cbe860ecbc5e5a16ee693b84a539baadb5dcd4097406a838a3c4625bb90447558200456c21accf1a6bf401b8a25dc15d62fef22fd54
|
@@ -3,7 +3,7 @@ module CoalescingPanda
|
|
3
3
|
belongs_to :context, :polymorphic => true
|
4
4
|
include SingleTablePolymorphic
|
5
5
|
|
6
|
-
belongs_to :leader, foreign_key: :leader_id, class_name: 'CoalescingPanda::User'
|
6
|
+
belongs_to :leader, optional: true, foreign_key: :leader_id, class_name: 'CoalescingPanda::User'
|
7
7
|
belongs_to :group_category, foreign_key: :coalescing_panda_group_category_id, class_name: 'CoalescingPanda::GroupCategory'
|
8
8
|
has_many :group_memberships, foreign_key: :coalescing_panda_group_id, class_name: 'CoalescingPanda::GroupMembership', dependent: :destroy
|
9
9
|
validates :group_category_id, presence: true
|
@@ -34,7 +34,7 @@ module CoalescingPanda
|
|
34
34
|
ActionDispatch::Routing::Mapper.send :include, CoalescingPanda::RouteHelpers
|
35
35
|
end
|
36
36
|
|
37
|
-
|
37
|
+
config.after_initialize do |app|
|
38
38
|
ActiveSupport.on_load(:action_controller) do
|
39
39
|
#force the routes to load
|
40
40
|
Rails.application.reload_routes!
|
data/lib/coalescing_panda.rb
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
require 'coalescing_panda/engine' if defined?(Rails)
|
2
|
+
require 'jquery-rails'
|
2
3
|
require 'ims/lti'
|
3
4
|
require 'bearcat'
|
4
5
|
require 'oauth/request_proxy/rack_request'
|
5
6
|
require 'oauth/request_proxy/action_dispatch_request'
|
7
|
+
require 'haml'
|
8
|
+
require 'sass-rails'
|
9
|
+
require 'coffee-rails'
|
10
|
+
require 'p3p'
|
6
11
|
require 'delayed_job_active_record'
|
7
12
|
|
8
13
|
module CoalescingPanda
|
Binary file
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: UTF-8
|
2
1
|
# This file is auto-generated from the current state of the database. Instead
|
3
2
|
# of editing this file, please use the migrations feature of Active Record to
|
4
3
|
# incrementally modify your database, and then regenerate this schema definition.
|
@@ -11,263 +10,249 @@
|
|
11
10
|
#
|
12
11
|
# It's strongly recommended that you check this file into your version control system.
|
13
12
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
13
|
+
ActiveRecord::Schema.define(version: 2020_05_28_224505) do
|
15
14
|
|
16
15
|
create_table "coalescing_panda_assignment_groups", force: :cascade do |t|
|
17
|
-
t.integer
|
18
|
-
t.
|
19
|
-
t.
|
20
|
-
t.string
|
21
|
-
t.string
|
22
|
-
t.integer
|
23
|
-
t.float
|
24
|
-
t.string
|
16
|
+
t.integer "coalescing_panda_course_id", null: false
|
17
|
+
t.string "context_type"
|
18
|
+
t.integer "context_id"
|
19
|
+
t.string "canvas_assignment_group_id"
|
20
|
+
t.string "name"
|
21
|
+
t.integer "position"
|
22
|
+
t.float "group_weight"
|
23
|
+
t.string "workflow_state"
|
25
24
|
t.datetime "created_at"
|
26
25
|
t.datetime "updated_at"
|
26
|
+
t.index ["canvas_assignment_group_id", "context_id", "context_type"], name: "index_assignment_group_context", unique: true
|
27
|
+
t.index ["coalescing_panda_course_id", "canvas_assignment_group_id"], name: "index_assignment_group_course", unique: true
|
27
28
|
end
|
28
29
|
|
29
|
-
add_index "coalescing_panda_assignment_groups", ["canvas_assignment_group_id", "context_id", "context_type"], name: "index_assignment_group_context", unique: true
|
30
|
-
add_index "coalescing_panda_assignment_groups", ["coalescing_panda_course_id", "canvas_assignment_group_id"], name: "index_assignment_group_course", unique: true
|
31
|
-
|
32
30
|
create_table "coalescing_panda_assignments", force: :cascade do |t|
|
33
|
-
t.integer
|
34
|
-
t.string
|
35
|
-
t.text
|
36
|
-
t.string
|
37
|
-
t.string
|
38
|
-
t.float
|
31
|
+
t.integer "coalescing_panda_course_id", null: false
|
32
|
+
t.string "name"
|
33
|
+
t.text "description"
|
34
|
+
t.string "canvas_assignment_id", null: false
|
35
|
+
t.string "workflow_state"
|
36
|
+
t.float "points_possible"
|
39
37
|
t.datetime "due_at"
|
40
38
|
t.datetime "unlock_at"
|
41
39
|
t.datetime "lock_at"
|
42
40
|
t.datetime "created_at"
|
43
41
|
t.datetime "updated_at"
|
44
|
-
t.text
|
45
|
-
t.integer
|
46
|
-
t.boolean
|
47
|
-
t.boolean
|
48
|
-
t.integer
|
49
|
-
t.integer
|
42
|
+
t.text "submission_types"
|
43
|
+
t.integer "group_category_id"
|
44
|
+
t.boolean "grade_group_students_individually"
|
45
|
+
t.boolean "published"
|
46
|
+
t.integer "coalescing_panda_assignment_group_id"
|
47
|
+
t.integer "coalescing_panda_group_category_id"
|
48
|
+
t.index ["coalescing_panda_course_id", "canvas_assignment_id"], name: "index_assignments_course", unique: true
|
50
49
|
end
|
51
50
|
|
52
|
-
add_index "coalescing_panda_assignments", ["coalescing_panda_course_id", "canvas_assignment_id"], name: "index_assignments_course", unique: true
|
53
|
-
|
54
51
|
create_table "coalescing_panda_canvas_api_auths", force: :cascade do |t|
|
55
|
-
t.string
|
56
|
-
t.string
|
57
|
-
t.string
|
52
|
+
t.string "user_id"
|
53
|
+
t.string "api_domain"
|
54
|
+
t.string "api_token"
|
58
55
|
t.datetime "created_at"
|
59
56
|
t.datetime "updated_at"
|
60
|
-
t.string
|
57
|
+
t.string "refresh_token"
|
61
58
|
t.datetime "expires_at"
|
62
59
|
end
|
63
60
|
|
64
61
|
create_table "coalescing_panda_canvas_batches", force: :cascade do |t|
|
65
|
-
t.float
|
66
|
-
t.string
|
67
|
-
t.text
|
62
|
+
t.float "percent_complete", default: 0.0
|
63
|
+
t.string "status"
|
64
|
+
t.text "message"
|
68
65
|
t.datetime "created_at"
|
69
66
|
t.datetime "updated_at"
|
70
|
-
t.integer
|
71
|
-
t.string
|
72
|
-
t.integer
|
73
|
-
t.text
|
67
|
+
t.integer "context_id"
|
68
|
+
t.string "context_type"
|
69
|
+
t.integer "coalescing_panda_lti_account_id"
|
70
|
+
t.text "options"
|
74
71
|
end
|
75
72
|
|
76
73
|
create_table "coalescing_panda_courses", force: :cascade do |t|
|
77
|
-
t.integer
|
78
|
-
t.integer
|
79
|
-
t.string
|
80
|
-
t.string
|
81
|
-
t.string
|
74
|
+
t.integer "coalescing_panda_lti_account_id", null: false
|
75
|
+
t.integer "coalescing_panda_term_id"
|
76
|
+
t.string "name"
|
77
|
+
t.string "canvas_course_id", null: false
|
78
|
+
t.string "sis_id"
|
82
79
|
t.datetime "start_at"
|
83
80
|
t.datetime "conclude_at"
|
84
|
-
t.string
|
85
|
-
t.string
|
81
|
+
t.string "workflow_state"
|
82
|
+
t.string "course_code"
|
86
83
|
t.datetime "created_at"
|
87
84
|
t.datetime "updated_at"
|
85
|
+
t.index ["coalescing_panda_lti_account_id", "canvas_course_id"], name: "index_courses_account", unique: true
|
86
|
+
t.index ["coalescing_panda_term_id", "canvas_course_id"], name: "index_courses_term", unique: true
|
87
|
+
t.index ["sis_id"], name: "index_coalescing_panda_courses_on_sis_id"
|
88
88
|
end
|
89
89
|
|
90
|
-
add_index "coalescing_panda_courses", ["coalescing_panda_lti_account_id", "canvas_course_id"], name: "index_courses_account", unique: true
|
91
|
-
add_index "coalescing_panda_courses", ["coalescing_panda_term_id", "canvas_course_id"], name: "index_courses_term", unique: true
|
92
|
-
add_index "coalescing_panda_courses", ["sis_id"], name: "index_coalescing_panda_courses_on_sis_id"
|
93
|
-
|
94
90
|
create_table "coalescing_panda_enrollments", force: :cascade do |t|
|
95
|
-
t.integer
|
96
|
-
t.integer
|
97
|
-
t.string
|
98
|
-
t.string
|
99
|
-
t.string
|
100
|
-
t.string
|
91
|
+
t.integer "coalescing_panda_user_id", null: false
|
92
|
+
t.integer "coalescing_panda_section_id", null: false
|
93
|
+
t.string "workflow_state"
|
94
|
+
t.string "sis_id"
|
95
|
+
t.string "canvas_enrollment_id", null: false
|
96
|
+
t.string "enrollment_type"
|
101
97
|
t.datetime "start_at"
|
102
98
|
t.datetime "end_at"
|
103
99
|
t.datetime "created_at"
|
104
100
|
t.datetime "updated_at"
|
101
|
+
t.index ["coalescing_panda_user_id", "coalescing_panda_section_id", "enrollment_type"], name: "index_enrollments_user_and_section", unique: true
|
102
|
+
t.index ["sis_id"], name: "index_coalescing_panda_enrollments_on_sis_id"
|
105
103
|
end
|
106
104
|
|
107
|
-
add_index "coalescing_panda_enrollments", ["coalescing_panda_user_id", "coalescing_panda_section_id", "enrollment_type"], name: "index_enrollments_user_and_section", unique: true
|
108
|
-
add_index "coalescing_panda_enrollments", ["sis_id"], name: "index_coalescing_panda_enrollments_on_sis_id"
|
109
|
-
|
110
105
|
create_table "coalescing_panda_group_categories", force: :cascade do |t|
|
111
|
-
t.
|
112
|
-
t.
|
113
|
-
t.integer
|
114
|
-
t.string
|
106
|
+
t.string "context_type"
|
107
|
+
t.integer "context_id"
|
108
|
+
t.integer "canvas_group_category_id"
|
109
|
+
t.string "name"
|
115
110
|
t.datetime "created_at"
|
116
111
|
t.datetime "updated_at"
|
112
|
+
t.index ["context_id", "context_type"], name: "index_group_categories_context_and_context_type"
|
117
113
|
end
|
118
114
|
|
119
|
-
add_index "coalescing_panda_group_categories", ["context_id", "context_type"], name: "index_group_categories_context_and_context_type"
|
120
|
-
|
121
115
|
create_table "coalescing_panda_group_memberships", force: :cascade do |t|
|
122
|
-
t.integer
|
123
|
-
t.integer
|
124
|
-
t.string
|
125
|
-
t.string
|
116
|
+
t.integer "coalescing_panda_group_id"
|
117
|
+
t.integer "coalescing_panda_user_id"
|
118
|
+
t.string "canvas_group_membership_id"
|
119
|
+
t.string "workflow_state"
|
126
120
|
t.datetime "created_at"
|
127
121
|
t.datetime "updated_at"
|
128
|
-
t.boolean
|
122
|
+
t.boolean "moderator"
|
123
|
+
t.index ["coalescing_panda_group_id", "coalescing_panda_user_id"], name: "index_group_memberships_user_and_group", unique: true
|
129
124
|
end
|
130
125
|
|
131
|
-
add_index "coalescing_panda_group_memberships", ["coalescing_panda_group_id", "coalescing_panda_user_id"], name: "index_group_memberships_user_and_group", unique: true
|
132
|
-
|
133
126
|
create_table "coalescing_panda_groups", force: :cascade do |t|
|
134
|
-
t.
|
135
|
-
t.
|
136
|
-
t.string
|
137
|
-
t.string
|
138
|
-
t.string
|
139
|
-
t.string
|
140
|
-
t.integer
|
127
|
+
t.string "context_type"
|
128
|
+
t.integer "context_id"
|
129
|
+
t.string "description"
|
130
|
+
t.string "group_category_id"
|
131
|
+
t.string "canvas_group_id"
|
132
|
+
t.string "name"
|
133
|
+
t.integer "members_count"
|
141
134
|
t.datetime "created_at"
|
142
135
|
t.datetime "updated_at"
|
143
|
-
t.integer
|
144
|
-
t.integer
|
136
|
+
t.integer "leader_id"
|
137
|
+
t.integer "coalescing_panda_group_category_id"
|
138
|
+
t.index ["context_id", "canvas_group_id"], name: "index_groups_context_and_group_id", unique: true
|
145
139
|
end
|
146
140
|
|
147
|
-
add_index "coalescing_panda_groups", ["context_id", "canvas_group_id"], name: "index_groups_context_and_group_id", unique: true
|
148
|
-
|
149
141
|
create_table "coalescing_panda_lti_accounts", force: :cascade do |t|
|
150
|
-
t.string
|
151
|
-
t.string
|
152
|
-
t.string
|
153
|
-
t.string
|
154
|
-
t.string
|
155
|
-
t.string
|
156
|
-
t.text
|
142
|
+
t.string "name"
|
143
|
+
t.string "key"
|
144
|
+
t.string "secret"
|
145
|
+
t.string "oauth2_client_id"
|
146
|
+
t.string "oauth2_client_key"
|
147
|
+
t.string "canvas_account_id"
|
148
|
+
t.text "settings"
|
157
149
|
t.datetime "created_at"
|
158
150
|
t.datetime "updated_at"
|
159
151
|
end
|
160
152
|
|
161
153
|
create_table "coalescing_panda_lti_nonces", force: :cascade do |t|
|
162
|
-
t.integer
|
163
|
-
t.string
|
154
|
+
t.integer "coalescing_panda_lti_account_id"
|
155
|
+
t.string "nonce"
|
164
156
|
t.datetime "timestamp"
|
165
157
|
end
|
166
158
|
|
167
159
|
create_table "coalescing_panda_oauth_states", force: :cascade do |t|
|
168
|
-
t.string
|
169
|
-
t.text
|
160
|
+
t.string "state_key"
|
161
|
+
t.text "data"
|
170
162
|
t.datetime "created_at"
|
171
163
|
t.datetime "updated_at"
|
164
|
+
t.index ["state_key"], name: "index_coalescing_panda_oauth_states_on_state_key", unique: true
|
172
165
|
end
|
173
166
|
|
174
|
-
add_index "coalescing_panda_oauth_states", ["state_key"], name: "index_coalescing_panda_oauth_states_on_state_key", unique: true
|
175
|
-
|
176
167
|
create_table "coalescing_panda_persistent_sessions", force: :cascade do |t|
|
177
|
-
t.string
|
178
|
-
t.text
|
179
|
-
t.integer
|
180
|
-
t.datetime "created_at",
|
181
|
-
t.datetime "updated_at",
|
168
|
+
t.string "session_key"
|
169
|
+
t.text "data"
|
170
|
+
t.integer "coalescing_panda_lti_account_id"
|
171
|
+
t.datetime "created_at", null: false
|
172
|
+
t.datetime "updated_at", null: false
|
173
|
+
t.index ["coalescing_panda_lti_account_id"], name: "index_persistent_session_on_lti_account_id"
|
174
|
+
t.index ["session_key"], name: "index_coalescing_panda_persistent_sessions_on_session_key", unique: true
|
182
175
|
end
|
183
176
|
|
184
|
-
add_index "coalescing_panda_persistent_sessions", ["coalescing_panda_lti_account_id"], name: "index_persistent_session_on_lti_account_id", using: :btree
|
185
|
-
add_index "coalescing_panda_persistent_sessions", ["session_key"], name: "index_coalescing_panda_persistent_sessions_on_session_key", unique: true, using: :btree
|
186
|
-
|
187
177
|
create_table "coalescing_panda_sections", force: :cascade do |t|
|
188
|
-
t.integer
|
189
|
-
t.string
|
190
|
-
t.string
|
191
|
-
t.string
|
192
|
-
t.string
|
178
|
+
t.integer "coalescing_panda_course_id", null: false
|
179
|
+
t.string "name"
|
180
|
+
t.string "canvas_section_id", null: false
|
181
|
+
t.string "sis_id"
|
182
|
+
t.string "workflow_state"
|
193
183
|
t.datetime "start_at"
|
194
184
|
t.datetime "end_at"
|
195
185
|
t.datetime "created_at"
|
196
186
|
t.datetime "updated_at"
|
187
|
+
t.index ["coalescing_panda_course_id", "canvas_section_id"], name: "index_sections_course", unique: true
|
188
|
+
t.index ["sis_id"], name: "index_coalescing_panda_sections_on_sis_id"
|
197
189
|
end
|
198
190
|
|
199
|
-
add_index "coalescing_panda_sections", ["coalescing_panda_course_id", "canvas_section_id"], name: "index_sections_course", unique: true
|
200
|
-
add_index "coalescing_panda_sections", ["sis_id"], name: "index_coalescing_panda_sections_on_sis_id"
|
201
|
-
|
202
191
|
create_table "coalescing_panda_sessions", force: :cascade do |t|
|
203
|
-
t.string
|
204
|
-
t.text
|
192
|
+
t.string "token"
|
193
|
+
t.text "data"
|
205
194
|
t.datetime "created_at"
|
206
195
|
t.datetime "updated_at"
|
207
196
|
end
|
208
197
|
|
209
198
|
create_table "coalescing_panda_submissions", force: :cascade do |t|
|
210
|
-
t.integer
|
211
|
-
t.integer
|
212
|
-
t.string
|
213
|
-
t.string
|
214
|
-
t.string
|
199
|
+
t.integer "coalescing_panda_user_id", null: false
|
200
|
+
t.integer "coalescing_panda_assignment_id", null: false
|
201
|
+
t.string "url"
|
202
|
+
t.string "grade"
|
203
|
+
t.string "score"
|
215
204
|
t.datetime "submitted_at"
|
216
|
-
t.string
|
217
|
-
t.string
|
205
|
+
t.string "workflow_state"
|
206
|
+
t.string "canvas_submission_id", null: false
|
218
207
|
t.datetime "created_at"
|
219
208
|
t.datetime "updated_at"
|
209
|
+
t.index ["canvas_submission_id"], name: "index_coalescing_panda_submissions_on_canvas_submission_id"
|
210
|
+
t.index ["coalescing_panda_user_id", "coalescing_panda_assignment_id", "canvas_submission_id"], name: "index_submissions_user_and_assignment", unique: true
|
220
211
|
end
|
221
212
|
|
222
|
-
add_index "coalescing_panda_submissions", ["canvas_submission_id"], name: "index_coalescing_panda_submissions_on_canvas_submission_id"
|
223
|
-
add_index "coalescing_panda_submissions", ["coalescing_panda_user_id", "coalescing_panda_assignment_id", "canvas_submission_id"], name: "index_submissions_user_and_assignment", unique: true
|
224
|
-
|
225
213
|
create_table "coalescing_panda_terms", force: :cascade do |t|
|
226
|
-
t.integer
|
227
|
-
t.string
|
228
|
-
t.string
|
229
|
-
t.string
|
230
|
-
t.string
|
214
|
+
t.integer "coalescing_panda_lti_account_id", null: false
|
215
|
+
t.string "name"
|
216
|
+
t.string "code"
|
217
|
+
t.string "sis_id"
|
218
|
+
t.string "canvas_term_id", null: false
|
231
219
|
t.datetime "start_at"
|
232
220
|
t.datetime "end_at"
|
233
|
-
t.string
|
221
|
+
t.string "workflow_state"
|
234
222
|
t.datetime "created_at"
|
235
223
|
t.datetime "updated_at"
|
224
|
+
t.index ["canvas_term_id", "coalescing_panda_lti_account_id"], name: "index_terms_account", unique: true
|
225
|
+
t.index ["sis_id"], name: "index_coalescing_panda_terms_on_sis_id"
|
236
226
|
end
|
237
227
|
|
238
|
-
add_index "coalescing_panda_terms", ["canvas_term_id", "coalescing_panda_lti_account_id"], name: "index_terms_account", unique: true
|
239
|
-
add_index "coalescing_panda_terms", ["sis_id"], name: "index_coalescing_panda_terms_on_sis_id"
|
240
|
-
|
241
228
|
create_table "coalescing_panda_users", force: :cascade do |t|
|
242
|
-
t.integer
|
243
|
-
t.string
|
244
|
-
t.string
|
245
|
-
t.string
|
246
|
-
t.string
|
247
|
-
t.string
|
248
|
-
t.string
|
229
|
+
t.integer "coalescing_panda_lti_account_id", null: false
|
230
|
+
t.string "name"
|
231
|
+
t.string "email"
|
232
|
+
t.string "roles"
|
233
|
+
t.string "workflow_state"
|
234
|
+
t.string "sis_id"
|
235
|
+
t.string "canvas_user_id", null: false
|
249
236
|
t.datetime "created_at"
|
250
237
|
t.datetime "updated_at"
|
251
|
-
t.string
|
238
|
+
t.string "login_id"
|
239
|
+
t.index ["coalescing_panda_lti_account_id", "canvas_user_id"], name: "index_users_account", unique: true
|
240
|
+
t.index ["sis_id"], name: "index_coalescing_panda_users_on_sis_id"
|
252
241
|
end
|
253
242
|
|
254
|
-
add_index "coalescing_panda_users", ["coalescing_panda_lti_account_id", "canvas_user_id"], name: "index_users_account", unique: true
|
255
|
-
add_index "coalescing_panda_users", ["sis_id"], name: "index_coalescing_panda_users_on_sis_id"
|
256
|
-
|
257
243
|
create_table "delayed_jobs", force: :cascade do |t|
|
258
|
-
t.integer
|
259
|
-
t.integer
|
260
|
-
t.text
|
261
|
-
t.text
|
244
|
+
t.integer "priority", default: 0, null: false
|
245
|
+
t.integer "attempts", default: 0, null: false
|
246
|
+
t.text "handler", null: false
|
247
|
+
t.text "last_error"
|
262
248
|
t.datetime "run_at"
|
263
249
|
t.datetime "locked_at"
|
264
250
|
t.datetime "failed_at"
|
265
|
-
t.string
|
266
|
-
t.string
|
251
|
+
t.string "locked_by"
|
252
|
+
t.string "queue"
|
267
253
|
t.datetime "created_at"
|
268
254
|
t.datetime "updated_at"
|
255
|
+
t.index ["priority", "run_at"], name: "delayed_jobs_priority"
|
269
256
|
end
|
270
257
|
|
271
|
-
add_index "delayed_jobs", ["priority", "run_at"], name: "delayed_jobs_priority"
|
272
|
-
|
273
258
|
end
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coalescing_panda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.2.2
|
4
|
+
version: 5.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Mills
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2023-
|
13
|
+
date: 2023-09-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -42,18 +42,46 @@ dependencies:
|
|
42
42
|
version: 4.2.11.1
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: bearcat
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '1.3'
|
50
|
+
type: :runtime
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - "~>"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '1.3'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: browser
|
45
59
|
requirement: !ruby/object:Gem::Requirement
|
46
60
|
requirements:
|
47
61
|
- - ">="
|
48
62
|
- !ruby/object:Gem::Version
|
49
|
-
version:
|
63
|
+
version: '0'
|
50
64
|
type: :runtime
|
51
65
|
prerelease: false
|
52
66
|
version_requirements: !ruby/object:Gem::Requirement
|
53
67
|
requirements:
|
54
68
|
- - ">="
|
55
69
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
70
|
+
version: '0'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: macaddr
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - '='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 1.6.1
|
78
|
+
type: :runtime
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - '='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: 1.6.1
|
57
85
|
- !ruby/object:Gem::Dependency
|
58
86
|
name: ims-lti
|
59
87
|
requirement: !ruby/object:Gem::Requirement
|
@@ -74,6 +102,76 @@ dependencies:
|
|
74
102
|
- - "<"
|
75
103
|
- !ruby/object:Gem::Version
|
76
104
|
version: '2.0'
|
105
|
+
- !ruby/object:Gem::Dependency
|
106
|
+
name: haml-rails
|
107
|
+
requirement: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
type: :runtime
|
113
|
+
prerelease: false
|
114
|
+
version_requirements: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
- !ruby/object:Gem::Dependency
|
120
|
+
name: sass-rails
|
121
|
+
requirement: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '3.2'
|
126
|
+
type: :runtime
|
127
|
+
prerelease: false
|
128
|
+
version_requirements: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '3.2'
|
133
|
+
- !ruby/object:Gem::Dependency
|
134
|
+
name: jquery-rails
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
type: :runtime
|
141
|
+
prerelease: false
|
142
|
+
version_requirements: !ruby/object:Gem::Requirement
|
143
|
+
requirements:
|
144
|
+
- - ">="
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '0'
|
147
|
+
- !ruby/object:Gem::Dependency
|
148
|
+
name: coffee-rails
|
149
|
+
requirement: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - ">="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '0'
|
154
|
+
type: :runtime
|
155
|
+
prerelease: false
|
156
|
+
version_requirements: !ruby/object:Gem::Requirement
|
157
|
+
requirements:
|
158
|
+
- - ">="
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: '0'
|
161
|
+
- !ruby/object:Gem::Dependency
|
162
|
+
name: p3p
|
163
|
+
requirement: !ruby/object:Gem::Requirement
|
164
|
+
requirements:
|
165
|
+
- - ">="
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
version: '0'
|
168
|
+
type: :runtime
|
169
|
+
prerelease: false
|
170
|
+
version_requirements: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - ">="
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
77
175
|
- !ruby/object:Gem::Dependency
|
78
176
|
name: delayed_job_active_record
|
79
177
|
requirement: !ruby/object:Gem::Requirement
|
@@ -442,7 +540,9 @@ files:
|
|
442
540
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
443
541
|
- spec/dummy/config/locales/en.yml
|
444
542
|
- spec/dummy/config/routes.rb
|
543
|
+
- spec/dummy/db/development.sqlite3
|
445
544
|
- spec/dummy/db/schema.rb
|
545
|
+
- spec/dummy/db/test.sqlite3
|
446
546
|
- spec/dummy/public/404.html
|
447
547
|
- spec/dummy/public/422.html
|
448
548
|
- spec/dummy/public/500.html
|
@@ -490,80 +590,81 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
490
590
|
version: '0'
|
491
591
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
492
592
|
requirements:
|
493
|
-
- - "
|
593
|
+
- - ">="
|
494
594
|
- !ruby/object:Gem::Version
|
495
|
-
version:
|
595
|
+
version: '0'
|
496
596
|
requirements: []
|
497
|
-
|
498
|
-
rubygems_version: 2.6.14.4
|
597
|
+
rubygems_version: 3.1.6
|
499
598
|
signing_key:
|
500
599
|
specification_version: 4
|
501
600
|
summary: Canvas LTI and OAUTH2 mountable engine
|
502
601
|
test_files:
|
602
|
+
- spec/rails_helper.rb
|
603
|
+
- spec/models/coalescing_panda/canvas_api_auth_spec.rb
|
604
|
+
- spec/models/coalescing_panda/assignment_spec.rb
|
605
|
+
- spec/models/coalescing_panda/group_membership_spec.rb
|
606
|
+
- spec/models/coalescing_panda/lti_account_spec.rb
|
607
|
+
- spec/models/coalescing_panda/section_spec.rb
|
608
|
+
- spec/models/coalescing_panda/workers/course_miner_spec.rb
|
609
|
+
- spec/models/coalescing_panda/workers/account_miner_spec.rb
|
610
|
+
- spec/models/coalescing_panda/group_spec.rb
|
611
|
+
- spec/models/coalescing_panda/lti_nonce_spec.rb
|
612
|
+
- spec/models/coalescing_panda/submission_spec.rb
|
613
|
+
- spec/models/coalescing_panda/term_spec.rb
|
614
|
+
- spec/models/coalescing_panda/canvas_batch_spec.rb
|
615
|
+
- spec/models/coalescing_panda/enrollment_spec.rb
|
616
|
+
- spec/models/coalescing_panda/course_spec.rb
|
617
|
+
- spec/models/coalescing_panda/user_spec.rb
|
618
|
+
- spec/models/coalescing_panda/assignment_group_spec.rb
|
619
|
+
- spec/controllers/coalescing_panda/oauth2_controller_spec.rb
|
620
|
+
- spec/controllers/coalescing_panda/lti_controller_spec.rb
|
621
|
+
- spec/controllers/coalescing_panda/canvas_batches_controller_spec.rb
|
503
622
|
- spec/spec_helper.rb
|
623
|
+
- spec/dummy/db/schema.rb
|
624
|
+
- spec/dummy/db/test.sqlite3
|
625
|
+
- spec/dummy/db/development.sqlite3
|
626
|
+
- spec/dummy/public/422.html
|
627
|
+
- spec/dummy/public/favicon.ico
|
628
|
+
- spec/dummy/public/404.html
|
629
|
+
- spec/dummy/public/500.html
|
630
|
+
- spec/dummy/Rakefile
|
631
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
504
632
|
- spec/dummy/app/models/account.rb
|
505
633
|
- spec/dummy/app/models/course.rb
|
506
634
|
- spec/dummy/app/controllers/application_controller.rb
|
507
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
508
|
-
- spec/dummy/app/assets/javascripts/application.js
|
509
|
-
- spec/dummy/app/assets/stylesheets/application.css
|
510
635
|
- spec/dummy/app/helpers/application_helper.rb
|
511
|
-
- spec/dummy/
|
512
|
-
- spec/dummy/
|
513
|
-
- spec/dummy/bin/rails
|
514
|
-
- spec/dummy/config/routes.rb
|
515
|
-
- spec/dummy/config/locales/en.yml
|
516
|
-
- spec/dummy/config/environments/production.rb
|
517
|
-
- spec/dummy/config/environments/development.rb
|
518
|
-
- spec/dummy/config/environments/test.rb
|
519
|
-
- spec/dummy/config/environment.rb
|
636
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
637
|
+
- spec/dummy/app/assets/javascripts/application.js
|
520
638
|
- spec/dummy/config/application.rb
|
521
|
-
- spec/dummy/config/database.yml
|
522
|
-
- spec/dummy/config/boot.rb
|
523
639
|
- spec/dummy/config/initializers/lti_initializer.rb
|
524
|
-
- spec/dummy/config/initializers/backtrace_silencers.rb
|
525
|
-
- spec/dummy/config/initializers/mime_types.rb
|
526
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
527
640
|
- spec/dummy/config/initializers/session_store.rb
|
528
|
-
- spec/dummy/config/initializers/wrap_parameters.rb
|
529
641
|
- spec/dummy/config/initializers/secret_token.rb
|
642
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
530
643
|
- spec/dummy/config/initializers/inflections.rb
|
531
|
-
- spec/dummy/config.
|
532
|
-
- spec/dummy/
|
533
|
-
- spec/dummy/
|
534
|
-
- spec/dummy/
|
535
|
-
- spec/dummy/
|
536
|
-
- spec/dummy/
|
537
|
-
- spec/dummy/
|
644
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
645
|
+
- spec/dummy/config/initializers/mime_types.rb
|
646
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
647
|
+
- spec/dummy/config/environments/development.rb
|
648
|
+
- spec/dummy/config/environments/test.rb
|
649
|
+
- spec/dummy/config/environments/production.rb
|
650
|
+
- spec/dummy/config/database.yml
|
651
|
+
- spec/dummy/config/boot.rb
|
652
|
+
- spec/dummy/config/routes.rb
|
653
|
+
- spec/dummy/config/environment.rb
|
654
|
+
- spec/dummy/config/locales/en.yml
|
538
655
|
- spec/dummy/README.rdoc
|
539
|
-
- spec/
|
540
|
-
- spec/
|
541
|
-
- spec/
|
542
|
-
- spec/
|
543
|
-
- spec/
|
544
|
-
- spec/models/coalescing_panda/term_spec.rb
|
545
|
-
- spec/models/coalescing_panda/assignment_spec.rb
|
546
|
-
- spec/models/coalescing_panda/submission_spec.rb
|
547
|
-
- spec/models/coalescing_panda/assignment_group_spec.rb
|
548
|
-
- spec/models/coalescing_panda/group_spec.rb
|
549
|
-
- spec/models/coalescing_panda/workers/account_miner_spec.rb
|
550
|
-
- spec/models/coalescing_panda/workers/course_miner_spec.rb
|
551
|
-
- spec/models/coalescing_panda/canvas_api_auth_spec.rb
|
552
|
-
- spec/models/coalescing_panda/group_membership_spec.rb
|
553
|
-
- spec/models/coalescing_panda/user_spec.rb
|
554
|
-
- spec/models/coalescing_panda/course_spec.rb
|
555
|
-
- spec/factories/courses.rb
|
556
|
-
- spec/factories/submissions.rb
|
557
|
-
- spec/factories/assignment_groups.rb
|
558
|
-
- spec/factories/assignments.rb
|
559
|
-
- spec/factories/canvas_api_auths.rb
|
656
|
+
- spec/dummy/config.ru
|
657
|
+
- spec/dummy/bin/bundle
|
658
|
+
- spec/dummy/bin/rake
|
659
|
+
- spec/dummy/bin/rails
|
660
|
+
- spec/factories/accounts.rb
|
560
661
|
- spec/factories/enrollments.rb
|
561
|
-
- spec/factories/
|
662
|
+
- spec/factories/terms.rb
|
562
663
|
- spec/factories/sections.rb
|
563
|
-
- spec/factories/
|
664
|
+
- spec/factories/canvas_batches.rb
|
665
|
+
- spec/factories/assignment_groups.rb
|
666
|
+
- spec/factories/submissions.rb
|
667
|
+
- spec/factories/courses.rb
|
668
|
+
- spec/factories/assignments.rb
|
564
669
|
- spec/factories/users.rb
|
565
|
-
- spec/factories/
|
566
|
-
- spec/controllers/coalescing_panda/canvas_batches_controller_spec.rb
|
567
|
-
- spec/controllers/coalescing_panda/oauth2_controller_spec.rb
|
568
|
-
- spec/controllers/coalescing_panda/lti_controller_spec.rb
|
569
|
-
- spec/rails_helper.rb
|
670
|
+
- spec/factories/canvas_api_auths.rb
|