captcha3 0.0.5 → 1.0.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.
- metadata +6 -12
- data/.gitignore +0 -4
- data/Gemfile +0 -4
- data/Rakefile +0 -1
- data/captcha3.gemspec +0 -24
- data/lib/captcha3/version.rb +0 -3
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: captcha3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
|
+
- 1
|
|
7
8
|
- 0
|
|
8
9
|
- 0
|
|
9
|
-
|
|
10
|
-
version: 0.0.5
|
|
10
|
+
version: 1.0.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- victordong
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-04-
|
|
18
|
+
date: 2012-04-17 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: rmagick
|
|
@@ -31,7 +31,7 @@ dependencies:
|
|
|
31
31
|
version: "0"
|
|
32
32
|
type: :runtime
|
|
33
33
|
version_requirements: *id001
|
|
34
|
-
description:
|
|
34
|
+
description: generate a set of captcha images off-line
|
|
35
35
|
email:
|
|
36
36
|
- dongshuxiang888@126.com
|
|
37
37
|
executables: []
|
|
@@ -41,12 +41,7 @@ extensions: []
|
|
|
41
41
|
extra_rdoc_files: []
|
|
42
42
|
|
|
43
43
|
files:
|
|
44
|
-
- .gitignore
|
|
45
|
-
- Gemfile
|
|
46
|
-
- Rakefile
|
|
47
|
-
- captcha3.gemspec
|
|
48
44
|
- lib/captcha3.rb
|
|
49
|
-
- lib/captcha3/version.rb
|
|
50
45
|
homepage: ""
|
|
51
46
|
licenses: []
|
|
52
47
|
|
|
@@ -55,7 +50,6 @@ rdoc_options: []
|
|
|
55
50
|
|
|
56
51
|
require_paths:
|
|
57
52
|
- lib
|
|
58
|
-
- lib/captcha3
|
|
59
53
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
60
54
|
none: false
|
|
61
55
|
requirements:
|
|
@@ -77,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
77
71
|
requirements: []
|
|
78
72
|
|
|
79
73
|
rubyforge_project: captcha3
|
|
80
|
-
rubygems_version: 1.8.
|
|
74
|
+
rubygems_version: 1.8.15
|
|
81
75
|
signing_key:
|
|
82
76
|
specification_version: 3
|
|
83
77
|
summary: !binary |
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
require "bundler/gem_tasks"
|
data/captcha3.gemspec
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
|
2
|
-
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
-
require "captcha3/version"
|
|
4
|
-
|
|
5
|
-
Gem::Specification.new do |s|
|
|
6
|
-
s.name = "captcha3"
|
|
7
|
-
s.version = Captcha3::VERSION
|
|
8
|
-
s.authors = ["victordong"]
|
|
9
|
-
s.email = ["dongshuxiang888@126.com"]
|
|
10
|
-
s.homepage = ""
|
|
11
|
-
s.summary = %q{批量生成图片}
|
|
12
|
-
s.description = %q{dongsx}
|
|
13
|
-
|
|
14
|
-
s.rubyforge_project = "captcha3"
|
|
15
|
-
|
|
16
|
-
s.files = `git ls-files`.split("\n")
|
|
17
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
|
-
s.require_paths = ["lib", "lib/captcha3"]
|
|
20
|
-
|
|
21
|
-
# specify any dependencies here; for example:
|
|
22
|
-
# s.add_development_dependency "rspec"
|
|
23
|
-
s.add_runtime_dependency "rmagick"
|
|
24
|
-
end
|
data/lib/captcha3/version.rb
DELETED