easy_hubspot 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/easy_hubspot.gemspec +49 -0
- data/lib/easy_hubspot/version.rb +1 -1
- metadata +6 -8
- 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: 8fd7179bffcf2ea73c1de127ae1033cfbeef160d9224ce8381a6767bae2cac42
|
4
|
+
data.tar.gz: dc13337d5dff75615f027b46672055ecc387b5628df2a394f01fb4736eff692f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 957e481127873f3187712961df8e8c69670d18da51b1d8eeed5fc34d526054ec2971110765fde2bafe720adeaa3eafaf9b115da79a4464de6bd07a6b4e9b9a3c
|
7
|
+
data.tar.gz: b25c67d185397aa13e72c6ae653d0e093fc5cd500f3f017d8d5ac781e03ec9fd0faad4c76cefc6d18cbd4d2a804db5f5412eced3827bb9f5b7fb2a11e3ac70bf
|
@@ -0,0 +1,49 @@
|
|
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
|
+
# runtime dependencies
|
35
|
+
spec.add_runtime_dependency 'json', '~> 2.6.3'
|
36
|
+
spec.add_runtime_dependency 'uri', '~> 0.12.0'
|
37
|
+
|
38
|
+
# dependencies
|
39
|
+
spec.add_dependency 'httparty', '~> 0.21.0'
|
40
|
+
|
41
|
+
# development dependencies
|
42
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
43
|
+
spec.add_development_dependency 'pry', '~> 0.13.1'
|
44
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
45
|
+
spec.add_development_dependency 'rspec', '~> 3.4.0'
|
46
|
+
spec.add_development_dependency 'rubocop', '~> 1.2'
|
47
|
+
spec.add_development_dependency 'webmock', '~> 3.14'
|
48
|
+
spec.add_development_dependency 'capybara', '~> 2.7'
|
49
|
+
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Owen Roth
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.6.
|
19
|
+
version: 2.6.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.6.
|
26
|
+
version: 2.6.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: uri
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
47
|
+
version: 0.21.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
54
|
+
version: 0.21.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: bundler
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -158,14 +158,12 @@ executables: []
|
|
158
158
|
extensions: []
|
159
159
|
extra_rdoc_files: []
|
160
160
|
files:
|
161
|
-
- ".DS_Store"
|
162
|
-
- ".rspec_status"
|
163
161
|
- CHANGELOG.md
|
164
162
|
- Gemfile
|
165
|
-
- Gemfile.lock
|
166
163
|
- LICENSE.txt
|
167
164
|
- README.md
|
168
165
|
- Rakefile
|
166
|
+
- easy_hubspot.gemspec
|
169
167
|
- lib/easy_hubspot.rb
|
170
168
|
- lib/easy_hubspot/base.rb
|
171
169
|
- 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
|