ruby_captivate 1.0.2 → 1.0.4
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.
- data/README.txt +2 -2
- data/bin/ruby_captivate +2 -1
- data/lib/ruby_captivate.rb +3 -5
- metadata +8 -11
data/README.txt
CHANGED
@@ -4,7 +4,7 @@ https://github.com/Leveton/ruby_captivate
|
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
6
|
|
7
|
-
Process Adobe Captivate SWF files with Ruby.
|
7
|
+
Process Adobe Captivate SWF files with Ruby.
|
8
8
|
|
9
9
|
== FEATURES/PROBLEMS:
|
10
10
|
|
@@ -13,7 +13,7 @@ In your Captivate instance, you must specify a target URL of http://www.<yourdom
|
|
13
13
|
More detailed instructions on how to set up the reporting of results at the Captivate end can be found here: https://tv.adobe.com/watch/publish-and-track-results/reporting-using-lms-or-internal-server/
|
14
14
|
|
15
15
|
== SYNOPSIS:
|
16
|
-
|
16
|
+
Creates a "captivate_results" directory in the "doc" directory of your project. In "captivate_results", XML files containing the Captivate quiz results will be appear after a quiz completed. Creates the necessary route and controller upon calling "rails generate ruby_captivate:install"
|
17
17
|
After installation, take a Captivate quiz and check for a generated XML file in 'doc/captivate_results/'. You can then use the Nokogiri gem to parse the results. http://rubygems.org/gems/nokogiri
|
18
18
|
|
19
19
|
== REQUIREMENTS:
|
data/bin/ruby_captivate
CHANGED
data/lib/ruby_captivate.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
class RubyCaptivate
|
2
|
-
VERSION = '1.0.
|
2
|
+
VERSION = '1.0.4'
|
3
3
|
|
4
|
-
def
|
4
|
+
def process_captivate_results
|
5
5
|
company_name = params[:CompanyName]
|
6
6
|
department_name = params[:DepartmentName]
|
7
7
|
course_name = params[:CourseName]
|
@@ -15,8 +15,6 @@ def self.process_captivate_results
|
|
15
15
|
handle.close
|
16
16
|
#file_save = File.open(handle)
|
17
17
|
end
|
18
|
-
|
19
|
-
puts "hello"
|
20
|
-
end
|
18
|
+
|
21
19
|
|
22
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_captivate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-01-
|
12
|
+
date: 2012-01-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rdoc
|
16
|
-
requirement: &
|
16
|
+
requirement: &17882760 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '3.10'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *17882760
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: hoe
|
27
|
-
requirement: &
|
27
|
+
requirement: &17882200 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,11 +32,8 @@ dependencies:
|
|
32
32
|
version: '2.13'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
36
|
-
description: Process Adobe Captivate SWF files with Ruby.
|
37
|
-
directory in the "doc" directory of your project. In "captivate_results", XML files
|
38
|
-
containing the Captivate quiz results will be appear after a quiz completed. Creates
|
39
|
-
the necessary route and controller upon calling "rails generate ruby_captivate:install"
|
35
|
+
version_requirements: *17882200
|
36
|
+
description: Process Adobe Captivate SWF files with Ruby.
|
40
37
|
email:
|
41
38
|
- mleveton@prepcloud.com
|
42
39
|
executables:
|
@@ -81,6 +78,6 @@ rubyforge_project: ruby_captivate
|
|
81
78
|
rubygems_version: 1.8.10
|
82
79
|
signing_key:
|
83
80
|
specification_version: 3
|
84
|
-
summary: Process Adobe Captivate SWF files with Ruby
|
81
|
+
summary: Process Adobe Captivate SWF files with Ruby.
|
85
82
|
test_files:
|
86
83
|
- test/test_ruby_captivate.rb
|