crunchbase4 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d55577caf7591f6f9da599815b133401620f51137d303e9f1d56ca1a37554a30
4
- data.tar.gz: e0b0a754d0060dd9d3f566ce3cea3f6120c3bec2c3fd9dd490d6d6c1dfdaa04c
3
+ metadata.gz: 971654d5b778699371f2018a2875e6e463568ac74594fa7538ea3631eab06a5f
4
+ data.tar.gz: 1841c00ac046c7ee260fd19acfce5201c3ae18ee5e1950f2394ea99637827955
5
5
  SHA512:
6
- metadata.gz: 740e35d9fabbf05e930aa6a3a663143b0dee43d77ccb29b2845d79836ee2891a5b9eb4a360ba03dd2087afaea6525cafefe8beb0ed299d17d375be0eddab285f
7
- data.tar.gz: ca15245080f46ca75779e1b694842a206a1ece5107b31b9a937a5e3ae049ff0247cf74b5e390c13290b9360ab1a4678832a7f36cb3dbe07ed1cb31d67098c7c2
6
+ metadata.gz: fce7337167a7315926f1200a24019d9edf90418d9a29a877c273573b8522d836ce28ae75bd8b3c34ec633e5becbb547eac231da8d80f2a9f2cde30a5af66f496
7
+ data.tar.gz: 0440b78a9dcb051757b313cab629db2dd1a8e3cedc20a46e4cea88e881f599ec1408c7acf87320de08ed01e71cbf5054533d2d0c3de53316a995e3da1a21d42a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Change Log
2
2
 
3
+ ## [0.2.1] - 2022-10-10
4
+
5
+ ### New fields in organization and API version
6
+ - Add the following fields to the organization model
7
+ - diversity_spotlights
8
+ - num_diversity_spotlight_investments
9
+ - valuation
10
+ - valuation_date
11
+ - website_url
12
+ - Corrected API URL version number from 1.0.1 to 1.0.3
13
+
3
14
  ## [0.1.9] - 2021-10-04
4
15
 
5
16
  ### Allow to export Daily CSV bulk
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- crunchbase4 (0.2.0)
4
+ crunchbase4 (0.2.1)
5
5
  faraday
6
6
  faraday_curl
7
7
  faraday_middleware
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Crunchbase
1
+ # Crunchbase4
2
2
 
