easy_hubspot 0.1.10 → 1.0.0

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: e3bedf368c82ea90f5c0b8762a73b85e8ffb612b6cdc12fb1675aa37e988ca59
4
- data.tar.gz: 4886a66107567facb93da095cc9025b26c47d433757213adb2aa67823a7ead9f
3
+ metadata.gz: 0d4c8f01d51cfd846f1687d8f2ee3f51a0dba0ad695adfc29fe676366ad4bc02
4
+ data.tar.gz: c0958ecdbc0702449e1f6955a2167984586e92c885631fa63a53df4739c180a0
5
5
  SHA512:
6
- metadata.gz: c99f809956ec2c4432941218fafc0f52b6ecccd27f0a34c47f18f5b7dc2c1e6ab676e59ce5ffa2cfbf360570b41076e0ceb561140ccd24b847eb83ee4616950d
7
- data.tar.gz: 02e13fb5fecc8b6ff01d119482ce6489a8e7064595a9db88848e1157df4b11d052fc242c82391ca8a9a2d0f487b5f6c1f10e742110849f29cd77443ab8560862
6
+ metadata.gz: 4d5c584b66c728f4216e2e3a77f272623f5d92b1fffb0cd7aa6e2ebccd11ceee2761c255b7b370578f24cfd25a1c2e8a694a71f47cfa36cd18a745326897d7e8
7
+ data.tar.gz: b8813814c8559cc0675ca2b978ee3fdb613e17565d31f1572d4198b19bfc71a7d5d5420e423d81c1478ccaf12b65f0be9a08660b51ca9f59c5ea9a76503ea4be
data/CHANGELOG.md CHANGED
@@ -1,12 +1,9 @@
1
1
  ## [Official Release]
2
- - [0.1.7] - 2023-02-10
3
- - [0.1.8] - 2023-02-10
4
- - [0.1.9] - 2023-02-14 https://github.com/oroth8/easy_hubspot/pull/6
5
- - [0.1.10] - 2023-02-14 https://github.com/oroth8/easy_hubspot/pull/7
2
+ - [1.0.0] - 2023-02-22 https://github.com/oroth8/easy_hubspot/pull/10
6
3
 
7
4
  ## [Unreleased]
8
5
 
9
- ## [Initial releases]
6
+ ## [Initial releases (Beta)]
10
7
  - [0.1.0] - 2023-02-08
11
8
  - [0.1.1] - 2023-02-09
12
9
  - [0.1.2] - 2023-02-09
@@ -14,3 +11,7 @@
14
11
  - [0.1.4] - 2023-02-09
15
12
  - [0.1.5] - 2023-02-09
16
13
  - [0.1.6] - 2023-02-09
14
+ - [0.1.7] - 2023-02-10
15
+ - [0.1.8] - 2023-02-10
16
+ - [0.1.9] - 2023-02-14 https://github.com/oroth8/easy_hubspot/pull/6
17
+ - [0.1.10] - 2023-02-14 https://github.com/oroth8/easy_hubspot/pull/7
data/Gemfile CHANGED
@@ -12,3 +12,7 @@ group :development, :test do
12
12
  gem 'rspec', '~> 3.0'
13
13
  gem 'rubocop', '~> 1.21'
14
14
  end
15
+
16
+ group :test do
17
+ gem 'simplecov', '~> 0.17.0'
18
+ end
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  # EasyHubspot
2
- Stable: ![stable version](https://img.shields.io/badge/version-0.1.10-green)
3
- Latest: ![latest version](https://img.shields.io/badge/version-0.1.10-yellow)
2
+ Stable: ![stable version](https://img.shields.io/badge/version-1.0.0-green)
3
+ Latest: ![latest version](https://img.shields.io/badge/version-1.0.0-yellow)
4
4
  [![CI](https://github.com/oroth8/easy_hubspot/actions/workflows/ci.yml/badge.svg)](https://github.com/oroth8/easy_hubspot/actions/workflows/ci.yml)
5
5
  [![Code Climate](https://codeclimate.com/github/oroth8/easy_hubspot/badges/gpa.svg)](https://codeclimate.com/github/oroth8/easy_hubspot)
6
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/c55dfda6142769b8209c/test_coverage)](https://codeclimate.com/github/oroth8/easy_hubspot/test_coverage)
6
7
 
7
8
  This is a lightweight wrapper for the Hubspot API. It is designed to be easy to use and to provide a simple setup for the most common use cases.
8
9
 
data/easy_hubspot.gemspec CHANGED
@@ -44,5 +44,6 @@ Gem::Specification.new do |spec|
44
44
  spec.add_development_dependency 'rubocop', '~> 1.2'
45
45
  spec.add_development_dependency 'rubocop-rake', '~> 0.6.0'
46
46
  spec.add_development_dependency 'rubocop-rspec', '~> 2.18.1'
47
+ spec.add_development_dependency 'simplecov', '~> 0.17.0'
47
48
  spec.add_development_dependency 'webmock', '~> 3.14'
48
49
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EasyHubspot
4
- VERSION = '0.1.10'
4
+ VERSION = '1.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_hubspot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Owen Roth
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-02-21 00:00:00.000000000 Z
11
+ date: 2023-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -150,6 +150,20 @@ dependencies:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
152
  version: 2.18.1
153
+ - !ruby/object:Gem::Dependency
154
+ name: simplecov
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: 0.17.0
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: 0.17.0
153
167
  - !ruby/object:Gem::Dependency
154
168
  name: webmock
155
169
  requirement: !ruby/object:Gem::Requirement