coalescing_panda 4.2.0 → 4.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/coalescing_panda/workers/course_miner.rb +1 -1
- data/app/models/coalescing_panda/workers/provisioning_miner.rb +81 -0
- data/lib/coalescing_panda/version.rb +1 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +1201 -256
- data/spec/dummy/log/test.log +64123 -39536
- data/spec/helpers/coalescing_panda/canvas_batches_helper_spec.rb +17 -0
- metadata +6 -2
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'rails_helper'
|
2
|
+
|
3
|
+
# Specs in this file have access to a helper object that includes
|
4
|
+
# the CanvasBatchesHelper. For example:
|
5
|
+
#
|
6
|
+
# describe CanvasBatchesHelper do
|
7
|
+
# describe "string concat" do
|
8
|
+
# it "concats two strings with spaces" do
|
9
|
+
# expect(helper.concat_strings("this","that")).to eq("this that")
|
10
|
+
# end
|
11
|
+
# end
|
12
|
+
# end
|
13
|
+
module CoalescingPanda
|
14
|
+
RSpec.describe CanvasBatchesHelper, :type => :helper do
|
15
|
+
pending "add some examples to (or delete) #{__FILE__}"
|
16
|
+
end
|
17
|
+
end
|
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: 4.2.
|
4
|
+
version: 4.2.1
|
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: 2015-
|
13
|
+
date: 2015-10-29 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -347,6 +347,7 @@ files:
|
|
347
347
|
- app/models/coalescing_panda/user.rb
|
348
348
|
- app/models/coalescing_panda/workers/account_miner.rb
|
349
349
|
- app/models/coalescing_panda/workers/course_miner.rb
|
350
|
+
- app/models/coalescing_panda/workers/provisioning_miner.rb
|
350
351
|
- app/models/concerns/single_table_polymorphic.rb
|
351
352
|
- app/views/coalescing_panda/canvas_batches/_canvas_batch.html.haml
|
352
353
|
- app/views/coalescing_panda/canvas_batches/_canvas_batch_flash.html.haml
|
@@ -443,6 +444,7 @@ files:
|
|
443
444
|
- spec/factories/submissions.rb
|
444
445
|
- spec/factories/terms.rb
|
445
446
|
- spec/factories/users.rb
|
447
|
+
- spec/helpers/coalescing_panda/canvas_batches_helper_spec.rb
|
446
448
|
- spec/models/coalescing_panda/assignment_group_spec.rb
|
447
449
|
- spec/models/coalescing_panda/assignment_spec.rb
|
448
450
|
- spec/models/coalescing_panda/canvas_api_auth_spec.rb
|
@@ -537,6 +539,7 @@ test_files:
|
|
537
539
|
- spec/factories/submissions.rb
|
538
540
|
- spec/factories/terms.rb
|
539
541
|
- spec/factories/users.rb
|
542
|
+
- spec/helpers/coalescing_panda/canvas_batches_helper_spec.rb
|
540
543
|
- spec/models/coalescing_panda/assignment_group_spec.rb
|
541
544
|
- spec/models/coalescing_panda/assignment_spec.rb
|
542
545
|
- spec/models/coalescing_panda/canvas_api_auth_spec.rb
|
@@ -555,3 +558,4 @@ test_files:
|
|
555
558
|
- spec/models/coalescing_panda/workers/course_miner_spec.rb
|
556
559
|
- spec/rails_helper.rb
|
557
560
|
- spec/spec_helper.rb
|
561
|
+
has_rdoc:
|