easy_hubspot 0.1.0 → 0.1.2
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 +4 -4
- data/easy_hubspot.gemspec +45 -0
- data/lib/easy_hubspot/version.rb +1 -1
- metadata +4 -34
- data/.DS_Store +0 -0
- data/.rspec_status +0 -12
- data/Gemfile.lock +0 -103
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37634f153087dd95c69c5f620df3ce0a4be007bd279ad16fc32aeeaf9ea9b9d3
|
4
|
+
data.tar.gz: 2b5a1f0c7eba6c492947d940365d679998f667a9dbd34b84733f6af288c46325
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb31ab138bbdab0624bb1752f88340d2c0c64fe25f56231045239c2d40255a5c0e36b1be41d02a328aada5170b3cfd6e621b5f092ce06c37b8e7872d5b36121f
|
7
|
+
data.tar.gz: 938a8ca0967ebb75d838739cbf7f45c69b9b5959da98a5766e692eb9a74db292a542e8b208932aa4ec09432ab459f49220492ad99af9202aca780240e818aa36
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/easy_hubspot/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'easy_hubspot'
|
7
|
+
spec.version = EasyHubspot::VERSION
|
8
|
+
spec.authors = ['Owen Roth']
|
9
|
+
spec.email = ['rothowen27@gmail.com']
|
10
|
+
|
11
|
+
spec.summary = 'An easier way to integrate with the Hubspot API'
|
12
|
+
spec.description = 'This gem is designed to make it easier to integrate with the Hubspot API'
|
13
|
+
spec.homepage = "https://github.com/oroth8/easy-hubspot"
|
14
|
+
spec.license = 'MIT'
|
15
|
+
spec.required_ruby_version = '>= 2.6.0'
|
16
|
+
|
17
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
|
18
|
+
|
19
|
+
# spec.metadata["homepage_uri"] = spec.homepage
|
20
|
+
# spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
|
21
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
22
|
+
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
|
+
spec.files = Dir.chdir(__dir__) do
|
26
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
|
28
|
+
end
|
29
|
+
end
|
30
|
+
spec.bindir = 'exe'
|
31
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
32
|
+
spec.require_paths = ['lib']
|
33
|
+
|
34
|
+
# dependencies
|
35
|
+
spec.add_dependency 'httparty', '~> 0.21.0'
|
36
|
+
|
37
|
+
# development dependencies
|
38
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
39
|
+
spec.add_development_dependency 'pry', '~> 0.13.1'
|
40
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
41
|
+
spec.add_development_dependency 'rspec', '~> 3.4.0'
|
42
|
+
spec.add_development_dependency 'rubocop', '~> 1.2'
|
43
|
+
spec.add_development_dependency 'webmock', '~> 3.14'
|
44
|
+
spec.add_development_dependency 'capybara', '~> 2.7'
|
45
|
+
end
|
data/lib/easy_hubspot/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_hubspot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Owen Roth
|
@@ -10,48 +10,20 @@ bindir: exe
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2023-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: json
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 2.6.0
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 2.6.0
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: uri
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 0.12.0
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: 0.12.0
|
41
13
|
- !ruby/object:Gem::Dependency
|
42
14
|
name: httparty
|
43
15
|
requirement: !ruby/object:Gem::Requirement
|
44
16
|
requirements:
|
45
17
|
- - "~>"
|
46
18
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
19
|
+
version: 0.21.0
|
48
20
|
type: :runtime
|
49
21
|
prerelease: false
|
50
22
|
version_requirements: !ruby/object:Gem::Requirement
|
51
23
|
requirements:
|
52
24
|
- - "~>"
|
53
25
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
26
|
+
version: 0.21.0
|
55
27
|
- !ruby/object:Gem::Dependency
|
56
28
|
name: bundler
|
57
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -158,14 +130,12 @@ executables: []
|
|
158
130
|
extensions: []
|
159
131
|
extra_rdoc_files: []
|
160
132
|
files:
|
161
|
-
- ".DS_Store"
|
162
|
-
- ".rspec_status"
|
163
133
|
- CHANGELOG.md
|
164
134
|
- Gemfile
|
165
|
-
- Gemfile.lock
|
166
135
|
- LICENSE.txt
|
167
136
|
- README.md
|
168
137
|
- Rakefile
|
138
|
+
- easy_hubspot.gemspec
|
169
139
|
- lib/easy_hubspot.rb
|
170
140
|
- lib/easy_hubspot/base.rb
|
171
141
|
- lib/easy_hubspot/client.rb
|
data/.DS_Store
DELETED
Binary file
|
data/.rspec_status
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
example_id | status | run_time |
|
2
|
-
-------------------------------------------- | ------ | --------------- |
|
3
|
-
./spec/easy_hubspot/contact_spec.rb[1:1:1:1] | passed | 0.01469 seconds |
|
4
|
-
./spec/easy_hubspot/contact_spec.rb[1:1:2:1] | passed | 0.00086 seconds |
|
5
|
-
./spec/easy_hubspot/contact_spec.rb[1:2:1:1] | passed | 0.0008 seconds |
|
6
|
-
./spec/easy_hubspot/contact_spec.rb[1:3:1] | passed | 0.00059 seconds |
|
7
|
-
./spec/easy_hubspot/contact_spec.rb[1:4:1:1] | passed | 0.0008 seconds |
|
8
|
-
./spec/easy_hubspot/contact_spec.rb[1:4:2:1] | passed | 0.00078 seconds |
|
9
|
-
./spec/easy_hubspot/contact_spec.rb[1:5:1:1] | passed | 0.00034 seconds |
|
10
|
-
./spec/easy_hubspot/contact_spec.rb[1:5:2:1] | passed | 0.00038 seconds |
|
11
|
-
./spec/easy_hubspot_spec.rb[1:1:1] | passed | 0.00008 seconds |
|
12
|
-
./spec/easy_hubspot_spec.rb[1:1:2] | passed | 0.00004 seconds |
|
data/Gemfile.lock
DELETED
@@ -1,103 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
easy_hubspot (0.1.0)
|
5
|
-
httparty (~> 0.17.3)
|
6
|
-
json (~> 2.6.0)
|
7
|
-
uri (~> 0.12.0)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
addressable (2.8.1)
|
13
|
-
public_suffix (>= 2.0.2, < 6.0)
|
14
|
-
ast (2.4.2)
|
15
|
-
capybara (2.18.0)
|
16
|
-
addressable
|
17
|
-
mini_mime (>= 0.1.3)
|
18
|
-
nokogiri (>= 1.3.3)
|
19
|
-
rack (>= 1.0.0)
|
20
|
-
rack-test (>= 0.5.4)
|
21
|
-
xpath (>= 2.0, < 4.0)
|
22
|
-
coderay (1.1.3)
|
23
|
-
crack (0.4.5)
|
24
|
-
rexml
|
25
|
-
diff-lcs (1.5.0)
|
26
|
-
hashdiff (1.0.1)
|
27
|
-
httparty (0.17.3)
|
28
|
-
mime-types (~> 3.0)
|
29
|
-
multi_xml (>= 0.5.2)
|
30
|
-
json (2.6.3)
|
31
|
-
method_source (1.0.0)
|
32
|
-
mime-types (3.4.1)
|
33
|
-
mime-types-data (~> 3.2015)
|
34
|
-
mime-types-data (3.2022.0105)
|
35
|
-
mini_mime (1.1.2)
|
36
|
-
multi_xml (0.6.0)
|
37
|
-
nokogiri (1.14.1-arm64-darwin)
|
38
|
-
racc (~> 1.4)
|
39
|
-
parallel (1.22.1)
|
40
|
-
parser (3.2.0.0)
|
41
|
-
ast (~> 2.4.1)
|
42
|
-
pry (0.13.1)
|
43
|
-
coderay (~> 1.1)
|
44
|
-
method_source (~> 1.0)
|
45
|
-
public_suffix (5.0.1)
|
46
|
-
racc (1.6.2)
|
47
|
-
rack (3.0.4.1)
|
48
|
-
rack-test (2.0.2)
|
49
|
-
rack (>= 1.3)
|
50
|
-
rainbow (3.1.1)
|
51
|
-
rake (13.0.6)
|
52
|
-
regexp_parser (2.7.0)
|
53
|
-
rexml (3.2.5)
|
54
|
-
rspec (3.12.0)
|
55
|
-
rspec-core (~> 3.12.0)
|
56
|
-
rspec-expectations (~> 3.12.0)
|
57
|
-
rspec-mocks (~> 3.12.0)
|
58
|
-
rspec-core (3.12.1)
|
59
|
-
rspec-support (~> 3.12.0)
|
60
|
-
rspec-expectations (3.12.2)
|
61
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
62
|
-
rspec-support (~> 3.12.0)
|
63
|
-
rspec-mocks (3.12.3)
|
64
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
65
|
-
rspec-support (~> 3.12.0)
|
66
|
-
rspec-support (3.12.0)
|
67
|
-
rubocop (1.45.1)
|
68
|
-
json (~> 2.3)
|
69
|
-
parallel (~> 1.10)
|
70
|
-
parser (>= 3.2.0.0)
|
71
|
-
rainbow (>= 2.2.2, < 4.0)
|
72
|
-
regexp_parser (>= 1.8, < 3.0)
|
73
|
-
rexml (>= 3.2.5, < 4.0)
|
74
|
-
rubocop-ast (>= 1.24.1, < 2.0)
|
75
|
-
ruby-progressbar (~> 1.7)
|
76
|
-
unicode-display_width (>= 2.4.0, < 3.0)
|
77
|
-
rubocop-ast (1.24.1)
|
78
|
-
parser (>= 3.1.1.0)
|
79
|
-
ruby-progressbar (1.11.0)
|
80
|
-
unicode-display_width (2.4.2)
|
81
|
-
uri (0.12.0)
|
82
|
-
webmock (3.18.1)
|
83
|
-
addressable (>= 2.8.0)
|
84
|
-
crack (>= 0.3.2)
|
85
|
-
hashdiff (>= 0.4.0, < 2.0.0)
|
86
|
-
xpath (3.2.0)
|
87
|
-
nokogiri (~> 1.8)
|
88
|
-
|
89
|
-
PLATFORMS
|
90
|
-
arm64-darwin-21
|
91
|
-
|
92
|
-
DEPENDENCIES
|
93
|
-
bundler (~> 2.2)
|
94
|
-
capybara (~> 2.7)
|
95
|
-
easy_hubspot!
|
96
|
-
pry (~> 0.13.1)
|
97
|
-
rake (~> 13.0)
|
98
|
-
rspec (~> 3.0)
|
99
|
-
rubocop (~> 1.21)
|
100
|
-
webmock (~> 3.14)
|
101
|
-
|
102
|
-
BUNDLED WITH
|
103
|
-
2.4.5
|