dict_client 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/dict_client.gemspec +3 -3
- metadata +7 -12
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MzM5MjkwYzFhZmZjMGJlMDBlYTk5M2ZhZGZlNWE3ZGE5MWQ0YWI4ZA==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ZDM0MTBjMzU4NDE1NGE3MzJhYTk1YmQ1YzE1ODZkZWU5NjllMjY3Yw==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZWJjNTgzMmI1NDc0YmM1YWIxYjEwZjAwM2M2OWFlZTM2MDIyODZmMTdjNTBj
|
10
|
+
MGYzMTAzMGYzNjEyZWU3NjVmMjZiZjg5ZmU3YmNjZmE2MzEyZDBjY2MzZGZk
|
11
|
+
Zjk4OTY3NTg1ZTU4MzRmOThkODRhZWVhODg4MzllNzVjMGVhZjQ=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
ZDc0MDc3OTc1YzkxZTdlZDFmMTA5ZDVjYzJiZmVmNzg4MThmNTlmNGM2YTVj
|
14
|
+
ZjMyY2FkM2JkNGEzZjhjMTY2YjQ4MzE0ODBiM2ZkZDRkNmFkMGFkYmFiNDA4
|
15
|
+
NjYwMzExZjhjMTU0MWMwZmQ0OGY3ZmMyNTUxZmU1NmQxNjVjMDk=
|
data/dict_client.gemspec
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'dict_client'
|
3
|
-
s.version = '0.0.
|
3
|
+
s.version = '0.0.2'
|
4
4
|
s.homepage = 'https://github.com/leikind/dict_client'
|
5
|
-
s.date = '2013-07-
|
5
|
+
s.date = '2013-07-15'
|
6
6
|
s.summary = 'A simple client side DICT library and executable'
|
7
7
|
s.description = 'The Dictionary Server Protocol (DICT) is a TCP transaction based ' +
|
8
8
|
'query/response protocol that allows a client to access dictionary ' +
|
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.files = `git ls-files`.split($/)
|
14
14
|
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
15
15
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
16
|
+
s.license = 'GPL'
|
16
17
|
|
17
18
|
s.add_development_dependency 'rake'
|
18
19
|
s.add_development_dependency 'rspec'
|
19
|
-
|
20
20
|
end
|
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dict_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Dave Pearson
|
@@ -10,12 +9,11 @@ authors:
|
|
10
9
|
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date: 2013-07-
|
12
|
+
date: 2013-07-15 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: rake
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
17
|
requirements:
|
20
18
|
- - ! '>='
|
21
19
|
- !ruby/object:Gem::Version
|
@@ -23,7 +21,6 @@ dependencies:
|
|
23
21
|
type: :development
|
24
22
|
prerelease: false
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
24
|
requirements:
|
28
25
|
- - ! '>='
|
29
26
|
- !ruby/object:Gem::Version
|
@@ -31,7 +28,6 @@ dependencies:
|
|
31
28
|
- !ruby/object:Gem::Dependency
|
32
29
|
name: rspec
|
33
30
|
requirement: !ruby/object:Gem::Requirement
|
34
|
-
none: false
|
35
31
|
requirements:
|
36
32
|
- - ! '>='
|
37
33
|
- !ruby/object:Gem::Version
|
@@ -39,7 +35,6 @@ dependencies:
|
|
39
35
|
type: :development
|
40
36
|
prerelease: false
|
41
37
|
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
38
|
requirements:
|
44
39
|
- - ! '>='
|
45
40
|
- !ruby/object:Gem::Version
|
@@ -71,28 +66,28 @@ files:
|
|
71
66
|
- spec/responses_spec.rb
|
72
67
|
- spec/spec_helper.rb
|
73
68
|
homepage: https://github.com/leikind/dict_client
|
74
|
-
licenses:
|
69
|
+
licenses:
|
70
|
+
- GPL
|
71
|
+
metadata: {}
|
75
72
|
post_install_message:
|
76
73
|
rdoc_options: []
|
77
74
|
require_paths:
|
78
75
|
- lib
|
79
76
|
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
-
none: false
|
81
77
|
requirements:
|
82
78
|
- - ! '>='
|
83
79
|
- !ruby/object:Gem::Version
|
84
80
|
version: '0'
|
85
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
-
none: false
|
87
82
|
requirements:
|
88
83
|
- - ! '>='
|
89
84
|
- !ruby/object:Gem::Version
|
90
85
|
version: '0'
|
91
86
|
requirements: []
|
92
87
|
rubyforge_project:
|
93
|
-
rubygems_version:
|
88
|
+
rubygems_version: 2.0.5
|
94
89
|
signing_key:
|
95
|
-
specification_version:
|
90
|
+
specification_version: 4
|
96
91
|
summary: A simple client side DICT library and executable
|
97
92
|
test_files:
|
98
93
|
- spec/client_spec.rb
|