active_call-zoho_sign 0.1.0 → 0.1.1
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/CHANGELOG.md +4 -0
- data/README.md +4 -2
- data/lib/active_call-zoho_sign.rb +1 -0
- data/lib/zoho_sign/version.rb +1 -1
- data/lib/zoho_sign.rb +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 216f81e67c69376d2180d986456d6fdd043680d4429bd5f0838446c1e64ec706
|
4
|
+
data.tar.gz: 2939c3d9638842cfe9d8231f6271b08291c66a674960efd78a1d4304d7a61509
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca0380d7b312f9e9ce1d4b840eb3d891ebad7300337569a001618a7db9168c1a74a14f92e381e38836062cc4b094fa7a65776befaaf1bd5883454dd84ad0326e
|
7
|
+
data.tar.gz: 456f26fd3ec6e59966dc633126030800c8196a87d3c2d418b86a9601801781012d2606cb216b76692fc6a5083cf72d911ed78b54f43aeefc2300b7349ff3dc31
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -9,13 +9,13 @@ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_O
|
|
9
9
|
Install the gem and add to the application's Gemfile by executing:
|
10
10
|
|
11
11
|
```bash
|
12
|
-
bundle add
|
12
|
+
bundle add active_call-zoho_sign
|
13
13
|
```
|
14
14
|
|
15
15
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
16
16
|
|
17
17
|
```bash
|
18
|
-
gem install
|
18
|
+
gem install active_call-zoho_sign
|
19
19
|
```
|
20
20
|
|
21
21
|
## Configuration
|
@@ -25,6 +25,8 @@ Configure your API credentials.
|
|
25
25
|
In a Rails application, the standard practice is to place this code in a file named `zoho_sign.rb` within the `config/initializers` directory.
|
26
26
|
|
27
27
|
```ruby
|
28
|
+
require 'active_call-zoho_sign'
|
29
|
+
|
28
30
|
ZohoSign::BaseService.configure do |config|
|
29
31
|
config.client_id = ''
|
30
32
|
config.client_secret = ''
|
@@ -0,0 +1 @@
|
|
1
|
+
require_relative 'zoho_sign'
|
data/lib/zoho_sign/version.rb
CHANGED
data/lib/zoho_sign.rb
CHANGED
@@ -8,6 +8,7 @@ require 'faraday/logging/color_formatter'
|
|
8
8
|
require 'zeitwerk'
|
9
9
|
|
10
10
|
loader = Zeitwerk::Loader.for_gem
|
11
|
+
loader.ignore("#{__dir__}/active_call-zoho_sign.rb")
|
11
12
|
loader.ignore("#{__dir__}/zoho_sign/error.rb")
|
12
13
|
loader.collapse("#{__dir__}/zoho_sign/concerns")
|
13
14
|
loader.setup
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_call-zoho_sign
|
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
|
- Kobus Joubert
|
@@ -93,6 +93,7 @@ files:
|
|
93
93
|
- LICENSE.txt
|
94
94
|
- README.md
|
95
95
|
- Rakefile
|
96
|
+
- lib/active_call-zoho_sign.rb
|
96
97
|
- lib/zoho_sign.rb
|
97
98
|
- lib/zoho_sign/access_token/facade.rb
|
98
99
|
- lib/zoho_sign/access_token/get_service.rb
|