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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 467acc9fbdcce17c52dbd1aefc3308d36769d371b3db5affb6de1a0b6428cef2
4
- data.tar.gz: ddc9291cc32c8a3d6c238d98dfdbf5b18d540b1193d219c4527c5be53a1eda2a
3
+ metadata.gz: 216f81e67c69376d2180d986456d6fdd043680d4429bd5f0838446c1e64ec706
4
+ data.tar.gz: 2939c3d9638842cfe9d8231f6271b08291c66a674960efd78a1d4304d7a61509
5
5
  SHA512:
6
- metadata.gz: 9542b5eaa353d895ecabb9f7424f3da2096ecd1d358b887a8f502294678384bf8ccacec711a38435d6fd7f0a4e7e79de7840ad11d5e9469a582cd268374a3c9f
7
- data.tar.gz: 697afb22b9060a6fcc3370a7bb94d17e65c760a983b380ae664890fe71f2c407139ee34c089a9357785c4c7ff8a01a4830d262f648e89b280eac107134fe28d0
6
+ metadata.gz: ca0380d7b312f9e9ce1d4b840eb3d891ebad7300337569a001618a7db9168c1a74a14f92e381e38836062cc4b094fa7a65776befaaf1bd5883454dd84ad0326e
7
+ data.tar.gz: 456f26fd3ec6e59966dc633126030800c8196a87d3c2d418b86a9601801781012d2606cb216b76692fc6a5083cf72d911ed78b54f43aeefc2300b7349ff3dc31
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2025-03-22
4
+
5
+ - Add gem install instructions.
6
+
3
7
  ## [0.1.0] - 2025-03-09
4
8
 
5
9
  - Initial release
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 UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
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 UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
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'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZohoSign
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
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.0
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