files.com 1.1.114 → 1.1.115

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: 578b92a8aeefb7ed5116b22ecd06c0b2248f37919f6ab13f64afcd495f098cd3
4
- data.tar.gz: c157f057f96ca7af7543f302e0884c9624908555966d5b86523f2e846972bb47
3
+ metadata.gz: 30d08c44cf76dc40af6da91c786166ace44b7cdc3f90da618ceea18d51ef8856
4
+ data.tar.gz: c3157dc9f0c8a813ff64cfd03f6a709c0ab4b29fa4384fb9c9c2749b2c8b4b51
5
5
  SHA512:
6
- metadata.gz: 111c1245c11016fce37a630340e61ebc4ec768a4cb9a7d820cbf77c2a556647927c37c874f91b6bfd7ba480b9d12e3ddddc66fa35a09f8bee4fcceb861fc9187
7
- data.tar.gz: af683024ddafd3234f97bdf067845f26e4dd4839310db4a541c6c374d85b5696adf8e6864b5bbd7fc06c8e879ef1e72673cc686832aa0615b3b9f96bcb915bb1
6
+ metadata.gz: 23ec622064a33418d8ab643b1875e1e063e0be536f75131c3176ea6506b3ceabb36fc5641bc02c136f0f350aa5e985f6f7d301ea05a36cb0bbd769c826eb1e43
7
+ data.tar.gz: 341ec7627d24938c3863e3ee6f9dffd59182edac945710aba1fcf228b1d7fc73e9d1f1374fe738f8bc5450a309e79d0d56c872cb00461fbafff1e3e5b0e8812c
data/README.md CHANGED
@@ -243,9 +243,9 @@ rescue for general `Files::Error` as a catch-all.
243
243
  begin
244
244
  session = Files::Session.create(username: "USERNAME", password: "BADPASSWORD")
245
245
  rescue Files::NotAuthenticatedError => e
246
- puts "An Authentication Error has occured (#{e.class.to_s}): " + e.message
246
+ puts "An Authentication Error has occurred (#{e.class.to_s}): " + e.message
247
247
  rescue Files::Error => e
248
- puts "An Unknown Error has occured (#{e.class.to_s}): " + e.message
248
+ puts "An Unknown Error has occurred (#{e.class.to_s}): " + e.message
249
249
  end
250
250
  ```
251
251
 
@@ -253,7 +253,7 @@ end
253
253
 
254
254
  #### SDK Errors
255
255
 
256
- SDK errors are general errors that occure within the SDK code. Each exception class inherits from a standard `Error` base class.
256
+ SDK errors are general errors that occur within the SDK code. Each exception class inherits from a standard `Error` base class.
257
257
 
258
258
  ```ruby title="Example SDK Exception Class Inheritance Structure"
259
259
  Files::APIConnectionError -> Files::Error -> StandardError
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.114
1
+ 1.1.115
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.114"
4
+ VERSION = "1.1.115"
5
5
  end
@@ -14,7 +14,7 @@
14
14
  [ "a/b/c.txt\r", "a/b/c.txt" ],
15
15
  [ " space_at_beginning", " space_at_beginning"],
16
16
  [ "space_at_end ", "space_at_end"],
17
- [ "tab\tseperated", "tab\tseperated"],
17
+ [ "tab\tseparated", "tab\tseparated"],
18
18
  [ "<title>hello</hello>", "<title>hello</hello>"],
19
19
  [ "안녕하세요", "안녕하세요" ],
20
20
  [ "こんにちは", "こんにちは" ],
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.114
4
+ version: 1.1.115
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-15 00:00:00.000000000 Z
11
+ date: 2024-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable