ruby_captivate 1.0.22 → 1.0.23
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.
@@ -3,9 +3,11 @@ module Ruby_Captivate
|
|
3
3
|
class InstallGenerator < Rails::Generators::Base
|
4
4
|
source_root File.expand_path('../../../templates', __FILE__)
|
5
5
|
class_option :template_engine
|
6
|
+
require 'thor'
|
6
7
|
|
8
|
+
def copy_files
|
7
9
|
copy_file 'ruby_captivate.rb', 'config/initializers/ruby_captivate.rb'
|
8
|
-
|
10
|
+
end
|
9
11
|
|
10
12
|
end
|
11
13
|
end
|
@@ -4,8 +4,9 @@ module Ruby_Captivate
|
|
4
4
|
source_root File.expand_path('../../../templates', __FILE__)
|
5
5
|
class_option :template_engine
|
6
6
|
|
7
|
-
|
8
|
-
|
7
|
+
def copy_files
|
8
|
+
copy_file 'ruby_captivate.rb', 'config/initializers/ruby_captivate.rb'
|
9
|
+
end
|
9
10
|
|
10
11
|
end
|
11
12
|
end
|
Binary file
|
data/ruby_captivate.gemspec
CHANGED
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "ruby_captivate"
|
5
|
-
s.version = "1.0.
|
5
|
+
s.version = "1.0.23"
|
6
6
|
s.authors = ["Michael Leveton"]
|
7
7
|
s.date = %q{2012-01-27}
|
8
8
|
s.description = 'Adobe Captivate reporting for Ruby'
|
@@ -16,5 +16,5 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.bindir = "bin"
|
17
17
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
18
|
s.require_paths = ["lib"]
|
19
|
-
|
19
|
+
s.add_dependency('thor')
|
20
20
|
end
|
data/ruby_captivate.gemspec~
CHANGED
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "ruby_captivate"
|
5
|
-
s.version = "1.0.
|
5
|
+
s.version = "1.0.22"
|
6
6
|
s.authors = ["Michael Leveton"]
|
7
7
|
s.date = %q{2012-01-27}
|
8
8
|
s.description = 'Adobe Captivate reporting for Ruby'
|
@@ -16,5 +16,5 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.bindir = "bin"
|
17
17
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
18
|
s.require_paths = ["lib"]
|
19
|
-
|
19
|
+
s.add_dependency('thor')
|
20
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.23
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,18 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-01-27 00:00:00.000000000 Z
|
13
|
-
dependencies:
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: thor
|
16
|
+
requirement: &12173000 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *12173000
|
14
25
|
description: Adobe Captivate reporting for Ruby
|
15
26
|
email: mleveton@prepcloud.com
|
16
27
|
executables:
|
@@ -124,6 +135,7 @@ files:
|
|
124
135
|
- pkg/ruby_captivate-1.0.7/bin/ruby_captivate
|
125
136
|
- pkg/ruby_captivate-1.0.7/lib/ruby_captivate.rb
|
126
137
|
- pkg/ruby_captivate-1.0.7/test/test_ruby_captivate.rb
|
138
|
+
- ruby_captivate-1.0.22.gem
|
127
139
|
- ruby_captivate.gemspec
|
128
140
|
- ruby_captivate.gemspec~
|
129
141
|
- test/test_ruby_captivate.rb
|