canvas_sync 0.18.2 → 0.18.3
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/lib/canvas_sync/record.rb +4 -5
- data/lib/canvas_sync/version.rb +1 -1
- data/spec/dummy/log/test.log +2066 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13177d09ca23d9bd29f83117cb1321cfbd21f36c690212647177657d95f23c23
|
|
4
|
+
data.tar.gz: b0e2816208c92844c8f63e0209365bffecb98c6091512ad881164fa604b40011
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a196e827d48234c0da749c4cbe672e8f0e6583de5258fa7b2d20099706687089b7d01c771aa00f7dfab0513ab54e67a04ee0b170ac05c1dee6c7d5794458101
|
|
7
|
+
data.tar.gz: cbe1be336eda39a93939a3f2bf12454ff74ac77569b83ab2e4aed71aaba0670cf9764ecffede496f02e46dee4f752e479b5ab4d2645b2ad20cd42f95103817da
|
data/lib/canvas_sync/record.rb
CHANGED
|
@@ -101,11 +101,10 @@ module CanvasSync
|
|
|
101
101
|
included do
|
|
102
102
|
define_model_callbacks :sync_import
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
rescue PG::UndefinedTable
|
|
104
|
+
col_names = column_names rescue []
|
|
105
|
+
|
|
106
|
+
if col_names.include?("canvas_sync_batch_id")
|
|
107
|
+
belongs_to :canvas_sync_batch, foreign_key: :canvas_sync_batch_id, class_name: "CanvasSync::SyncBatch", optional: true
|
|
109
108
|
end
|
|
110
109
|
end
|
|
111
110
|
end
|
data/lib/canvas_sync/version.rb
CHANGED