fastcaptcha 0.2.1 → 0.2.2
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/VERSION +1 -1
- data/ext/extconf.rb +9 -1
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.2
|
data/ext/extconf.rb
CHANGED
|
@@ -12,6 +12,14 @@ lib_2 = [ 'highgui', 'cvEncodeImage', headers ]
|
|
|
12
12
|
if have_header('opencv/cxcore.h') && have_library(*lib_1) && have_library(*lib_2)
|
|
13
13
|
create_makefile 'fastcaptcha'
|
|
14
14
|
else
|
|
15
|
-
puts
|
|
15
|
+
puts %q{
|
|
16
|
+
Cannot find opencv headers or libraries.
|
|
17
|
+
|
|
18
|
+
On debian based systems you can install it from apt as,
|
|
19
|
+
sudo apt-get install libcv-dev libhighgui-dev
|
|
20
|
+
|
|
21
|
+
Refer to http://opencv.willowgarage.com/wiki/InstallGuide for other platforms or operating systems.
|
|
22
|
+
}
|
|
23
|
+
|
|
16
24
|
exit 1
|
|
17
25
|
end
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 0.2.
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.2.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Bharanee Rathna
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2011-05-
|
|
17
|
+
date: 2011-05-09 00:00:00 +10:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|