Skip to content

Commit c94b0da

Browse files
authored
Merge pull request #65 from barkibu/feature/hubspot_id-attribute
Feature/hubspot id attribute
2 parents 465af93 + 30b1391 commit c94b0da

File tree

5 files changed

+9
-13
lines changed

5 files changed

+9
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.15.0]
8+
- Add `husbpot_id` attribute on PetContract
9+
710
## [0.14.2]
811
- Fix Merged Pet Parent instanciation
912

Gemfile.lock

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
kb (0.14.0)
4+
kb (0.15.0)
55
activemodel (>= 4.0.2)
66
activerecord
77
activesupport (>= 3.0.0)
@@ -10,10 +10,9 @@ PATH
1010
faraday-http
1111
faraday_middleware
1212
i18n
13-
kb-fake (0.14.0)
14-
activesupport (>= 3.0.0)
13+
kb-fake (0.15.0)
1514
countries
16-
kb (= 0.14.0)
15+
kb (= 0.15.0)
1716
sinatra
1817
webmock
1918

@@ -44,7 +43,7 @@ GEM
4443
docile (1.4.0)
4544
domain_name (0.5.20190701)
4645
unf (>= 0.0.5, < 1.0.0)
47-
dry-configurable (0.14.0)
46+
dry-configurable (0.15.0)
4847
concurrent-ruby (~> 1.0)
4948
dry-core (~> 0.6)
5049
dry-core (0.7.1)

kb-fake.gemspec

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ Gem::Specification.new do |spec|
3434
spec.require_paths = ['lib']
3535
spec.required_ruby_version = '>= 2.6'
3636

37-
spec.add_development_dependency 'bundler', '~> 1.17'
38-
spec.add_development_dependency 'rake', '>= 12.3.3'
39-
spec.add_development_dependency 'rspec', '~> 3.0'
40-
spec.add_development_dependency 'rubocop'
41-
spec.add_development_dependency 'rubocop-rspec'
42-
spec.add_runtime_dependency 'activesupport', '>= 3.0.0'
4337
spec.add_runtime_dependency 'countries'
4438
spec.add_runtime_dependency 'kb', KB::VERSION
4539
spec.add_runtime_dependency 'sinatra'

lib/kb/models/pet_contract.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def self.attributes_from_response(response)
2121
conversion_utm_adgroup conversion_utm_campaign
2222
conversion_utm_content conversion_utm_medium
2323
conversion_utm_source conversion_utm_term
24-
conversion_utm_adgroup_id conversion_utm_campaign_id].freeze
24+
conversion_utm_adgroup_id conversion_utm_campaign_id hubspot_id].freeze
2525
DATE_FIELDS = %i[policy_start_date policy_expiration_date].freeze
2626
INTEGER_FIELDS = %i[price_yearly price_monthly price_discount_yearly].freeze
2727
FIELDS = [*STRING_FIELDS, *DATE_FIELDS, *INTEGER_FIELDS].freeze

lib/kb/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module KB
2-
VERSION = '0.14.2'.freeze
2+
VERSION = '0.15.0'.freeze
33
end

0 commit comments

Comments
 (0)