Skip to content

Commit 518f897

Browse files
jwt project ruby upgrade fix and upgrade esign gem
2 parents 18f94c3 + c2942a1 commit 518f897

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jwt_console_project/jwt_console.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
gemfile do
44
source 'https://rubygems.org'
5-
gem 'docusign_esign',' ~> 3.15.0'
5+
gem 'docusign_esign',' ~> 3.17.0'
66
end
77

88
class ESign
@@ -22,10 +22,10 @@ def load_config_data
2222
begin
2323
config_file_contents = File.read(config_file_path)
2424
rescue Errno::ENOENT
25-
$stderr.puts "missing config file"
25+
$stderr.puts "Missing config file"
2626
raise
2727
end
28-
YAML.load(config_file_contents)
28+
YAML.unsafe_load(config_file_contents)
2929
end
3030

3131
def get_consent

0 commit comments

Comments
 (0)