files.com 1.1.126 → 1.1.128
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +17 -7
- data/_VERSION +1 -1
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22fec3cc32ce5a889e8c823f1d535d84f1d985a459ea4dfaba9ec3c6c0019e95
|
4
|
+
data.tar.gz: 5d0941f03098d8db1314c0a6cc4923d4cacd88c01674dbba6f05e8bbb90f5f9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ed0ac6a5a4a243ac36b6cab41858e4dfb3cff399a623cb2ff15801d6070e9a3204cb032d8f5e68b3d331184f9e40a915fe4792d97463bf2cef3d98c857ed8ee
|
7
|
+
data.tar.gz: 22d58a7e6c2c6d9c391df7e363afcfdb20b07530be7a09eabb35b2d7ecda1d2dec43d9ce028130462d4abb124251b5f157a2a39e312705bc8190bd0bcc637383
|
data/README.md
CHANGED
@@ -5,16 +5,27 @@ The content included here should be enough to get started, but please visit our
|
|
5
5
|
|
6
6
|
## Introduction
|
7
7
|
|
8
|
-
The Files.com Ruby
|
8
|
+
The Files.com Ruby gem provides convenient access to all aspects of Files.com from applications written in the Ruby language.
|
9
|
+
|
10
|
+
Files.com customers use our Ruby gem for directly working with files and folders as well as performing management tasks such as adding/removing users, onboarding counterparties, retrieving information about automations and more.
|
11
|
+
|
12
|
+
The Ruby gem uses the Files.com RESTful APIs via the HTTPS protocol (port 443) to securely communicate and transfer files so no firewall changes should be required in order to allow connectivity to Files.com.
|
13
|
+
|
14
|
+
### Files.com is a Ruby Shop
|
15
|
+
|
16
|
+
At Files.com, we use Ruby as a primary language all over the company. Our main server-side API is developed in Ruby, as are many of our microservices.
|
17
|
+
|
18
|
+
This Ruby gem is used directly in many internal projects at Files.com, including several of the integrations we maintain. You can expect the official Files.com Ruby gem to be highly performant and kept up to date at all times.
|
9
19
|
|
10
20
|
### Installation
|
11
21
|
|
12
|
-
To install the
|
22
|
+
To install the gem, simply use Rubygems:
|
13
23
|
|
14
24
|
```bash
|
15
25
|
gem install files.com
|
16
26
|
````
|
17
|
-
|
27
|
+
|
28
|
+
You can also use Bundler, by adding `files.com` to your app's `Gemfile`:
|
18
29
|
|
19
30
|
```ruby
|
20
31
|
gem 'files.com', '~> 1.0'
|
@@ -22,7 +33,7 @@ gem 'files.com', '~> 1.0'
|
|
22
33
|
|
23
34
|
### Requirements
|
24
35
|
|
25
|
-
|
36
|
+
The Files.com gem requires Ruby 3+.
|
26
37
|
|
27
38
|
Ruby 2.x is now considered end-of-life by the Ruby project. As a policy, Files.com does not support integrations which are considered end-of-life by their vendor.
|
28
39
|
|
@@ -30,10 +41,9 @@ Explore the [files-sdk-ruby](https://github.com/Files-com/files-sdk-ruby) code o
|
|
30
41
|
|
31
42
|
### Getting Support
|
32
43
|
|
33
|
-
The Files.com team
|
34
|
-
may face.
|
44
|
+
The Files.com Support team provides official support for all of our official Files.com integration tools.
|
35
45
|
|
36
|
-
|
46
|
+
To initiate a support conversation, you can send an [Authenticated Support Request](https://www.files.com/docs/overview/requesting-support) or simply send an E-Mail to support@files.com.
|
37
47
|
|
38
48
|
## Authentication
|
39
49
|
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.128
|
data/lib/files.com/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.128
|
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-09-
|
11
|
+
date: 2024-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|