wordnik 0.3.0 → 0.3.1
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/Gemfile.lock +13 -13
- data/lib/wordnik/version.rb +1 -1
- data/spec/active_support_spec.rb +13 -0
- metadata +3 -1
data/Gemfile.lock
CHANGED
|
@@ -2,28 +2,28 @@ PATH
|
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
4
|
wordnik (0.3.0)
|
|
5
|
-
activemodel (
|
|
6
|
-
addressable (
|
|
7
|
-
htmlentities (
|
|
8
|
-
json (
|
|
9
|
-
nokogiri (
|
|
10
|
-
typhoeus (
|
|
5
|
+
activemodel (>= 3.0.3)
|
|
6
|
+
addressable (>= 2.2.4)
|
|
7
|
+
htmlentities (>= 4.2.4)
|
|
8
|
+
json (>= 1.4.6)
|
|
9
|
+
nokogiri (>= 1.4.4)
|
|
10
|
+
typhoeus (>= 0.2.1)
|
|
11
11
|
|
|
12
12
|
GEM
|
|
13
13
|
remote: http://rubygems.org/
|
|
14
14
|
specs:
|
|
15
|
-
activemodel (3.0.
|
|
16
|
-
activesupport (= 3.0.
|
|
15
|
+
activemodel (3.0.5)
|
|
16
|
+
activesupport (= 3.0.5)
|
|
17
17
|
builder (~> 2.1.2)
|
|
18
18
|
i18n (~> 0.4)
|
|
19
|
-
activesupport (3.0.
|
|
19
|
+
activesupport (3.0.5)
|
|
20
20
|
addressable (2.2.4)
|
|
21
21
|
builder (2.1.2)
|
|
22
22
|
crack (0.1.8)
|
|
23
23
|
diff-lcs (1.1.2)
|
|
24
24
|
htmlentities (4.2.4)
|
|
25
25
|
i18n (0.5.0)
|
|
26
|
-
json (1.
|
|
26
|
+
json (1.5.1)
|
|
27
27
|
mime-types (1.16)
|
|
28
28
|
nokogiri (1.4.4)
|
|
29
29
|
rspec (2.4.0)
|
|
@@ -45,7 +45,7 @@ PLATFORMS
|
|
|
45
45
|
ruby
|
|
46
46
|
|
|
47
47
|
DEPENDENCIES
|
|
48
|
-
rspec (
|
|
49
|
-
vcr (
|
|
50
|
-
webmock (
|
|
48
|
+
rspec (>= 2.4.0)
|
|
49
|
+
vcr (>= 1.5.1)
|
|
50
|
+
webmock (>= 1.6.2)
|
|
51
51
|
wordnik!
|
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: 0.3.
|
|
5
|
+
version: 0.3.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Zeke Sikelianos
|
|
@@ -152,6 +152,7 @@ files:
|
|
|
152
152
|
- lib/wordnik/resource.rb
|
|
153
153
|
- lib/wordnik/response.rb
|
|
154
154
|
- lib/wordnik/version.rb
|
|
155
|
+
- spec/active_support_spec.rb
|
|
155
156
|
- spec/endpoint_spec.rb
|
|
156
157
|
- spec/operation_parameter_spec.rb
|
|
157
158
|
- spec/operation_spec.rb
|
|
@@ -191,6 +192,7 @@ signing_key:
|
|
|
191
192
|
specification_version: 3
|
|
192
193
|
summary: A ruby wrapper for the Wordnik API
|
|
193
194
|
test_files:
|
|
195
|
+
- spec/active_support_spec.rb
|
|
194
196
|
- spec/endpoint_spec.rb
|
|
195
197
|
- spec/operation_parameter_spec.rb
|
|
196
198
|
- spec/operation_spec.rb
|