wordnik 4.06.00 → 4.06.01
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -3
- data/api_docs/.gitkeep +0 -0
- data/api_docs/account.json +1 -0
- data/api_docs/corpus.json +1 -0
- data/api_docs/document.json +1 -0
- data/api_docs/partners.json +1 -0
- data/api_docs/tag.json +1 -0
- data/api_docs/user.json +1 -0
- data/api_docs/users.json +1 -0
- data/api_docs/word.json +1 -0
- data/api_docs/wordList.json +1 -0
- data/api_docs/wordLists.json +1 -0
- data/api_docs/words.json +1 -0
- data/lib/wordnik/resource_modules/.gitkeep +0 -0
- data/lib/wordnik/resource_modules/account.rb +486 -0
- data/lib/wordnik/resource_modules/corpus.rb +453 -0
- data/lib/wordnik/resource_modules/document.rb +167 -0
- data/lib/wordnik/resource_modules/partners.rb +339 -0
- data/lib/wordnik/resource_modules/tag.rb +59 -0
- data/lib/wordnik/resource_modules/user.rb +1207 -0
- data/lib/wordnik/resource_modules/users.rb +216 -0
- data/lib/wordnik/resource_modules/word.rb +1391 -0
- data/lib/wordnik/resource_modules/word_list.rb +574 -0
- data/lib/wordnik/resource_modules/word_lists.rb +139 -0
- data/lib/wordnik/resource_modules/words.rb +645 -0
- data/lib/wordnik/version.rb +1 -1
- metadata +24 -26
data/lib/wordnik/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: wordnik
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 4.06.
|
5
|
+
version: 4.06.01
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Zeke Sikelianos
|
@@ -11,7 +11,7 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date: 2011-06-
|
14
|
+
date: 2011-06-19 00:00:00 -07:00
|
15
15
|
default_executable:
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
@@ -131,33 +131,10 @@ files:
|
|
131
131
|
- README.md
|
132
132
|
- Rakefile
|
133
133
|
- api_docs/.gitkeep
|
134
|
-
- config/pretty_print.xsl
|
135
|
-
- lib/wordnik.rb
|
136
|
-
- lib/wordnik/configuration.rb
|
137
|
-
- lib/wordnik/endpoint.rb
|
138
|
-
- lib/wordnik/operation.rb
|
139
|
-
- lib/wordnik/operation_parameter.rb
|
140
|
-
- lib/wordnik/request.rb
|
141
|
-
- lib/wordnik/resource.rb
|
142
|
-
- lib/wordnik/resource_modules/.gitkeep
|
143
|
-
- lib/wordnik/response.rb
|
144
|
-
- lib/wordnik/version.rb
|
145
|
-
- spec/active_support_spec.rb
|
146
|
-
- spec/endpoint_spec.rb
|
147
|
-
- spec/operation_parameter_spec.rb
|
148
|
-
- spec/operation_spec.rb
|
149
|
-
- spec/request_spec.rb
|
150
|
-
- spec/resource_spec.rb
|
151
|
-
- spec/response_spec.rb
|
152
|
-
- spec/spec.opts
|
153
|
-
- spec/spec_helper.rb
|
154
|
-
- spec/wordnik_spec.rb
|
155
|
-
- wordnik.gemspec
|
156
134
|
- api_docs/account.json
|
157
135
|
- api_docs/corpus.json
|
158
136
|
- api_docs/document.json
|
159
137
|
- api_docs/partners.json
|
160
|
-
- api_docs/system.json
|
161
138
|
- api_docs/tag.json
|
162
139
|
- api_docs/user.json
|
163
140
|
- api_docs/users.json
|
@@ -165,11 +142,19 @@ files:
|
|
165
142
|
- api_docs/wordList.json
|
166
143
|
- api_docs/wordLists.json
|
167
144
|
- api_docs/words.json
|
145
|
+
- config/pretty_print.xsl
|
146
|
+
- lib/wordnik.rb
|
147
|
+
- lib/wordnik/configuration.rb
|
148
|
+
- lib/wordnik/endpoint.rb
|
149
|
+
- lib/wordnik/operation.rb
|
150
|
+
- lib/wordnik/operation_parameter.rb
|
151
|
+
- lib/wordnik/request.rb
|
152
|
+
- lib/wordnik/resource.rb
|
153
|
+
- lib/wordnik/resource_modules/.gitkeep
|
168
154
|
- lib/wordnik/resource_modules/account.rb
|
169
155
|
- lib/wordnik/resource_modules/corpus.rb
|
170
156
|
- lib/wordnik/resource_modules/document.rb
|
171
157
|
- lib/wordnik/resource_modules/partners.rb
|
172
|
-
- lib/wordnik/resource_modules/system.rb
|
173
158
|
- lib/wordnik/resource_modules/tag.rb
|
174
159
|
- lib/wordnik/resource_modules/user.rb
|
175
160
|
- lib/wordnik/resource_modules/users.rb
|
@@ -177,6 +162,19 @@ files:
|
|
177
162
|
- lib/wordnik/resource_modules/word_list.rb
|
178
163
|
- lib/wordnik/resource_modules/word_lists.rb
|
179
164
|
- lib/wordnik/resource_modules/words.rb
|
165
|
+
- lib/wordnik/response.rb
|
166
|
+
- lib/wordnik/version.rb
|
167
|
+
- spec/active_support_spec.rb
|
168
|
+
- spec/endpoint_spec.rb
|
169
|
+
- spec/operation_parameter_spec.rb
|
170
|
+
- spec/operation_spec.rb
|
171
|
+
- spec/request_spec.rb
|
172
|
+
- spec/resource_spec.rb
|
173
|
+
- spec/response_spec.rb
|
174
|
+
- spec/spec.opts
|
175
|
+
- spec/spec_helper.rb
|
176
|
+
- spec/wordnik_spec.rb
|
177
|
+
- wordnik.gemspec
|
180
178
|
has_rdoc: true
|
181
179
|
homepage: http://developer.wordnik.com
|
182
180
|
licenses: []
|