closeio 3.9.0 → 3.10.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 +4 -4
- data/Gemfile.lock +1 -1
- data/bin/console +15 -0
- data/lib/closeio/client.rb +1 -0
- data/lib/closeio/resources/filter.rb +16 -0
- data/lib/closeio/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 154eebf09542c643734c554a00d1a22ed6a7e1107e4e3442138bbff71275d91d
|
4
|
+
data.tar.gz: c4022cf7b653a8e10f393401475b94d437c9c5372d1b80d9dc5db927bd61a493
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f747e970d9f053d9d8176e046149dba4a14d7d12202b2737d49e2db35fa0d9f59b891de0a8ec2c9c77248452189967ed3e72748e8221e51919821826a7e2e28d
|
7
|
+
data.tar.gz: a3d94fedd082830d6d7c6b2fce52f533e26e1419c0ea212dd967dd7ebd05908d30ba9ab60e908d756363f05e1773ef54d256346d353781bbac1a64a41d64f7ad
|
data/Gemfile.lock
CHANGED
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "bundler/setup"
|
5
|
+
require "closeio"
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
data/lib/closeio/client.rb
CHANGED
data/lib/closeio/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: closeio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taylor Brooks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -126,7 +126,8 @@ description: A Ruby wrapper for the CloseIO API -- a sales CRM built by salespeo
|
|
126
126
|
for salespeople.
|
127
127
|
email:
|
128
128
|
- tbrooks@gmail.com
|
129
|
-
executables:
|
129
|
+
executables:
|
130
|
+
- console
|
130
131
|
extensions: []
|
131
132
|
extra_rdoc_files: []
|
132
133
|
files:
|
@@ -137,6 +138,7 @@ files:
|
|
137
138
|
- LICENSE
|
138
139
|
- README.md
|
139
140
|
- Rakefile
|
141
|
+
- bin/console
|
140
142
|
- closeio.gemspec
|
141
143
|
- lib/closeio.rb
|
142
144
|
- lib/closeio/client.rb
|
@@ -148,6 +150,7 @@ files:
|
|
148
150
|
- lib/closeio/resources/email_account.rb
|
149
151
|
- lib/closeio/resources/email_template.rb
|
150
152
|
- lib/closeio/resources/event.rb
|
153
|
+
- lib/closeio/resources/filter.rb
|
151
154
|
- lib/closeio/resources/integration_link.rb
|
152
155
|
- lib/closeio/resources/lead.rb
|
153
156
|
- lib/closeio/resources/lead_status.rb
|