ruby_captivate 1.0.9 → 1.0.10
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/bin/ruby_captivate +11 -0
- data/bin/ruby_captivate~ +4 -0
- metadata +6 -2
data/bin/ruby_captivate
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'ruby_captivate'
|
|
3
|
+
#puts RubyCaptivate.hola(ARGV[0])
|
|
4
|
+
|
|
5
|
+
class InitializerGenerator < Rails::Generators::Base
|
|
6
|
+
def create_initializer_file
|
|
7
|
+
create_file "config/initializers/initializer.rb", "# Add initialization content here"
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
abort "you need to write me"
|
data/bin/ruby_captivate~
ADDED
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.10
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,9 @@ date: 2012-01-27 00:00:00.000000000 Z
|
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Adobe Captivate reporting for Ruby
|
|
15
15
|
email: mleveton@prepcloud.com
|
|
16
|
-
executables:
|
|
16
|
+
executables:
|
|
17
|
+
- ruby_captivate
|
|
18
|
+
- ruby_captivate~
|
|
17
19
|
extensions: []
|
|
18
20
|
extra_rdoc_files: []
|
|
19
21
|
files:
|
|
@@ -22,6 +24,8 @@ files:
|
|
|
22
24
|
- test/test_ruby_captivate.rb
|
|
23
25
|
- bin/install.rb
|
|
24
26
|
- bin/initializer_generator.rb
|
|
27
|
+
- bin/ruby_captivate
|
|
28
|
+
- bin/ruby_captivate~
|
|
25
29
|
homepage: https://github.com/Leveton/ruby_captivate
|
|
26
30
|
licenses: []
|
|
27
31
|
post_install_message:
|