fullcontact 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,17 @@
1
+ language: ruby
2
+
3
+ rvm:
4
+ - 1.9.3
5
+ - 2.0.0
6
+ - 2.1
7
+
8
+ gemfile:
9
+ - Gemfile
10
+
11
+ sudo: false
12
+
13
+ cache: bundler
14
+
15
+ before_script: "bundle update"
16
+
17
+ script: "bundle exec rake test"
data/Gemfile CHANGED
@@ -1,3 +1,4 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gemspec
3
+ gemspec
4
+ gem 'codeclimate-test-reporter', group: :test, require: nil
data/README.md CHANGED
@@ -2,13 +2,14 @@ FullContact Ruby Gem
2
2
  ====================
3
3
  A Ruby wrapper for the [FullContact API](http://www.fullcontact.com/)
4
4
 
5
-
5
+ [![Build Status](https://travis-ci.org/fullcontact/fullcontact-api-ruby.svg?branch=master)](https://travis-ci.org/fullcontact/fullcontact-api-ruby)
6
6
  [![Gem Version](https://badge.fury.io/rb/fullcontact.svg)](http://badge.fury.io/rb/fullcontact)
7
7
  [![Code Climate](https://codeclimate.com/github/fullcontact/fullcontact-api-ruby/badges/gpa.svg)](https://codeclimate.com/github/fullcontact/fullcontact-api-ruby)
8
8
  [![Test Coverage](https://codeclimate.com/github/fullcontact/fullcontact-api-ruby/badges/coverage.svg)](https://codeclimate.com/github/fullcontact/fullcontact-api-ruby)
9
9
 
10
10
  Changes
11
11
  -------
12
+ - 0.10.0 - Support for FullContact Company API
12
13
  - 0.9.0 - Removed Rash gem and replaced with Mashify + Plisskin
13
14
  - 0.8.2 - Fix for 0.8.0 constant resolution issue.
14
15
  - 0.8.0
@@ -54,6 +55,9 @@ Usage Examples
54
55
 
55
56
  # Get information from a phone number
56
57
  person6 = FullContact.person(phone:13037170414)
58
+
59
+ # Get information about a company
60
+ company1 = FullContact.company(domain: 'fullcontact.com')
57
61
 
58
62
  # Get information about a twitter and ensure a 30s socket open timeout and a 15s socket read timeout
59
63
  # Can throw a Faraday::Error::TimeoutError if timeouts are exceeded
@@ -6,9 +6,11 @@ module FullContact
6
6
  # order to avoid a superclass mismatch error, allowing those modules to be
7
7
  # Client-namespaced.
8
8
  require 'fullcontact/client/person'
9
+ require 'fullcontact/client/company'
9
10
 
10
11
  alias :api_endpoint :endpoint
11
12
 
12
13
  include FullContact::Client::Person
14
+ include FullContact::Client::Company
13
15
  end
14
16
  end
@@ -0,0 +1,12 @@
1
+ module FullContact
2
+ class Client
3
+ module Company
4
+ # Returns extended information for a given person (email, phone, twitter or facebook)
5
+ #
6
+ def company(options={}, faraday_options={})
7
+ response = get('company/lookup', options, false, faraday_options)
8
+ format.to_s.downcase == 'xml' ? response['person'] : response
9
+ end
10
+ end
11
+ end
12
+ end
@@ -1,3 +1,3 @@
1
1
  module FullContact
2
- VERSION = '0.9.0'
2
+ VERSION = '0.10.0'
3
3
  end
@@ -0,0 +1,191 @@
1
+
2
+ {
3
+ "status" : 200,
4
+ "requestId" : "92d5908a-8de4-4294-85d2-774051c33ef3",
5
+ "category" : [ {
6
+ "name" : "Other",
7
+ "code" : "OTHER"
8
+ } ],
9
+ "logo" : "https://d2ojpxxtu63wzl.cloudfront.net/static/e9f3aeb8965684906efa7ae514988ffb_0837a93ef09a70f8b9ff73efac18176225fd0b9cb8bf84a60c5926701b4c5033",
10
+ "website" : "https://www.fullcontact.com",
11
+ "languageLocale" : "en",
12
+ "organization" : {
13
+ "name" : "FullContact Inc.",
14
+ "approxEmployees" : 50,
15
+ "founded" : "2010",
16
+ "overview" : "Solving the world's contact information problem!",
17
+ "contactInfo" : {
18
+ "emailAddresses" : [ {
19
+ "value" : "support@fullcontact.com",
20
+ "label" : "support"
21
+ }, {
22
+ "value" : "sales@fullcontact.com",
23
+ "label" : "sales"
24
+ } ],
25
+ "phoneNumbers" : [ {
26
+ "number" : "+1 (888) 330-6943",
27
+ "label" : "other"
28
+ } ],
29
+ "addresses" : [ {
30
+ "addressLine1" : "1755 Blake Street",
31
+ "addressLine2" : "Suite 450",
32
+ "locality" : "Denver",
33
+ "region" : {
34
+ "name" : "Colorado",
35
+ "code" : "CO"
36
+ },
37
+ "country" : {
38
+ "name" : "United States",
39
+ "code" : "US"
40
+ },
41
+ "postalCode" : "80202",
42
+ "label" : "work"
43
+ } ]
44
+ },
45
+ "links" : [ {
46
+ "url" : "https://www.fullcontact.com/comments/feed",
47
+ "label" : "rss"
48
+ }, {
49
+ "url" : "https://www.fullcontact.com/home/feed",
50
+ "label" : "rss"
51
+ }, {
52
+ "url" : "https://www.fullcontact.com/developer",
53
+ "label" : "other"
54
+ }, {
55
+ "url" : "https://www.fullcontact.com/feed",
56
+ "label" : "rss"
57
+ }, {
58
+ "url" : "https://fullcontact.com/blog",
59
+ "label" : "blog"
60
+ }, {
61
+ "url" : "https://www.youtube.com/watch?v=koFtyUDbYak",
62
+ "label" : "youtube"
63
+ } ],
64
+ "images" : [ {
65
+ "url" : "https://d2ojpxxtu63wzl.cloudfront.net/static/1c390465c39c998a59c8717034982dfc_ff8af9a9f14da29ee687053e65d2ed103b8ab6f95b1f4d0147b9077ea04a3d6c",
66
+ "label" : "facebook"
67
+ }, {
68
+ "url" : "https://d2ojpxxtu63wzl.cloudfront.net/static/edaa53d9a080aea37ddfb85d775620a9_98a2d7beef6a5b4a53f43da4dd1a90bda21dc18f755394fdbf9b6cf3283853a0",
69
+ "label" : "twitter"
70
+ }, {
71
+ "url" : "https://d2ojpxxtu63wzl.cloudfront.net/static/1bacd7306731a30d2a9f024eeb1dcff1_94d77dcdedbfe40707ac4a75ca4f4d2978bffc20b2e33a3288ea9e4d47f5af6c",
72
+ "label" : "twitter"
73
+ }, {
74
+ "url" : "https://d2ojpxxtu63wzl.cloudfront.net/static/3f64db7ba9331fbd1e4cc11655e2d3d4_a2477a83cafc8a98d5533f3617f0b1db2796ad0826482e2eabdc8d3345d70c17",
75
+ "label" : "twitter"
76
+ }, {
77
+ "url" : "https://d2ojpxxtu63wzl.cloudfront.net/static/ee07ac81180408fde663426d3b0afb3f_3a1154347631c037b9bd2b2f33d4cbc8511d58f5c11ad3cbbc319957d1a5149b",
78
+ "label" : "pinterest"
79
+ }, {
80
+ "url" : "https://d2ojpxxtu63wzl.cloudfront.net/static/80885c5e8b570e69bdc55d29aad115cd_a1ce9fb51ea43971d861e452034056d807422a391ac8e27f76ee4a9e803698d1",
81
+ "label" : "googleplus"
82
+ }, {
83
+ "url" : "https://d2ojpxxtu63wzl.cloudfront.net/static/4be5211e4b0129d1c8d41e84f257f343_3d84b3de68d6060243972af12a8ca67c4a595fd86a4419d50bf429e6d778ce2d",
84
+ "label" : "other"
85
+ }, {
86
+ "url" : "https://d2ojpxxtu63wzl.cloudfront.net/static/7e9aa6402ff2975e297a01243c358619_c0b8d4a63a52f4a47106494561c0332b79f848b40fcbe92336a0a17b843f44f8",
87
+ "label" : "other"
88
+ } ],
89
+ "keywords" : [ "APIs", "Boulder", "Business", "Colorado", "Contact Management", "Denver", "Developer APIs", "Marketing", "Social Media", "Software", "Techstars", "Venture Capital" ]
90
+ },
91
+ "socialProfiles" : [ {
92
+ "bio" : "FullContact automatically cleans your contacts, enriches them with social profile data, and continually syncs them with all your contact sources.\n\nFor developers, we offer a suite of contact management APIs to normalize, de-duplicate, and enrich contact data with social profiles.\n\nAs Dropbox did for files and Evernote did for notes, FullContact is doing for contacts. And we’re providing it to individuals, businesses, and developers.",
93
+ "typeId" : "facebook",
94
+ "typeName" : "Facebook",
95
+ "url" : "https://www.facebook.com/FullContactAPI",
96
+ "username" : "FullContactAPI",
97
+ "id" : "159926450745554"
98
+ }, {
99
+ "bio" : "We're solving the world's contact information problem. Get your contacts under control with @FullContactApp & check out @FullContactAPI for our APIs.",
100
+ "followers" : 6279,
101
+ "following" : 1756,
102
+ "typeId" : "twitter",
103
+ "typeName" : "Twitter",
104
+ "url" : "https://twitter.com/FullContactInc",
105
+ "username" : "FullContactInc",
106
+ "id" : "142954090"
107
+ }, {
108
+ "bio" : "The API that turns partial contact information into full contact information. We provide data enrichment, de-duplication, normalization, and much more.",
109
+ "followers" : 5032,
110
+ "following" : 2444,
111
+ "typeId" : "twitter",
112
+ "typeName" : "Twitter",
113
+ "url" : "https://twitter.com/FullContactAPI",
114
+ "username" : "FullContactAPI",
115
+ "id" : "340611236"
116
+ }, {
117
+ "bio" : "Keep your contact information clean, complete & current across all your address books.",
118
+ "followers" : 3395,
119
+ "following" : 1561,
120
+ "typeId" : "twitter",
121
+ "typeName" : "Twitter",
122
+ "url" : "https://twitter.com/FullContactApp",
123
+ "username" : "FullContactApp",
124
+ "id" : "451688048"
125
+ }, {
126
+ "bio" : "FullContact's address book brings all of your contacts into one place and keeps them automatically up to date on the web, as well as on your iPhone and iPad. \n\nAdd photos to your contacts. Find them on social networks like Twitter, Facebook, LinkedIn and of course AngelList. It's the address book that busy professionals from any walk of life can appreciate, and best of all it's free. \n\nFor developers, the suite of FullContact APIs builds powerful, complete profiles of contacts that can be included in any application.",
127
+ "followers" : 259,
128
+ "typeId" : "angellist",
129
+ "typeName" : "AngelList",
130
+ "url" : "https://angel.co/fullcontact",
131
+ "username" : "fullcontact"
132
+ }, {
133
+ "bio" : "FullContact provides a suite of cloud-based contact management solutions for businesses, developers, and individuals.",
134
+ "typeId" : "crunchbasecompany",
135
+ "typeName" : "CrunchBase",
136
+ "url" : "http://www.crunchbase.com/organization/fullcontact",
137
+ "username" : "fullcontact"
138
+ }, {
139
+ "bio" : "FullContact is the API that keeps contact information current. We build APIs that developers can integrate into their applications using any language.",
140
+ "followers" : 28,
141
+ "following" : 55,
142
+ "typeId" : "pinterest",
143
+ "typeName" : "Pinterest",
144
+ "url" : "http://www.pinterest.com/fullcontact/",
145
+ "username" : "fullcontact"
146
+ }, {
147
+ "bio" : "All your contacts in one place and automatically up-to-date. Learn more about how we're solving the world's contact information problem at https://www.fullcontact.com.",
148
+ "typeId" : "google",
149
+ "typeName" : "GooglePlus",
150
+ "url" : "https://plus.google.com/u/0/107620035082673219790",
151
+ "id" : "107620035082673219790"
152
+ }, {
153
+ "typeId" : "klout",
154
+ "typeName" : "Klout",
155
+ "url" : "http://klout.com/FullContactApp",
156
+ "username" : "FullContactApp",
157
+ "id" : "85568398087860504"
158
+ }, {
159
+ "typeId" : "klout",
160
+ "typeName" : "Klout",
161
+ "url" : "http://klout.com/FullContactAPI",
162
+ "username" : "FullContactAPI",
163
+ "id" : "33777001971317895"
164
+ }, {
165
+ "bio" : "FullContact is solving the world's contact information problem by providing APIs to software developers to keep contact information clean, complete and current. FullContact provides identity resolution for all of the disparate pieces of contact information out there on the web. We do this by aggregating billions of contact records, all with numerous attributes, including quality, freshness and frequency. Our patent pending algorithms process all of this data and automatically produce clean, accurate full contact records. As a final step, we then check each data element to make sure that it's publicly available before providing it to our customers. FullContact is a TechStars Boulder 2011 Company.",
166
+ "typeId" : "linkedincompany",
167
+ "typeName" : "LinkedIn",
168
+ "url" : "https://www.linkedin.com/company/fullcontact-inc-",
169
+ "username" : "fullcontact-inc-",
170
+ "id" : "2431118"
171
+ } ],
172
+ "traffic" : {
173
+ "topCountryRanking" : [ {
174
+ "rank" : 7914,
175
+ "locale" : "us"
176
+ }, {
177
+ "rank" : 14756,
178
+ "locale" : "in"
179
+ }, {
180
+ "rank" : 10628,
181
+ "locale" : "gb"
182
+ } ],
183
+ "ranking" : [ {
184
+ "rank" : 19254,
185
+ "locale" : "global"
186
+ }, {
187
+ "rank" : 7914,
188
+ "locale" : "us"
189
+ } ]
190
+ }
191
+ }
data/spec/helper.rb CHANGED
@@ -1,6 +1,10 @@
1
1
  require 'rspec'
2
2
  require 'webmock/rspec'
3
3
  require 'simplecov'
4
+ require 'codeclimate-test-reporter'
5
+ CodeClimate::TestReporter.start
6
+
7
+ WebMock.disable_net_connect!(:allow => 'codeclimate.com')
4
8
 
5
9
  SimpleCov.start
6
10
 
@@ -0,0 +1,37 @@
1
+ require 'helper'
2
+
3
+ describe FullContact::Client::Company do
4
+ FullContact::Configuration::VALID_FORMATS.each do |format|
5
+ context ".new(:format => '#{format}')" do
6
+ before do
7
+ @client = FullContact::Client.new(:format => format, :api_key => 'api_key')
8
+ end
9
+
10
+ end
11
+ end
12
+
13
+ context "when parsing a response" do
14
+
15
+ before do
16
+ FullContact.configure do |config|
17
+ config.api_key = "api_key"
18
+ end
19
+
20
+ stub_get("company/lookup.json").
21
+ with(:query => {:apiKey => "api_key", :domain => "fullcontact.com"}).
22
+ to_return(:body => fixture("company.json"), :headers => {:content_type => "application/json; charset=utf-8"})
23
+
24
+ stub_get("company/lookup.json").
25
+ with(:query => {:apiKey => "api_key", :domain => "fullcontact.com"}).
26
+ to_return(:body => fixture("company.json"), :headers => {:content_type => "application/json; charset=utf-8"})
27
+ end
28
+
29
+ it 'should rubyize keys' do
30
+ expect(FullContact.company(domain: "fullcontact.com").organization.name).to(eq("FullContact Inc."))
31
+
32
+ expect(FullContact.company(domain: "fullcontact.com")).to satisfy do |v|
33
+ v.keys.all? { |k| !k.match(/[A-Z]/) }
34
+ end
35
+ end
36
+ end
37
+ end
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- describe FullContact::Client do
3
+ describe FullContact::Client::Person do
4
4
  FullContact::Configuration::VALID_FORMATS.each do |format|
5
5
  context ".new(:format => '#{format}')" do
6
6
  before do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fullcontact
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-11-25 00:00:00.000000000 Z
12
+ date: 2015-04-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: maruku
16
- requirement: &70327900376880 !ruby/object:Gem::Requirement
16
+ requirement: &70122005968320 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0.6'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70327900376880
24
+ version_requirements: *70122005968320
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: nokogiri
27
- requirement: &70327900376340 !ruby/object:Gem::Requirement
27
+ requirement: &70122005966360 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '1.4'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70327900376340
35
+ version_requirements: *70122005966360
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: rake
38
- requirement: &70327900375840 !ruby/object:Gem::Requirement
38
+ requirement: &70122005965440 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0.9'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *70327900375840
46
+ version_requirements: *70122005965440
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rspec
49
- requirement: &70327900375260 !ruby/object:Gem::Requirement
49
+ requirement: &70122005964660 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ~>
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '3.1'
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *70327900375260
57
+ version_requirements: *70122005964660
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: simplecov
60
- requirement: &70327900374700 !ruby/object:Gem::Requirement
60
+ requirement: &70122005964000 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ~>
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: '0.4'
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *70327900374700
68
+ version_requirements: *70122005964000
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: webmock
71
- requirement: &70327900374160 !ruby/object:Gem::Requirement
71
+ requirement: &70122005963120 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ~>
@@ -76,10 +76,10 @@ dependencies:
76
76
  version: '1.6'
77
77
  type: :development
78
78
  prerelease: false
79
- version_requirements: *70327900374160
79
+ version_requirements: *70122005963120
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: yard
82
- requirement: &70327900373480 !ruby/object:Gem::Requirement
82
+ requirement: &70122005961720 !ruby/object:Gem::Requirement
83
83
  none: false
84
84
  requirements:
85
85
  - - ~>
@@ -87,10 +87,10 @@ dependencies:
87
87
  version: '0.7'
88
88
  type: :development
89
89
  prerelease: false
90
- version_requirements: *70327900373480
90
+ version_requirements: *70122005961720
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: hashie
93
- requirement: &70327900372780 !ruby/object:Gem::Requirement
93
+ requirement: &70122005959720 !ruby/object:Gem::Requirement
94
94
  none: false
95
95
  requirements:
96
96
  - - ! '>='
@@ -101,10 +101,10 @@ dependencies:
101
101
  version: '4.0'
102
102
  type: :runtime
103
103
  prerelease: false
104
- version_requirements: *70327900372780
104
+ version_requirements: *70122005959720
105
105
  - !ruby/object:Gem::Dependency
106
106
  name: faraday
107
- requirement: &70327900371720 !ruby/object:Gem::Requirement
107
+ requirement: &70122005955120 !ruby/object:Gem::Requirement
108
108
  none: false
109
109
  requirements:
110
110
  - - ~>
@@ -112,10 +112,10 @@ dependencies:
112
112
  version: 0.9.0
113
113
  type: :runtime
114
114
  prerelease: false
115
- version_requirements: *70327900371720
115
+ version_requirements: *70122005955120
116
116
  - !ruby/object:Gem::Dependency
117
117
  name: faraday_middleware
118
- requirement: &70327900370880 !ruby/object:Gem::Requirement
118
+ requirement: &70122005952560 !ruby/object:Gem::Requirement
119
119
  none: false
120
120
  requirements:
121
121
  - - ! '>='
@@ -123,10 +123,10 @@ dependencies:
123
123
  version: '0.9'
124
124
  type: :runtime
125
125
  prerelease: false
126
- version_requirements: *70327900370880
126
+ version_requirements: *70122005952560
127
127
  - !ruby/object:Gem::Dependency
128
128
  name: plissken
129
- requirement: &70327900370440 !ruby/object:Gem::Requirement
129
+ requirement: &70122005951000 !ruby/object:Gem::Requirement
130
130
  none: false
131
131
  requirements:
132
132
  - - ! '>='
@@ -134,7 +134,7 @@ dependencies:
134
134
  version: '0'
135
135
  type: :runtime
136
136
  prerelease: false
137
- version_requirements: *70327900370440
137
+ version_requirements: *70122005951000
138
138
  description: A Ruby wrapper for the FullContact API
139
139
  email:
140
140
  - support@fullcontact.com
@@ -145,6 +145,7 @@ files:
145
145
  - .document
146
146
  - .gitignore
147
147
  - .rspec
148
+ - .travis.yml
148
149
  - Gemfile
149
150
  - LICENSE.md
150
151
  - README.md
@@ -156,6 +157,7 @@ files:
156
157
  - lib/fullcontact.rb
157
158
  - lib/fullcontact/api.rb
158
159
  - lib/fullcontact/client.rb
160
+ - lib/fullcontact/client/company.rb
159
161
  - lib/fullcontact/client/person.rb
160
162
  - lib/fullcontact/configuration.rb
161
163
  - lib/fullcontact/connection.rb
@@ -163,10 +165,12 @@ files:
163
165
  - lib/fullcontact/request.rb
164
166
  - lib/fullcontact/version.rb
165
167
  - spec/faraday/response_spec.rb
168
+ - spec/fixtures/company.json
166
169
  - spec/fixtures/person.json
167
170
  - spec/fullcontact_spec.rb
168
171
  - spec/helper.rb
169
172
  - spec/ruby_fullcontact/api_spec.rb
173
+ - spec/ruby_fullcontact/client/company_spec.rb
170
174
  - spec/ruby_fullcontact/client/person_spec.rb
171
175
  - spec/ruby_fullcontact/client_spec.rb
172
176
  - vendor/cache/maruku-0.6.0.gem
@@ -186,7 +190,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
186
190
  version: '0'
187
191
  segments:
188
192
  - 0
189
- hash: 2664498878847206337
193
+ hash: 2469690167189723098
190
194
  required_rubygems_version: !ruby/object:Gem::Requirement
191
195
  none: false
192
196
  requirements:
@@ -201,10 +205,12 @@ specification_version: 3
201
205
  summary: Ruby wrapper for the FullContact API
202
206
  test_files:
203
207
  - spec/faraday/response_spec.rb
208
+ - spec/fixtures/company.json
204
209
  - spec/fixtures/person.json
205
210
  - spec/fullcontact_spec.rb
206
211
  - spec/helper.rb
207
212
  - spec/ruby_fullcontact/api_spec.rb
213
+ - spec/ruby_fullcontact/client/company_spec.rb
208
214
  - spec/ruby_fullcontact/client/person_spec.rb
209
215
  - spec/ruby_fullcontact/client_spec.rb
210
216
  has_rdoc: