brick_ftp 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +7 -14
- data/CHANGELOG.md +14 -0
- data/README.md +2 -0
- data/brick_ftp.gemspec +1 -1
- data/lib/brick_ftp/restful_api/add_group_member.rb +1 -1
- data/lib/brick_ftp/restful_api/complete_upload.rb +1 -1
- data/lib/brick_ftp/restful_api/continue_upload.rb +1 -1
- data/lib/brick_ftp/restful_api/count_folder_contents.rb +1 -1
- data/lib/brick_ftp/restful_api/create_api_key.rb +1 -1
- data/lib/brick_ftp/restful_api/create_behavior.rb +1 -1
- data/lib/brick_ftp/restful_api/create_bundle.rb +1 -1
- data/lib/brick_ftp/restful_api/create_group.rb +1 -1
- data/lib/brick_ftp/restful_api/create_notification.rb +1 -1
- data/lib/brick_ftp/restful_api/create_permission.rb +1 -1
- data/lib/brick_ftp/restful_api/create_public_key.rb +1 -1
- data/lib/brick_ftp/restful_api/create_user.rb +1 -1
- data/lib/brick_ftp/restful_api/create_user_in_group.rb +1 -1
- data/lib/brick_ftp/restful_api/download_file.rb +1 -1
- data/lib/brick_ftp/restful_api/get_api_key.rb +1 -1
- data/lib/brick_ftp/restful_api/get_behavior.rb +1 -1
- data/lib/brick_ftp/restful_api/get_bundle.rb +1 -1
- data/lib/brick_ftp/restful_api/get_bundle_zip.rb +1 -1
- data/lib/brick_ftp/restful_api/get_file_in_bundle.rb +1 -1
- data/lib/brick_ftp/restful_api/get_group.rb +1 -1
- data/lib/brick_ftp/restful_api/get_public_key.rb +1 -1
- data/lib/brick_ftp/restful_api/get_site_usage.rb +1 -1
- data/lib/brick_ftp/restful_api/get_user.rb +1 -1
- data/lib/brick_ftp/restful_api/list_api_keys.rb +1 -1
- data/lib/brick_ftp/restful_api/list_behaviors.rb +1 -1
- data/lib/brick_ftp/restful_api/list_bundle_contents.rb +1 -1
- data/lib/brick_ftp/restful_api/list_bundles.rb +1 -1
- data/lib/brick_ftp/restful_api/list_folder_behaviors.rb +1 -1
- data/lib/brick_ftp/restful_api/list_folders.rb +1 -1
- data/lib/brick_ftp/restful_api/list_groups.rb +1 -1
- data/lib/brick_ftp/restful_api/list_notifications.rb +1 -1
- data/lib/brick_ftp/restful_api/list_permissions.rb +1 -1
- data/lib/brick_ftp/restful_api/list_public_keys.rb +1 -1
- data/lib/brick_ftp/restful_api/list_users.rb +1 -1
- data/lib/brick_ftp/restful_api/retrieve_history.rb +1 -1
- data/lib/brick_ftp/restful_api/search_user.rb +1 -1
- data/lib/brick_ftp/restful_api/start_upload.rb +1 -1
- data/lib/brick_ftp/restful_api/unlock_user.rb +1 -1
- data/lib/brick_ftp/restful_api/update_behavior.rb +1 -1
- data/lib/brick_ftp/restful_api/update_group.rb +1 -1
- data/lib/brick_ftp/restful_api/update_group_member.rb +1 -1
- data/lib/brick_ftp/restful_api/update_user.rb +1 -1
- data/lib/brick_ftp/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2493a4c45ab215a268d388cb4b90802b854dac43502ed0b354bcf63bbf4e1741
|
4
|
+
data.tar.gz: 634f7dde30378cf62549413e408531ed9a1a100bbc91513f7895567bea8955ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 333fa26348ec6154b7820cc2a75eb17a08de0b3d62625a028b9040401761e2545b317f34e64b8a5ed5b327ef5a918eedd32b2f23c7787a0e9f6c29f39efdb0d0
|
7
|
+
data.tar.gz: 39fec430bfab410417b928663bc9ebd226f981377b4680c2b5008c7b7c42660f3769d20563fc4b6abf5ce40869398da9ca78b2ae78f3a8c467ef5dce361be562
|
data/.circleci/config.yml
CHANGED
@@ -15,21 +15,9 @@ jobs:
|
|
15
15
|
- run:
|
16
16
|
name: YARDoc
|
17
17
|
command: yardoc --fail-on-warning lib
|
18
|
-
# see https://docs.codeclimate.com/docs/circle-ci-test-coverage-example
|
19
|
-
- run:
|
20
|
-
name: Setup Code Climate test-reporter
|
21
|
-
command: |
|
22
|
-
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
23
|
-
chmod +x ./cc-test-reporter
|
24
18
|
- run:
|
25
19
|
name: RSpec
|
26
|
-
command:
|
27
|
-
./cc-test-reporter before-build
|
28
|
-
rspec
|
29
|
-
./cc-test-reporter after-build --coverage-input-type simplecov --exit-code $?
|
30
|
-
- store_artifacts:
|
31
|
-
path: coverage
|
32
|
-
destination: coverage
|
20
|
+
command: rspec
|
33
21
|
ruby-2.3:
|
34
22
|
<<: *build
|
35
23
|
docker:
|
@@ -45,7 +33,11 @@ jobs:
|
|
45
33
|
ruby-2.6:
|
46
34
|
<<: *build
|
47
35
|
docker:
|
48
|
-
- image: circleci/ruby:2.
|
36
|
+
- image: circleci/ruby:2.6
|
37
|
+
ruby-2.7:
|
38
|
+
<<: *build
|
39
|
+
docker:
|
40
|
+
- image: circleci/ruby:2.7
|
49
41
|
|
50
42
|
workflows:
|
51
43
|
version: 2
|
@@ -55,3 +47,4 @@ workflows:
|
|
55
47
|
- ruby-2.4
|
56
48
|
- ruby-2.5
|
57
49
|
- ruby-2.6
|
50
|
+
- ruby-2.7
|
data/CHANGELOG.md
CHANGED
@@ -18,6 +18,20 @@ Files::User.new(params, api_key: 'YOUR_API_KEY')
|
|
18
18
|
I will archive this repository after found official SDK.
|
19
19
|
|
20
20
|
|
21
|
+
[v2.0.2](https://github.com/koshigoe/brick_ftp/compare/v2.0.1...v2.0.2)
|
22
|
+
----
|
23
|
+
|
24
|
+
[Full Changelog](https://github.com/koshigoe/brick_ftp/compare/v2.0.1...v2.0.2)
|
25
|
+
|
26
|
+
### Enhancements:
|
27
|
+
|
28
|
+
- [#132](https://github.com/koshigoe/brick_ftp/pull/132) Suppress warnings in Ruby 2.7
|
29
|
+
|
30
|
+
### Fixed Bugs:
|
31
|
+
|
32
|
+
### Breaking Changes:
|
33
|
+
|
34
|
+
|
21
35
|
[v2.0.1](https://github.com/koshigoe/brick_ftp/compare/v2.0.0...v2.0.1)
|
22
36
|
----
|
23
37
|
|
data/README.md
CHANGED
@@ -8,6 +8,8 @@ Files.com (BrickFTP)
|
|
8
8
|
|
9
9
|
This is a [File.com (BrickFTP)](https://files.com/)'s _unofficial_ [RESTful API](https://developers.files.com/) Client.
|
10
10
|
|
11
|
+
**I recommend official SDK: [Files-com/files-sdk-ruby](https://github.com/Files-com/files-sdk-ruby)**
|
12
|
+
|
11
13
|
|
12
14
|
Installation
|
13
15
|
----
|
data/brick_ftp.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
|
23
23
|
spec.required_ruby_version = '>= 2.3.0'
|
24
24
|
|
25
|
-
spec.add_development_dependency 'bundler', '
|
25
|
+
spec.add_development_dependency 'bundler', '>= 1.16'
|
26
26
|
spec.add_development_dependency 'pry', '~> 0.11'
|
27
27
|
spec.add_development_dependency 'rake', '~> 12.0'
|
28
28
|
spec.add_development_dependency 'redcarpet', '~> 3.4'
|
@@ -37,7 +37,7 @@ module BrickFTP
|
|
37
37
|
def call(group_id, user_id, params)
|
38
38
|
res = client.put("/api/rest/v1/groups/#{group_id}/memberships/#{user_id}.json", membership: params.to_h.compact)
|
39
39
|
|
40
|
-
BrickFTP::Types::GroupMembership.new(res.symbolize_keys)
|
40
|
+
BrickFTP::Types::GroupMembership.new(**res.symbolize_keys)
|
41
41
|
end
|
42
42
|
end
|
43
43
|
end
|
@@ -39,7 +39,7 @@ module BrickFTP
|
|
39
39
|
def call(path, params)
|
40
40
|
res = client.post("/api/rest/v1/files/#{ERB::Util.url_encode(path)}", params.to_h.compact.merge(action: 'end'))
|
41
41
|
|
42
|
-
BrickFTP::Types::File.new(res.symbolize_keys)
|
42
|
+
BrickFTP::Types::File.new(**res.symbolize_keys)
|
43
43
|
end
|
44
44
|
end
|
45
45
|
end
|
@@ -43,7 +43,7 @@ module BrickFTP
|
|
43
43
|
def call(path, params)
|
44
44
|
res = client.post("/api/rest/v1/files/#{ERB::Util.url_encode(path)}", params.to_h.compact.merge(action: 'put'))
|
45
45
|
|
46
|
-
BrickFTP::Types::Upload.new(res.symbolize_keys)
|
46
|
+
BrickFTP::Types::Upload.new(**res.symbolize_keys)
|
47
47
|
end
|
48
48
|
end
|
49
49
|
end
|
@@ -29,7 +29,7 @@ module BrickFTP
|
|
29
29
|
if recursive
|
30
30
|
BrickFTP::Types::FolderContentsCount.new(total: res['data']['count'])
|
31
31
|
else
|
32
|
-
BrickFTP::Types::FolderContentsCount.new(res['data']['count'].symbolize_keys)
|
32
|
+
BrickFTP::Types::FolderContentsCount.new(**res['data']['count'].symbolize_keys)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
@@ -35,7 +35,7 @@ module BrickFTP
|
|
35
35
|
def call(id, params)
|
36
36
|
res = client.post("/api/rest/v1/users/#{id}/public_keys.json", params.to_h.compact)
|
37
37
|
|
38
|
-
BrickFTP::Types::UserPublicKey.new(res.symbolize_keys)
|
38
|
+
BrickFTP::Types::UserPublicKey.new(**res.symbolize_keys)
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -35,7 +35,7 @@ module BrickFTP
|
|
35
35
|
endpoint = "#{endpoint}?path=#{ERB::Util.url_encode(path)}" unless path.nil?
|
36
36
|
res = client.get(endpoint)
|
37
37
|
|
38
|
-
res.map { |i| BrickFTP::Types::Permission.new(i.symbolize_keys) }
|
38
|
+
res.map { |i| BrickFTP::Types::Permission.new(**i.symbolize_keys) }
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -19,7 +19,7 @@ module BrickFTP
|
|
19
19
|
def call(id)
|
20
20
|
res = client.get("/api/rest/v1/users/#{id}/public_keys.json")
|
21
21
|
|
22
|
-
res.map { |i| BrickFTP::Types::UserPublicKey.new(i.symbolize_keys) }
|
22
|
+
res.map { |i| BrickFTP::Types::UserPublicKey.new(**i.symbolize_keys) }
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
@@ -17,7 +17,7 @@ module BrickFTP
|
|
17
17
|
endpoint = "#{path}?#{query}" unless query.empty?
|
18
18
|
res = client.get(endpoint)
|
19
19
|
|
20
|
-
res.map { |i| BrickFTP::Types::History.new(i.symbolize_keys) }
|
20
|
+
res.map { |i| BrickFTP::Types::History.new(**i.symbolize_keys) }
|
21
21
|
end
|
22
22
|
|
23
23
|
def validate_page!(page)
|
@@ -22,7 +22,7 @@ module BrickFTP
|
|
22
22
|
res = client.get("/api/rest/v1/users.json?q[username]=#{ERB::Util.url_encode(username)}")
|
23
23
|
return nil if !res || res.empty?
|
24
24
|
|
25
|
-
BrickFTP::Types::User.new(res.first.symbolize_keys)
|
25
|
+
BrickFTP::Types::User.new(**res.first.symbolize_keys)
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -33,7 +33,7 @@ module BrickFTP
|
|
33
33
|
def call(group_id, user_id, params)
|
34
34
|
res = client.patch("/api/rest/v1/groups/#{group_id}/memberships/#{user_id}.json", membership: params.to_h.compact)
|
35
35
|
|
36
|
-
BrickFTP::Types::GroupMembership.new(res.symbolize_keys)
|
36
|
+
BrickFTP::Types::GroupMembership.new(**res.symbolize_keys)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
end
|
data/lib/brick_ftp/version.rb
CHANGED
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brick_ftp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- koshigoe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.16'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.16'
|
27
27
|
- !ruby/object:Gem::Dependency
|
@@ -279,7 +279,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
279
279
|
- !ruby/object:Gem::Version
|
280
280
|
version: '0'
|
281
281
|
requirements: []
|
282
|
-
rubygems_version: 3.
|
282
|
+
rubygems_version: 3.1.2
|
283
283
|
signing_key:
|
284
284
|
specification_version: 4
|
285
285
|
summary: BrickFTP's REST API client.
|