README.md in sourcescrub-0.0.3 vs README.md in sourcescrub-0.0.4

- old
+ new

@@ -59,12 +59,11 @@ - [Companies](https://github.com/ekohe/sourcescrub#companies) - [Searches](https://github.com/ekohe/sourcescrub#searches) ```ruby <!-- Company --> -response = client.companies('ekohe.com') -response = client.company_cards('ekohe.com', { card_id: 'sources' }) +response = client.company('ekohe.com') <!-- Get the JSON response of Company --> response.as_json ``` @@ -72,12 +71,12 @@ ### Companies #### Get the company data ```ruby -pry(main)> response = client.companies('ekohe.com') -pry(main)> #<Sourcescrub::Models::Company:0x00007fcd31bcd238 +pry(main)> response = client.company('ekohe.com') +=> #<Sourcescrub::Models::Company:0x00007f9e915161c0 @city="Xinzhuang", @companyType="Private", @country="China", @crunchbase=nil, @currentEmployeeCount=41, @@ -85,22 +84,90 @@ @currentJobOpenings=0, @description= "Ekohe, Ltd. is a cutting-edge web and mobile design and development agency. It specialize in digital strategy, innovative technology and user-centered design experiences from conceptualization to market launch.", @domain="ekohe.com", @facebook=nil, +=> #<Sourcescrub::Models::Company:0x00007f9e915161c0 + @city="Xinzhuang", + @companyType="Private", + @country="China", + @crunchbase=nil, + @currentEmployeeCount=41, + @currentEmployeeRange="11-50", + @currentJobOpenings=0, + @description= + "Ekohe, Ltd. is a cutting-edge web and mobile design and development agency. It specialize in digital strategy, innovative technology and user-centered design experiences from conceptualization to market la +unch.", + @domain="ekohe.com", + @facebook=nil, @firmTags=[], @foundingYear=2007, @id="LZ281NVD", @informalName="Ekohe", - @investors=nil, + @investors="", @linkedIn="https://www.linkedin.com/company/ekohe", @location="Xinzhuang, Shanghai Shi, China", @name="Ekohe, Ltd.", - .....> + @parentCompanyDomain=nil, + @personalTags=[], + @phoneNumber="", + @postalCode=nil, + @specialties= + ["IT & Startup Consulting", + "Ruby on Rails leaders", + "Intelligent Web & Mobile Development", + "Usable Web & Mobile design", + "UX or UI Design", + "Artificial Intelligence", + "Machine Learning", + "Data Sourcing", + "FinTech Tools"], + @state="Shanghai Shi", + @totalAmountInvested=0, + @twitter=nil, + @website="https://ekohe.com"> pry(main)> response.name => "Ekohe, Ltd." pry(main)> response.domain => "ekohe.com" +pry(main)> response.as_json +=> {:id=>"LZ281NVD", + :companyType=>"Private", + :name=>"Ekohe, Ltd.", + :informalName=>"Ekohe", + :website=>"https://ekohe.com", + :domain=>"ekohe.com", + :description=> + "Ekohe, Ltd. is a cutting-edge web and mobile design and development agency. It specialize in digital strategy, innovative technology and user-centered design experiences from conceptualization to market launch.", + :foundingYear=>2007, + :location=>"Xinzhuang, Shanghai Shi, China", + :city=>"Xinzhuang", + :state=>"Shanghai Shi", + :postalCode=>nil, + :country=>"China", + :parentCompanyDomain=>nil, + :phoneNumber=>"", + :specialties=> + ["IT & Startup Consulting", + "Ruby on Rails leaders", + "Intelligent Web & Mobile Development", + "Usable Web & Mobile design", + "UX or UI Design", + "Artificial Intelligence", + "Machine Learning", + "Data Sourcing", + "FinTech Tools"], + :facebook=>nil, + :twitter=>nil, + :crunchbase=>nil, + :linkedIn=>"https://www.linkedin.com/company/ekohe", + :totalAmountInvested=>0, + :currentEmployeeCount=>41, + :currentEmployeeRange=>"11-50", + :currentJobOpenings=>0, + :investors=>"", + :personalTags=>[], + :firmTags=>[]} ``` ### Searches ## Development