not_so_easy_hubspot 0.1.0 → 0.2.0

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
  SHA256:
3
- metadata.gz: 1916f490e8d341c09fb2cb66a9bd35b5a7506f18ea2336bbdeedd994e74c8c49
4
- data.tar.gz: e1ce94ea8673002aaa58ef4c6a024a9093609f10a07199f6061e7719543f716f
3
+ metadata.gz: 604b22ce87fad788a4f260b590424c5fc6950921188760dbb076a17eab4ef75c
4
+ data.tar.gz: bdd0c4155bf56454c980468139fcfd762efe852cf59b86f0d54a296e266bc3cc
5
5
  SHA512:
6
- metadata.gz: 2886de210e2ddc0ceb774820df27f5e7c3ca9f32f0d24d88abefc7e0be2ce26a49894cdc07ca0c08749f9a617112ae07b6de04b441412ba3db76c7b09a79b281
7
- data.tar.gz: '08cfa044c51d7b74c98ff6bbfd81de6c0b20655daf11b97e8124672967fdf8f0d816daa99084edbc18fc4bca37f3500f322b1f13ad19c292a6bf6787be7bc962'
6
+ metadata.gz: 8b446fbe6613f06c0f1592fe4cf6bd26d971f68ec928b383034337b52e1f671a77d628cb0f95d8703f4cb2d25ce64b5775ff6fe0dcf8e551dfafa5860958c86c
7
+ data.tar.gz: '09a16779005cf2c667a41bfda8363c6418718b484aef8e435b6a81327334cf5e6de946df9b3ae9da4a697bcfa3554aa227d433314535ff51832612578bce65d2'
data/CHANGELOG.md CHANGED
@@ -1,17 +1,6 @@
1
1
  ## [Official Release]
2
- - [1.0.0] - 2023-02-22 https://github.com/oroth8/not_so_easy_hubspot/pull/10
3
2
 
4
3
  ## [Unreleased]
5
4
 
6
5
  ## [Initial releases (Beta)]
7
- - [0.1.0] - 2023-02-08
8
- - [0.1.1] - 2023-02-09
9
- - [0.1.2] - 2023-02-09
10
- - [0.1.3] - 2023-02-09
11
- - [0.1.4] - 2023-02-09
12
- - [0.1.5] - 2023-02-09
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/not_so_easy_hubspot/pull/6
17
- - [0.1.10] - 2023-02-14 https://github.com/oroth8/not_so_easy_hubspot/pull/7
6
+ - [0.1.0] - 2023-07-12
data/README.md CHANGED
@@ -41,12 +41,6 @@ NotSoEasyHubspot.config do |c|
41
41
  end
42
42
  ```
43
43
 
44
- Or run the generator:
45
-
46
- ```bash
47
- rails g not_so_easy_hubspot:install
48
- ```
49
-
50
44
  ### Contacts
51
45
 
52
46
  Please refrence the [hubspot docs](https://developers.hubspot.com/docs/api/crm/contacts)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NotSoEasyHubspot
4
- VERSION = '0.1.0'
4
+ VERSION = '0.2.0'
5
5
  end
@@ -5,7 +5,6 @@ require 'not_so_easy_hubspot/client'
5
5
  require 'not_so_easy_hubspot/contact'
6
6
  require 'not_so_easy_hubspot/deal'
7
7
  require 'not_so_easy_hubspot/version'
8
- require 'not_so_easy_hubspot/generators/install_generator'
9
8
  require 'not_so_easy_hubspot/exceptions'
10
9
 
11
10
  require 'httparty'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: not_so_easy_hubspot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clément Lucas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-12 00:00:00.000000000 Z
11
+ date: 2023-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -199,8 +199,6 @@ files:
199
199
  - lib/not_so_easy_hubspot/contact.rb
200
200
  - lib/not_so_easy_hubspot/deal.rb
201
201
  - lib/not_so_easy_hubspot/exceptions.rb
202
- - lib/not_so_easy_hubspot/generators/install_generator.rb
203
- - lib/not_so_easy_hubspot/generators/templates/not_so_easy_hubspot.rb
204
202
  - lib/not_so_easy_hubspot/version.rb
205
203
  - not_so_easy_hubspot.gemspec
206
204
  - sig/not_so_easy_hubspot.rbs
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'rails/generators'
4
-
5
- module NotSoEasyHubspot
6
- module Generators
7
- # InstallGenerator
8
- class InstallGenerator < Rails::Generators::Base
9
- source_root File.expand_path('templates', __dir__)
10
- desc 'This generator creates an initializer file at config/initializers'
11
- def copy_initializer
12
- copy_file 'not_so_easy_hubspot.rb', 'config/initializers/not_so_easy_hubspot.rb'
13
- end
14
- end
15
- end
16
- end
@@ -1,6 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- NotSoEasyHubspot.config do |c|
4
- c.access_token = 'YOUR API KEY'
5
- c.base_url = 'https://api.hubapi.com/'
6
- end