crunchbase-ruby-library 0.1.3 → 0.1.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c707cf870a56439dbdb02b2a3776ea010d816dce
4
- data.tar.gz: c5599efb47f3d19fb3b3651b7db33e17d3425e34
3
+ metadata.gz: eaf25eb4175bb7e45d3a61165cd8db77914548d7
4
+ data.tar.gz: e7f745c6359d235bee227bfd6908fef70f008b27
5
5
  SHA512:
6
- metadata.gz: 7f71393e8a2b90723621c772d1fe51cadd48fbfd1869af347b76a5cf9006e1b28d0c97b83f583428fb3e073a9a9932478d3e5bbe2dcc6d1d0ac488f1210f8bdb
7
- data.tar.gz: 847912b8b82e84b69269d8fa4cdbf0a42df5ff03b31733f458e7d7e841126d71418da4832ddb610f1a9009edc1eb28bfa873f778c3d2c7876864fc1d630e6138
6
+ metadata.gz: 48db1d0bdb6412ddf155ed11a14da99dd271a130b813db4caf763f241faa85debd2fad9807085f22177fa64d6e86d9dd8b5ed026684e02b0c65964a5ad7262cc
7
+ data.tar.gz: adc781f54449d78b77ce24f3837d734cf9f2cf689b2e9fed0bb22b6aa6dab58f55c0815132554565ba92b3e853a82da81b864f69df226b6a76a505e57afbbdc4
@@ -7,4 +7,4 @@ module Crunchbase::Model
7
7
  RESOURCE_LIST = 'advisor_at'
8
8
 
9
9
  end
10
- end
10
+ end
@@ -1,27 +1,30 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Crunchbase::Model
4
- class FoundedCompany < Crunchbase::Model::Entity
4
+ class FoundedCompany < Crunchbase::Model::Organization
5
5
 
6
6
  RESOURCE_LIST = 'founded_companies'
7
7
 
8
- attr_reader :type, :name, :path, :created_at, :updated_at
8
+ #
9
+ # 2015-11-03 Removed
10
+ #
11
+ # attr_reader :type, :name, :path, :created_at, :updated_at
9
12
 
10
- def initialize(json)
11
- property_keys.each { |v|
12
- instance_variable_set("@#{v}", json[v] || nil)
13
- }
13
+ # def initialize(json)
14
+ # property_keys.each { |v|
15
+ # instance_variable_set("@#{v}", json[v] || nil)
16
+ # }
14
17
 
15
- %w[created_at updated_at].each { |v|
16
- instance_variable_set("@#{v}", Time.at(json[v]))
17
- }
18
- end
18
+ # %w[created_at updated_at].each { |v|
19
+ # instance_variable_set("@#{v}", Time.at(json[v]))
20
+ # }
21
+ # end
19
22
 
20
- def property_keys
21
- %w[
22
- type name path created_at updated_at
23
- ]
24
- end
23
+ # def property_keys
24
+ # %w[
25
+ # type name path created_at updated_at
26
+ # ]
27
+ # end
25
28
 
26
29
  end
27
30
  end
@@ -1,3 +1,3 @@
1
1
  module Crunchbase
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crunchbase-ruby-library
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Encore Shao