ropencv 0.0.8 → 0.0.9

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.
Files changed (3) hide show
  1. data/ext/rbind.rb +12 -12
  2. data/ropencv.gemspec +1 -1
  3. metadata +1 -1
data/ext/rbind.rb CHANGED
@@ -60,18 +60,18 @@ rbind.parser.type("std::vector<Point3d>")
60
60
  rbind.parser.type("std::vector<Vec4i>")
61
61
 
62
62
  # add opencv docu
63
- @doc = YAML.load(File.open(File.join(File.dirname(__FILE__),'opencv.yml')).read)
64
- rbind.parser.each_type do |t|
65
- if @doc.has_key?(t.full_name)
66
- t.doc = @doc[t.full_name]
67
- end
68
- next unless t.is_a?(Rbind::RNamespace)
69
- t.each_operation do |op|
70
- if @doc.has_key?(op.full_name)
71
- op.doc = @doc[op.full_name]
72
- end
73
- end
74
- end
63
+ #@doc = YAML.load(File.open(File.join(File.dirname(__FILE__),'opencv.yml')).read)
64
+ #rbind.parser.each_type do |t|
65
+ # if @doc.has_key?(t.full_name)
66
+ # t.doc = @doc[t.full_name]
67
+ # end
68
+ # next unless t.is_a?(Rbind::RNamespace)
69
+ # t.each_operation do |op|
70
+ # if @doc.has_key?(op.full_name)
71
+ # op.doc = @doc[op.full_name]
72
+ # end
73
+ # end
74
+ #end
75
75
 
76
76
  # generate files
77
77
  rbind.generator_ruby.file_prefix = "ropencv"
data/ropencv.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'ropencv'
3
- s.version = '0.0.8'
3
+ s.version = '0.0.9'
4
4
  s.date = '2013-08-13'
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.authors = ['Alexander Duda']
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ropencv
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.8
5
+ version: 0.0.9
6
6
  platform: ruby
7
7
  authors:
8
8
  - Alexander Duda