cv2.py 0.2.0 → 0.3.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 253eb5df8fc56a1cf36de261eb355578f7f520b28cc91bc59d312fa079a3b7c3
4
- data.tar.gz: 812268c17fdddec847e4ee06c0ea167c005639aa3e5a5617b28d3bc66bba13bc
3
+ metadata.gz: c01d791d1bd7a73de30a6fc5e9531f11a579c3171785ce0dded47a91557ffdd5
4
+ data.tar.gz: 2d30045c291c8a475e766686f6767ce8807c1a13e67ceeb20263d45264cf7118
5
5
  SHA512:
6
- metadata.gz: c4caae31197ee5aae02846ec8b2b3d9cebe291b9439c90e1637ead1cc9730425af73c75ef6bbd4bf9640923069fe6291b0a29a9c48959034890d5dcc57afd463
7
- data.tar.gz: 558579216f9cd09880b92d66115e906169aa38ca677ffd7a29c0e7ae3155eca35a7427173708468f8535f97f45dbd466f3f545ae31b3af15e87a58c45c51c079
6
+ metadata.gz: fec604b512e2f995d63d58080078b6272dacb786f8ac9ae1760ffcddd7138ee65264c99ccc1111acf38512f05e0bcb242186fca4a2567d7b012dcc1148ca4b85
7
+ data.tar.gz: b1f2b2cdb7f4bb95ad5996ffdeb2ba3394eca16640f9d9759ddd5a7c545829341a303e279b83b91ca86501ae23a8ba856ecb5c0f3a8bda4226a3cb9c5f5d461c
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
+ Gemfile.lock
1
2
  /.bundle/
2
3
  /.yardoc
3
4
  /_yardoc/
@@ -11,7 +11,7 @@ before_script:
11
11
 
12
12
  rubocop:
13
13
  script:
14
- - bundle exec rubocop
14
+ - bundle exec rake rubocop
15
15
 
16
16
  rspec:
17
17
  script:
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # CV2
2
2
 
3
- Ruby wrapper for the Python OpenCV API (cv2).
3
+ Ruby wrapper for the Python OpenCV API (cv2) using PyCall via RubyPy.
4
4
 
5
5
  ## Installation
6
6
 
data/Rakefile CHANGED
@@ -1,6 +1,9 @@
1
1
  require 'bundler/gem_tasks'
2
- require 'rspec/core/rake_task'
3
2
 
3
+ require 'rspec/core/rake_task'
4
4
  RSpec::Core::RakeTask.new(:spec)
5
5
 
6
+ require 'rubocop/rake_task'
7
+ RuboCop::RakeTask.new
8
+
6
9
  task default: :spec
@@ -3,12 +3,11 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = 'cv2.py'
6
- spec.version = '0.2.0'
6
+ spec.version = '0.3.0'
7
7
  spec.authors = ['Frank J. Cameron']
8
8
  spec.email = ['fjc@fastmail.net']
9
9
 
10
- spec.summary = 'Ruby wrapper for the Python OpenCV API (cv2).'
11
- spec.description = ''
10
+ spec.summary = 'Ruby (PyCall/RubyPy) wrapper for the OpenCV API.'
12
11
  spec.homepage = 'https://gitlab.com/fjc/ruby-cv2.py'
13
12
  spec.license = 'MIT'
14
13
 
data/lib/cv2.rb CHANGED
@@ -1,20 +1,8 @@
1
1
  require 'ruby.py'
2
2
 
3
3
  # Top-level module to expose Python 'cv2' API to Ruby.
4
- module CV2
5
- def self._pym
6
- @pym ||= RubyPy.import('cv2')
7
- end
8
-
9
- def self.method_missing(method_name, *arguments, &block)
10
- if respond_to_missing?(method_name)
11
- _pym.send(method_name, *arguments, &block)
12
- else
13
- super
14
- end
15
- end
4
+ CV2 = RubyPy.import('cv2')
16
5
 
17
- def self.respond_to_missing?(method_name, include_private = false)
18
- _pym.respond_to?(method_name, include_private)
19
- end
6
+ # Enhance the module's Ruby API.
7
+ module CV2
20
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cv2.py
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Frank J. Cameron
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-04 00:00:00.000000000 Z
11
+ date: 2018-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0.2'
97
- description: ''
97
+ description:
98
98
  email:
99
99
  - fjc@fastmail.net
100
100
  executables: []
@@ -106,7 +106,6 @@ files:
106
106
  - ".rspec"
107
107
  - ".travis.yml"
108
108
  - Gemfile
109
- - Gemfile.lock
110
109
  - LICENSE.txt
111
110
  - README.md
112
111
  - Rakefile
@@ -137,5 +136,5 @@ rubyforge_project:
137
136
  rubygems_version: 2.7.6
138
137
  signing_key:
139
138
  specification_version: 4
140
- summary: Ruby wrapper for the Python OpenCV API (cv2).
139
+ summary: Ruby (PyCall/RubyPy) wrapper for the OpenCV API.
141
140
  test_files: []
@@ -1,63 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- cv2.py (0.2.0)
5
- ruby.py (~> 0.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- ast (2.4.0)
11
- coderay (1.1.2)
12
- diff-lcs (1.3)
13
- jaro_winkler (1.5.1)
14
- method_source (0.9.0)
15
- parallel (1.12.1)
16
- parser (2.5.1.0)
17
- ast (~> 2.4.0)
18
- powerpack (0.1.2)
19
- pry (0.11.3)
20
- coderay (~> 1.1.0)
21
- method_source (~> 0.9.0)
22
- pycall (1.0.3)
23
- rainbow (3.0.0)
24
- rake (10.5.0)
25
- rspec (3.7.0)
26
- rspec-core (~> 3.7.0)
27
- rspec-expectations (~> 3.7.0)
28
- rspec-mocks (~> 3.7.0)
29
- rspec-core (3.7.1)
30
- rspec-support (~> 3.7.0)
31
- rspec-expectations (3.7.0)
32
- diff-lcs (>= 1.2.0, < 2.0)
33
- rspec-support (~> 3.7.0)
34
- rspec-mocks (3.7.0)
35
- diff-lcs (>= 1.2.0, < 2.0)
36
- rspec-support (~> 3.7.0)
37
- rspec-support (3.7.1)
38
- rubocop (0.57.2)
39
- jaro_winkler (~> 1.5.1)
40
- parallel (~> 1.10)
41
- parser (>= 2.5)
42
- powerpack (~> 0.1)
43
- rainbow (>= 2.2.2, < 4.0)
44
- ruby-progressbar (~> 1.7)
45
- unicode-display_width (~> 1.0, >= 1.0.1)
46
- ruby-progressbar (1.9.0)
47
- ruby.py (0.2.1)
48
- pycall
49
- unicode-display_width (1.4.0)
50
-
51
- PLATFORMS
52
- ruby
53
-
54
- DEPENDENCIES
55
- bundler (~> 1.16)
56
- cv2.py!
57
- pry
58
- rake (~> 10.0)
59
- rspec (~> 3.0)
60
- rubocop (~> 0.57.2)
61
-
62
- BUNDLED WITH
63
- 1.16.2