senkyoshi 1.0.8 → 1.0.9

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +28 -8
  3. data/lib/senkyoshi/version.rb +1 -1
  4. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f06aa757d486bafb9556bfea1a3c4ba6d6c308c
4
- data.tar.gz: 8425b48104e9e39bc67f7880d8ac26cfbdd1c350
3
+ metadata.gz: 99658502a8221b6898e129443137b24fb32e6428
4
+ data.tar.gz: d1e6c9a353a2c2bef8f800bbf1c660809b72264b
5
5
  SHA512:
6
- metadata.gz: 9198a33902b72af0ce2910a75735b27220433fbc4e9125990dd963f48218939e47eee0e7dcdfbd9f5a368c411a4dee961b1798c57ed06bd0d0c64a904b45ac2b
7
- data.tar.gz: b883f8a69ed45e7319230d1bc113c39427a0bece0e08cbdbdf22baded66ab8167d56daf82036010fd573128eb65d10dfea9ed861fcc1f03783499fc6d71fd37e
6
+ metadata.gz: eb318a13ce550e2d7da69a49c58d6f1ae36b3d549c25eb4158f2c74d28d166f2f3f103f2a847c5efc22bf771dd11d500a22a79ce62d3fa3f16ff7cc35b53e1a0
7
+ data.tar.gz: 8f602f3422c21effdd47d583c102d61f6a1971e01f7e026a767acaf73c65c3babd32c6eb587a8798a5c930e4708b51b856a282539881fba1ca9fcb3bd58d3af6
data/README.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  Senkyoshi converts exported Blackboard packages into Canvas .imscc packages. It also allows you to upload those converted packages to a Canvas instance.
4
4
 
5
+ ## Feature Comparison
6
+
7
+ Senkyoshi converts Blackboard course exports as well as Instructure's converter with several improvements detailed in the table below:
8
+
9
+ | Feature | Instructure Blackboard Converter | Senkyoshi |
10
+ |:---------|----------------------------------|-----------|
11
+ | Announcements | Partial Conversion, links embedded or otherwise are not converted/broken. | Converts all announcements including all links. |
12
+ |Assignments|All assignments lumped into one big group. No separations from quizzes, surveys, and assignments, some broken links in content.| Separates the assignments into a few categories based on Blackboard structure: Tests, Assignments, Surveys, Practicums, and Quizzes. A few courses have broken links to files that did not exist in the Blackboard course file. All links in content work appropriately. |
13
+ |Discussions|Basic conversion supported, some discussions missing.| All discussions, including Blackboard Seminar Discussions, are imported with topic content.|
14
+ |Pages|Basic conversion supported, some pages missing or content links broken.|Creates pages for most all module items and separates them per assignment and lesson page from Blackboard structure. Creates additional pages for Blackboard attachments that have content descriptions.|
15
+ |Files|Basic support, flattened file directories into a single top level with all files. | Keeps folder/file structure from Blackboard when importing to Canvas Files. |
16
+ |Quizzes|Basic support, unable to convert quiz answers in certain formats and converts an incorrect number of quizzes from the quiz banks.| Converts the correct amount of quizzes and is able to determine all the correct answers for each quiz. Changes Blackboard formats that Canvas doesn't support into correct formats.|
17
+ |Modules|Basic support, modules created at a single level and category. | Converts Blackboard Lesson Category structure into Canvas Modules with indented structure for sub-content. |
18
+ |Pre-requisites|No support for Blackboard Adaptive Release.| Converts Blackboard Adaptive Release content into Canvas Pre-Requisite requirements to view certain class material. Follows same format that was used in Blackboard.|
19
+ |SCORM|No support for SCORM content.|*(Optional)* Uploads SCORM packages to a SCORM management system tool in Canvas as well as place them into Canvas Files. Will find any SCORM packages that exist in a Blackboard course export.|
20
+
5
21
  ## Installation
6
22
 
7
23
  #### Canvas
@@ -40,6 +56,9 @@ Create a `senkyoshi.yml` and add credentials:
40
56
  # that the user has the required privileges
41
57
  :canvas_token: <canvas token>
42
58
 
59
+ # The account or sub-account ID. This can be :self, :default, or an ID
60
+ :account_id: <id>
61
+
43
62
  # URL of SCORM manager. This could be the Adhesion app
44
63
  # [https://github.com/atomicjolt/adhesion]
45
64
  :scorm_url: <scorm manager url>
@@ -53,33 +72,34 @@ Create a `senkyoshi.yml` and add credentials:
53
72
  # running rake shared_auth, which will generate and save a token
54
73
  :scorm_shared_auth: <scorm manager token>
55
74
 
56
- # The account or sub-account ID. This can be :self, :default, or an ID
57
- :account_id: <id>
58
-
59
75
  # The number of seconds before uploads timeout. Defaults to 1800 (30 minutes)
60
76
  :request_timeout: <request timeout seconds>
61
77
  ```
62
78
 
63
- ## Usage
79
+ ## CLI Usage
80
+
81
+ Senkyoshi rake tasks can be used to batch convert Blackboard Courses to Canvas Courses and optionally upload them to a Canvas instance.
82
+
83
+ It expects all Blackboard courses to be converted to be in a folder called `sources`, and outputs to a folder
64
84
 
65
85
  Run the rake task to convert from .zip to .imscc:
66
- ```sh
86
+ ```bash
67
87
  rake senkyoshi:imscc
68
88
  ```
69
89
  This will take all your files in your source folder and convert them to your outputs folder.
70
90
 
71
91
  Run converting files in parallel:
72
- ```sh
92
+ ```bash
73
93
  time rake senkyoshi:imscc -m # The `time` command is optional.
74
94
  ```
75
95
 
76
96
  Delete entire outputs folder:
77
- ```sh
97
+ ```bash
78
98
  rake clean
79
99
  ```
80
100
 
81
101
  Upload to Canvas to process:
82
- ```sh
102
+ ```bash
83
103
  rake senkyoshi:upload
84
104
  ```
85
105
 
@@ -14,5 +14,5 @@
14
14
  # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
15
 
16
16
  module Senkyoshi
17
- VERSION = "1.0.8".freeze
17
+ VERSION = "1.0.9".freeze
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: senkyoshi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Atomic Jolt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-01 00:00:00.000000000 Z
11
+ date: 2017-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry-byebug
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 1.6.6
89
+ version: '1.6'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 1.6.6
96
+ version: '1.6'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: pandarus
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -112,14 +112,14 @@ dependencies:
112
112
  name: activesupport
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - "~>"
115
+ - - ">="
116
116
  - !ruby/object:Gem::Version
117
117
  version: '4.2'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - "~>"
122
+ - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '4.2'
125
125
  - !ruby/object:Gem::Dependency
@@ -233,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
233
233
  version: '0'
234
234
  requirements: []
235
235
  rubyforge_project:
236
- rubygems_version: 2.5.1
236
+ rubygems_version: 2.6.8
237
237
  signing_key:
238
238
  specification_version: 4
239
239
  summary: Converts Blackboard zip file to Canvas Common Cartridge