ruby_captivate 1.0.32 → 1.0.33

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.32"
5
+ s.version = "1.0.33"
6
6
  s.authors = ["Michael Leveton"]
7
7
  s.date = %q{2012-01-27}
8
8
  s.description = 'Adobe Captivate reporting for Ruby'
@@ -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.31"
5
+ s.version = "1.0.32"
6
6
  s.authors = ["Michael Leveton"]
7
7
  s.date = %q{2012-01-27}
8
8
  s.description = 'Adobe Captivate reporting for Ruby'
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.32
4
+ version: 1.0.33
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-01-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
16
- requirement: &13754100 !ruby/object:Gem::Requirement
16
+ requirement: &7821360 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *13754100
24
+ version_requirements: *7821360
25
25
  description: Adobe Captivate reporting for Ruby
26
26
  email: mleveton@prepcloud.com
27
27
  executables:
@@ -47,14 +47,13 @@ files:
47
47
  - bin/install.rb~
48
48
  - bin/ruby_captivate
49
49
  - bin/ruby_captivate~
50
- - lib/generators/install_generator.rb
51
50
  - lib/generators/install_generator.rb~
52
51
  - lib/generators/ruby_captivate/initializer_generator.rb
53
52
  - lib/generators/ruby_captivate/initializer_generator.rb~
54
53
  - lib/generators/ruby_captivate/install/install_generator.rb
55
54
  - lib/generators/ruby_captivate/install/install_generator.rb~
56
- - lib/generators/templates/ruby_captivate.rb
57
- - lib/generators/templates/ruby_captivate.rb~
55
+ - lib/generators/ruby_captivate/templates/ruby_captivate.rb
56
+ - lib/generators/ruby_captivate/templates/ruby_captivate.rb~
58
57
  - lib/ruby_captivate.rb
59
58
  - pkg/ruby_captivate-1.0.0.gem
60
59
  - pkg/ruby_captivate-1.0.0/.autotest
@@ -136,7 +135,7 @@ files:
136
135
  - pkg/ruby_captivate-1.0.7/bin/ruby_captivate
137
136
  - pkg/ruby_captivate-1.0.7/lib/ruby_captivate.rb
138
137
  - pkg/ruby_captivate-1.0.7/test/test_ruby_captivate.rb
139
- - ruby_captivate-1.0.31.gem
138
+ - ruby_captivate-1.0.32.gem
140
139
  - ruby_captivate.gemspec
141
140
  - ruby_captivate.gemspec~
142
141
  - test/test_ruby_captivate.rb
@@ -1,12 +0,0 @@
1
- module ruby_captivate
2
- class InstallGenerator < Rails::Generators::Base
3
- source_root File.expand_path("../../templates", __FILE__)
4
-
5
- desc "Creates a ruby_captivate initializer and copies locale files to your application."
6
- class_option :orm
7
-
8
- def add_my_initializer
9
- template "ruby_captivate.rb", "config/initializers/ruby_captivate.rb"
10
- end
11
- end
12
- end