ruby_captivate 1.0.19 → 1.0.20
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.
|
@@ -4,17 +4,7 @@ module Ruby_Captivate
|
|
|
4
4
|
source_root File.expand_path('../../../templates', __FILE__)
|
|
5
5
|
class_option :template_engine
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
desc "Copies a config initializer to config/initializers/formtastic.rb"
|
|
10
|
-
def copy_files
|
|
11
|
-
copy_file 'ruby_captivate.rb', 'config/initializers/ruby_captivate.rb'
|
|
12
|
-
end
|
|
13
|
-
else
|
|
14
|
-
|
|
15
|
-
desc "Copies some CSS files to public/stylesheets/ and a config initializer to config/initializers/formtastic.rb"
|
|
16
|
-
|
|
17
|
-
end
|
|
7
|
+
create_file "config/initializers/initializer.rb", "# Add initialization content here"
|
|
18
8
|
|
|
19
9
|
|
|
20
10
|
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.20"
|
|
6
6
|
s.authors = ["Michael Leveton"]
|
|
7
7
|
s.date = %q{2012-01-27}
|
|
8
8
|
s.description = 'Adobe Captivate reporting for Ruby'
|
|
@@ -16,4 +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
|
+
s.add_dependency('thor')
|
|
19
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.19"
|
|
6
6
|
s.authors = ["Michael Leveton"]
|
|
7
7
|
s.date = %q{2012-01-27}
|
|
8
8
|
s.description = 'Adobe Captivate reporting for Ruby'
|
|
@@ -16,4 +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
|
+
s.add_dependency('thor')
|
|
19
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.20
|
|
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: &7633100 !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: *7633100
|
|
14
25
|
description: Adobe Captivate reporting for Ruby
|
|
15
26
|
email: mleveton@prepcloud.com
|
|
16
27
|
executables:
|
|
@@ -133,6 +144,7 @@ files:
|
|
|
133
144
|
- ruby_captivate-1.0.16.gem
|
|
134
145
|
- ruby_captivate-1.0.17.gem
|
|
135
146
|
- ruby_captivate-1.0.18.gem
|
|
147
|
+
- ruby_captivate-1.0.19.gem
|
|
136
148
|
- ruby_captivate-1.0.8.gem
|
|
137
149
|
- ruby_captivate-1.0.9.gem
|
|
138
150
|
- ruby_captivate.gemspec
|