3
- Crunchbase is a ruby wrapper based on Crunchbase V4 API. it provides easy to get the API data by each endpoint. [CB v4 DOC](https://app.swaggerhub.com/apis/Crunchbase/crunchbase-enterprise_api/1.0.1)
3
+ Crunchbase4 is a ruby wrapper based on Crunchbase V4 API, it provides easy to get the API data by each endpoint. [Crunchbase Enterprise API, 2021-07-16](https://app.swaggerhub.com/apis/Crunchbase/crunchbase-enterprise_api/1.0.3)
4
4
 
5
5
  [![Gem Version](https://badge.fury.io/rb/crunchbase4.svg)](https://badge.fury.io/rb/crunchbase4)
6
6
  [![Build Status](https://travis-ci.org/ekohe/crunchbase4.svg?branch=master)](https://travis-ci.org/ekohe/crunchbase4)
@@ -23,6 +23,18 @@ Or install it yourself as:
23
23
 
24
24
  ## Getting Started
25
25
 
26
+ #### Crunchbase API Infos
27
+
28
+ - Title: Crunchbase Enterprise API
29
+ - Last Updated Date: 2021-07-16
30
+ - Servers URL: https://api.crunchbase.com/api/v4
31
+ - API Reference doc: https://data.crunchbase.com/docs
32
+ - Tags
33
+ - Autocomplete
34
+ - Deleted Entities
35
+ - Entity
36
+ - Search
37
+
26
38
  #### Configure your certificate for API
27
39
 
28
40
  ```ruby
@@ -153,7 +165,7 @@ pry(main)> Crunchbase::Utils::COMPANY_TYPES
153
165
  ```ruby
154
166
  pry(main)> response = client.organization('ekohe')
155
167
  => #<Crunchbase::Models::Organization:0x00007fbc5cfdf2f8
156
- @categories=["Apps", "Artificial Intelligence", "Big Data", "E-Commerce", "Enterprise Software", "FinTech", "iOS", "Retail", "UX Design"],
168
+ @categories=["Apps", "Artificial Intelligence", "Big Data", "Blockchain", "Cryptocurrency", "Enterprise Software", "iOS", "Machine Learning", "Retail", "UX Design"],
157
169
  @category_groups=["Apps", "Artificial Intelligence", "Commerce and Shopping", "Data and Analytics", "Design", "Financial Services", "Mobile", "Platforms", "Science and Engineering", "Software"],
158
170
  @company_type="for_profit",
159
171
  @contact_email="info@ekohe.com",
@@ -201,7 +213,7 @@ pry(main)> response = client.funding_round('371c20af-8aa9-4bcb-a8da-0694d138f247
201
213
  @funded_organization_categories=nil,
202
214
  @funded_organization_description="Facebook is an online social networking service that enables its users to connect with friends and family.",
203
215
  @funded_organization_funding_stage="ipo",
204
- @funded_organization_funding_total=2335700000,
216
+ @funded_organization_funding_total=16122817488,
205
217
  @funded_organization_identifier="Facebook",
206
218
  @funded_organization_location=["Menlo Park", "California", "United States", "North America"],
207
219
  @funded_organization_revenue_range="r_10000000",
data/crunchbase4.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Encore Shao']
9
9
  spec.email = ['encore@ekohe.com']
10
10
 
11
- spec.summary = 'Crunchbase is a ruby wrapper base on Crunchbase V4 API'
12
- spec.description = 'Crunchbase is a ruby wrapper base on Crunchbase V4 API. it provides easy to get the API data by each endpoint. '
11
+ spec.summary = 'Crunchbase4 is a ruby wrapper base on Crunchbase V4 API'
12
+ spec.description = 'Crunchbase4 is a ruby wrapper base on Crunchbase V4 API, it provides easy to get the API data by each endpoint.'
13
13
  spec.homepage = 'https://github.com/ekohe/crunchbase4'
14
14
  spec.license = 'MIT'
15
15
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
@@ -4,6 +4,7 @@ module Crunchbase
4
4
  # Get the Organization data from API
5
5
  module Models
6
6
  # Build Organization API
7
+ # rubocop:disable Metrics/ClassLength, Metrics/MethodLength
7
8
  class Organization < Entity
8
9
  RESOURCE_LIST = 'organizations'
9
10
 
@@ -28,6 +29,11 @@ module Crunchbase
28
29
 
29
30
  def field_ids
30
31
  %w[
32
+ diversity_spotlights
33
+ num_diversity_spotlight_investments
34
+ valuation
35
+ valuation_date
36
+ website_url
31
37
  acquirer_identifier
32
38
  categories
33
39
  category_groups
@@ -47,6 +53,7 @@ module Crunchbase
47
53
  funding_stage
48
54
  funding_total
49
55
  funds_total
56
+ hub_tags
50
57
  image_id
51
58
  image_url
52
59
  investor_identifiers
@@ -58,6 +65,8 @@ module Crunchbase
58
65
  last_funding_at
59
66
  last_funding_total
60
67
  last_funding_type
68
+ last_key_employee_change_date
69
+ last_layoff_date
61
70
  layout_id
62
71
  listed_stock_symbol
63
72
  location_group_identifiers
@@ -145,5 +154,6 @@ module Crunchbase
145
154
  %w[employees_range]
146
155
  end
147
156
  end
157
+ # rubocop:enable Metrics/ClassLength, Metrics/MethodLength
148
158
  end
149
159
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Crunchbase
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crunchbase4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Encore Shao
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-10 00:00:00.000000000 Z
11
+ date: 2022-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -122,8 +122,8 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
- description: 'Crunchbase is a ruby wrapper base on Crunchbase V4 API. it provides
126
- easy to get the API data by each endpoint. '
125
+ description: Crunchbase4 is a ruby wrapper base on Crunchbase V4 API, it provides
126
+ easy to get the API data by each endpoint.
127
127
  email:
128
128
  - encore@ekohe.com
129
129
  executables: []
@@ -215,5 +215,5 @@ requirements: []
215
215
  rubygems_version: 3.0.3
216
216
  signing_key:
217
217
  specification_version: 4
218
- summary: Crunchbase is a ruby wrapper base on Crunchbase V4 API
218
+ summary: Crunchbase4 is a ruby wrapper base on Crunchbase V4 API
219
219
  test_files: []