mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
changed some files to make gem file properly
This commit is contained in:
parent
02fa6b9554
commit
d643b7533f
3 changed files with 41 additions and 26 deletions
20
Gemfile.lock
20
Gemfile.lock
|
@ -1,22 +1,22 @@
|
||||||
GEM
|
GEM
|
||||||
remote: http://rubygems.org/
|
remote: http://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
diff-lcs (1.1.2)
|
diff-lcs (1.1.3)
|
||||||
hoe (2.11.0)
|
hoe (2.12.5)
|
||||||
rake (~> 0.8)
|
rake (~> 0.8)
|
||||||
hoe-gemspec (1.0.0)
|
hoe-gemspec (1.0.0)
|
||||||
hoe (>= 2.2.0)
|
hoe (>= 2.2.0)
|
||||||
rake (0.9.2)
|
rake (0.9.2.2)
|
||||||
rake-compiler (0.7.9)
|
rake-compiler (0.7.9)
|
||||||
rake
|
rake
|
||||||
rspec (2.6.0)
|
rspec (2.7.0)
|
||||||
rspec-core (~> 2.6.0)
|
rspec-core (~> 2.7.0)
|
||||||
rspec-expectations (~> 2.6.0)
|
rspec-expectations (~> 2.7.0)
|
||||||
rspec-mocks (~> 2.6.0)
|
rspec-mocks (~> 2.7.0)
|
||||||
rspec-core (2.6.4)
|
rspec-core (2.7.1)
|
||||||
rspec-expectations (2.6.0)
|
rspec-expectations (2.7.0)
|
||||||
diff-lcs (~> 1.1.2)
|
diff-lcs (~> 1.1.2)
|
||||||
rspec-mocks (2.6.0)
|
rspec-mocks (2.7.0)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
14
Manifest.txt
14
Manifest.txt
|
@ -1,3 +1,4 @@
|
||||||
|
.gitignore
|
||||||
Gemfile
|
Gemfile
|
||||||
Gemfile.lock
|
Gemfile.lock
|
||||||
History.txt
|
History.txt
|
||||||
|
@ -5,6 +6,8 @@ License.txt
|
||||||
Manifest.txt
|
Manifest.txt
|
||||||
README.rdoc
|
README.rdoc
|
||||||
Rakefile
|
Rakefile
|
||||||
|
examples/box.png
|
||||||
|
examples/box_in_scene.png
|
||||||
examples/contours/bitmap-contours-with-labels.png
|
examples/contours/bitmap-contours-with-labels.png
|
||||||
examples/contours/bitmap-contours.png
|
examples/contours/bitmap-contours.png
|
||||||
examples/contours/bounding-box-detect-canny.rb
|
examples/contours/bounding-box-detect-canny.rb
|
||||||
|
@ -12,9 +15,13 @@ examples/contours/contour_retrieval_modes.rb
|
||||||
examples/contours/rotated-boxes.jpg
|
examples/contours/rotated-boxes.jpg
|
||||||
examples/convexhull.rb
|
examples/convexhull.rb
|
||||||
examples/face_detect.rb
|
examples/face_detect.rb
|
||||||
|
examples/find_obj.rb
|
||||||
examples/houghcircle.rb
|
examples/houghcircle.rb
|
||||||
examples/inpaint.png
|
examples/inpaint.png
|
||||||
examples/inpaint.rb
|
examples/inpaint.rb
|
||||||
|
examples/lenna-rotated.jpg
|
||||||
|
examples/lenna.jpg
|
||||||
|
examples/match_kdtree.rb
|
||||||
examples/paint.rb
|
examples/paint.rb
|
||||||
examples/snake.rb
|
examples/snake.rb
|
||||||
examples/stuff.jpg
|
examples/stuff.jpg
|
||||||
|
@ -42,6 +49,8 @@ ext/opencv/cvconvexitydefect.cpp
|
||||||
ext/opencv/cvconvexitydefect.h
|
ext/opencv/cvconvexitydefect.h
|
||||||
ext/opencv/cverror.cpp
|
ext/opencv/cverror.cpp
|
||||||
ext/opencv/cverror.h
|
ext/opencv/cverror.h
|
||||||
|
ext/opencv/cvfeaturetree.cpp
|
||||||
|
ext/opencv/cvfeaturetree.h
|
||||||
ext/opencv/cvfont.cpp
|
ext/opencv/cvfont.cpp
|
||||||
ext/opencv/cvfont.h
|
ext/opencv/cvfont.h
|
||||||
ext/opencv/cvhaarclassifiercascade.cpp
|
ext/opencv/cvhaarclassifiercascade.cpp
|
||||||
|
@ -172,8 +181,12 @@ test/test_cvchain.rb
|
||||||
test/test_cvcircle32f.rb
|
test/test_cvcircle32f.rb
|
||||||
test/test_cvconnectedcomp.rb
|
test/test_cvconnectedcomp.rb
|
||||||
test/test_cvcontour.rb
|
test/test_cvcontour.rb
|
||||||
|
test/test_cvcontourtree.rb
|
||||||
|
test/test_cverror.rb
|
||||||
|
test/test_cvfeaturetree.rb
|
||||||
test/test_cvfont.rb
|
test/test_cvfont.rb
|
||||||
test/test_cvhaarclassifiercascade.rb
|
test/test_cvhaarclassifiercascade.rb
|
||||||
|
test/test_cvhistogram.rb
|
||||||
test/test_cvhumoments.rb
|
test/test_cvhumoments.rb
|
||||||
test/test_cvline.rb
|
test/test_cvline.rb
|
||||||
test/test_cvmat.rb
|
test/test_cvmat.rb
|
||||||
|
@ -199,6 +212,7 @@ test/test_iplconvkernel.rb
|
||||||
test/test_iplimage.rb
|
test/test_iplimage.rb
|
||||||
test/test_mouseevent.rb
|
test/test_mouseevent.rb
|
||||||
test/test_opencv.rb
|
test/test_opencv.rb
|
||||||
|
test/test_pointset.rb
|
||||||
test/test_preliminary.rb
|
test/test_preliminary.rb
|
||||||
test/test_trackbar.rb
|
test/test_trackbar.rb
|
||||||
test/test_window.rb
|
test/test_window.rb
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue