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.
@@ -2,28 +2,28 @@ PATH
2
2
  remote: .
3
3
  specs:
4
4
  wordnik (0.3.0)
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)
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.3)
16
- activesupport (= 3.0.3)
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.3)
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.4.6)
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 (= 2.4.0)
49
- vcr (= 1.5.1)
50
- webmock (= 1.6.2)
48
+ rspec (>= 2.4.0)
49
+ vcr (>= 1.5.1)
50
+ webmock (>= 1.6.2)
51
51
  wordnik!
@@ -1,3 +1,3 @@
1
1
  module Wordnik
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe String do
4
+
5
+ it "underscores" do
6
+ "thisIsATest".underscore.should == "this_is_a_test"
7
+ end
8
+
9
+ it "camelizes" do
10
+ "camel_toe".camelize.should == "CamelToe"
11
+ end
12
+
13
+ end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: wordnik
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.3.0
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