files.com 1.0.89 → 1.0.94

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a39f4092ddc8dc9e488322887586a5700a1bb6cfac0d42fc2cc2122cc4da609
4
- data.tar.gz: fb75b4675831087346db464d9dc1bb5700bc014705f1b444561b62f8e9099a06
3
+ metadata.gz: 00c400b11b7e2de2612243d449839445614f13803719b687d9b6cf038d160e9c
4
+ data.tar.gz: bbc63fb390ed62627c8e2f464f40561d3e844ebe481d41a56cccea9a23ae9fab
5
5
  SHA512:
6
- metadata.gz: 6801be540d4d0d04ec031000a1371be6e7261b5cd183cc32978dc1d4a09f604505050fc2ff2075574472c034783e547f17365851c44b80ffe979e4a556c683bf
7
- data.tar.gz: 609fd373e0e499891be2cfef07e56da18da3dd12655786fe087aa0bf360c79c8bc1d42790338835bb7f9e45e9bac2d2c7b46997d3c6aeeadcba5403dc2d6e3f6
6
+ metadata.gz: 41140983d0abc3e8308cf46b16e1079fae0e2ac9022208962348fc5e0671898190f892601503855dd9f5cdb8e7c5fe40c6b37acd21897ac3d752248afb6feee4
7
+ data.tar.gz: 55cd8d1ea60eb0e7be2d82d2c72efb04b51c2b35de01d5c70a82d8806d9dfc6c1f2a344e56c584256f20c510fc350a5085e75827885d5338208bad0cc565ee3d
@@ -1,4 +1,7 @@
1
+ Daniel Cowgill <daniel.cowgill@files.com>
2
+ Dustin Zeisler <dustin.zeisler@files.com>
3
+ Jesse Harris <jesse.harris@files.com>
1
4
  Kevin Bombino <kevin.bombino@files.com>
5
+ Kevin Killingsworth <kevin.killingsworth@files.com>
2
6
  Martyn Garcia <martyn.garcia@files.com>
3
- Dustin Zeisler <dustin.zeisler@files.com>
4
7
  Rommel Santor <rommel.santor@files.com>
data/Gemfile CHANGED
@@ -6,7 +6,7 @@ group :development, :test do
6
6
  gem 'memory_profiler'
7
7
  gem 'pry'
8
8
  gem 'pry-byebug'
9
- gem 'rake', '~> 12.0.0'
10
- gem 'rspec', '~> 3.9.0'
9
+ gem 'rake'
10
+ gem 'rspec'
11
11
  gem 'rubocop'
12
12
  end
@@ -36,7 +36,7 @@ GEM
36
36
  pry (~> 0.13.0)
37
37
  public_suffix (4.0.5)
38
38
  rainbow (3.0.0)
39
- rake (12.0.0)
39
+ rake (13.0.1)
40
40
  regexp_parser (1.7.1)
41
41
  rexml (3.2.4)
42
42
  rspec (3.9.0)
@@ -74,8 +74,8 @@ DEPENDENCIES
74
74
  memory_profiler
75
75
  pry
76
76
  pry-byebug
77
- rake (~> 12.0.0)
78
- rspec (~> 3.9.0)
77
+ rake
78
+ rspec
79
79
  rubocop
80
80
 
81
81
  BUNDLED WITH
@@ -0,0 +1,24 @@
1
+ # Security Policy
2
+
3
+ Thank you for your interest in Files.com security. We recognize that your data is very personal and sensitive and we work hard to keep it protected.
4
+
5
+
6
+ ## Supported Versions
7
+
8
+ Only the latest version will be supported with security updates.
9
+
10
+
11
+ ## Reporting a Vulnerability
12
+
13
+ Here at Files.com, we celebrate security and we encourage independent security researchers to help us keep our products secure.
14
+
15
+ We offer a Security Bug Bounty Program to create an incentive and reward structure so that researchers are able to devote resources to working on Files.com.
16
+
17
+ We offer our Bug Bounty Program on HackerOne at https://hackerone.com/files
18
+
19
+ We prefer to receive reports of vulnerabilities there.
20
+
21
+ If you do not wish to use HackerOne, alternate submission instructions are available at:
22
+ https://www.files.com/legal/security-bounty/
23
+
24
+ Thank you for helping keep the Files.com community secure!
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.89
1
+ 1.0.94
@@ -7,6 +7,7 @@
7
7
  "name": "",
8
8
  "extended_description": "",
9
9
  "documentation_links": "Important Info => http://files.test/learn-more",
10
+ "icon_url": "",
10
11
  "logo_url": "",
11
12
  "logo_thumbnail_url": "",
12
13
  "sso_strategy_type": "",
@@ -21,6 +22,7 @@
21
22
  * `name` (string): Name of the App
22
23
  * `extended_description` (string): Long form description of the App
23
24
  * `documentation_links` (string): Collection of named links to documentation
25
+ * `icon_url` (string): App icon
24
26
  * `logo_url` (string): Full size logo for the App
25
27
  * `logo_thumbnail_url` (string): Logo thumbnail for the App
26
28
  * `sso_strategy_type` (string): Associated SSO Strategy type, if any
@@ -55,6 +55,7 @@ module Files
55
55
  return false if num_retries >= Files.max_network_retries
56
56
  return true if error.is_a?(Faraday::TimeoutError)
57
57
  return true if error.is_a?(Faraday::ConnectionFailed)
58
+ return true if error.is_a?(Faraday::ServerError)
58
59
 
59
60
  false
60
61
  end
@@ -24,6 +24,11 @@ module Files
24
24
  @attributes[:documentation_links]
25
25
  end
26
26
 
27
+ # string - App icon
28
+ def icon_url
29
+ @attributes[:icon_url]
30
+ end
31
+
27
32
  # string - Full size logo for the App
28
33
  def logo_url
29
34
  @attributes[:logo_url]
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.0.89
4
+ version: 1.0.94
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-19 00:00:00.000000000 Z
11
+ date: 2020-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -81,6 +81,7 @@ files:
81
81
  - LICENSE
82
82
  - README.md
83
83
  - Rakefile
84
+ - SECURITY.md
84
85
  - _VERSION
85
86
  - bin/files
86
87
  - bin/files-console
@@ -227,7 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
227
228
  - !ruby/object:Gem::Version
228
229
  version: '0'
229
230
  requirements: []
230
- rubygems_version: 3.0.6
231
+ rubygems_version: 3.1.3
231
232
  signing_key:
232
233
  specification_version: 4
233
234
  summary: Files.com Ruby client.