brick_ftp 1.0.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.github/action/publish_gem/Dockerfile +14 -0
  3. data/.github/action/publish_gem/entrypoint.sh +18 -0
  4. data/.github/action/write_github_release/Dockerfile +14 -0
  5. data/.github/action/write_github_release/entrypoint.sh +48 -0
  6. data/.github/main.workflow +14 -0
  7. data/CHANGELOG.md +17 -2
  8. data/README.md +2 -2
  9. data/lib/brick_ftp.rb +1 -1
  10. data/lib/brick_ftp/restful_api.rb +11 -11
  11. data/lib/brick_ftp/restful_api/add_group_member.rb +1 -1
  12. data/lib/brick_ftp/restful_api/client.rb +2 -2
  13. data/lib/brick_ftp/restful_api/complete_upload.rb +1 -1
  14. data/lib/brick_ftp/restful_api/continue_upload.rb +1 -1
  15. data/lib/brick_ftp/restful_api/copy_folder.rb +1 -1
  16. data/lib/brick_ftp/restful_api/count_folder_contents.rb +2 -2
  17. data/lib/brick_ftp/restful_api/count_users.rb +1 -1
  18. data/lib/brick_ftp/restful_api/create_api_key.rb +1 -1
  19. data/lib/brick_ftp/restful_api/create_behavior.rb +1 -1
  20. data/lib/brick_ftp/restful_api/create_bundle.rb +1 -1
  21. data/lib/brick_ftp/restful_api/create_folder.rb +1 -1
  22. data/lib/brick_ftp/restful_api/create_group.rb +1 -1
  23. data/lib/brick_ftp/restful_api/create_notification.rb +1 -1
  24. data/lib/brick_ftp/restful_api/create_permission.rb +1 -1
  25. data/lib/brick_ftp/restful_api/create_public_key.rb +1 -1
  26. data/lib/brick_ftp/restful_api/create_user.rb +1 -1
  27. data/lib/brick_ftp/restful_api/create_user_in_group.rb +1 -1
  28. data/lib/brick_ftp/restful_api/delete_api_key.rb +1 -1
  29. data/lib/brick_ftp/restful_api/delete_behavior.rb +1 -1
  30. data/lib/brick_ftp/restful_api/delete_bundle.rb +1 -1
  31. data/lib/brick_ftp/restful_api/delete_folder.rb +1 -1
  32. data/lib/brick_ftp/restful_api/delete_group.rb +1 -1
  33. data/lib/brick_ftp/restful_api/delete_notification.rb +1 -1
  34. data/lib/brick_ftp/restful_api/delete_permission.rb +1 -1
  35. data/lib/brick_ftp/restful_api/delete_public_key.rb +1 -1
  36. data/lib/brick_ftp/restful_api/delete_user.rb +1 -1
  37. data/lib/brick_ftp/restful_api/download_file.rb +1 -1
  38. data/lib/brick_ftp/restful_api/get_api_key.rb +1 -1
  39. data/lib/brick_ftp/restful_api/get_behavior.rb +1 -1
  40. data/lib/brick_ftp/restful_api/get_bundle.rb +1 -1
  41. data/lib/brick_ftp/restful_api/get_bundle_zip.rb +1 -1
  42. data/lib/brick_ftp/restful_api/get_file_in_bundle.rb +1 -1
  43. data/lib/brick_ftp/restful_api/get_folder_size.rb +1 -1
  44. data/lib/brick_ftp/restful_api/get_group.rb +1 -1
  45. data/lib/brick_ftp/restful_api/get_public_key.rb +1 -1
  46. data/lib/brick_ftp/restful_api/get_user.rb +1 -1
  47. data/lib/brick_ftp/restful_api/list_api_keys.rb +1 -1
  48. data/lib/brick_ftp/restful_api/list_behaviors.rb +1 -1
  49. data/lib/brick_ftp/restful_api/list_bundle_contents.rb +1 -1
  50. data/lib/brick_ftp/restful_api/list_bundles.rb +1 -1
  51. data/lib/brick_ftp/restful_api/list_folder_behaviors.rb +1 -1
  52. data/lib/brick_ftp/restful_api/list_folders.rb +1 -1
  53. data/lib/brick_ftp/restful_api/list_groups.rb +1 -1
  54. data/lib/brick_ftp/restful_api/list_notifications.rb +1 -1
  55. data/lib/brick_ftp/restful_api/list_permissions.rb +1 -1
  56. data/lib/brick_ftp/restful_api/list_public_keys.rb +1 -1
  57. data/lib/brick_ftp/restful_api/list_users.rb +1 -1
  58. data/lib/brick_ftp/restful_api/move_folder.rb +1 -1
  59. data/lib/brick_ftp/restful_api/remove_group_member.rb +1 -1
  60. data/lib/brick_ftp/restful_api/retrieve_file_history.rb +1 -1
  61. data/lib/brick_ftp/restful_api/retrieve_folder_history.rb +1 -1
  62. data/lib/brick_ftp/restful_api/retrieve_login_history.rb +1 -1
  63. data/lib/brick_ftp/restful_api/retrieve_site_history.rb +1 -1
  64. data/lib/brick_ftp/restful_api/retrieve_user_history.rb +1 -1
  65. data/lib/brick_ftp/restful_api/search_user.rb +1 -1
  66. data/lib/brick_ftp/restful_api/start_upload.rb +1 -1
  67. data/lib/brick_ftp/restful_api/unlock_user.rb +1 -1
  68. data/lib/brick_ftp/restful_api/update_behavior.rb +1 -1
  69. data/lib/brick_ftp/restful_api/update_group.rb +1 -1
  70. data/lib/brick_ftp/restful_api/update_group_member.rb +1 -1
  71. data/lib/brick_ftp/restful_api/update_user.rb +1 -1
  72. data/lib/brick_ftp/restful_api/upload_file.rb +4 -4
  73. data/lib/brick_ftp/types/behavior.rb +1 -1
  74. data/lib/brick_ftp/types/bundle.rb +1 -1
  75. data/lib/brick_ftp/types/bundle_content.rb +1 -1
  76. data/lib/brick_ftp/types/bundle_zip.rb +1 -1
  77. data/lib/brick_ftp/types/file.rb +1 -1
  78. data/lib/brick_ftp/types/file_in_bundle.rb +1 -1
  79. data/lib/brick_ftp/types/folder_contents_count.rb +2 -2
  80. data/lib/brick_ftp/types/group.rb +1 -1
  81. data/lib/brick_ftp/types/group_membership.rb +1 -1
  82. data/lib/brick_ftp/types/history.rb +1 -1
  83. data/lib/brick_ftp/types/notification.rb +1 -1
  84. data/lib/brick_ftp/types/permission.rb +1 -1
  85. data/lib/brick_ftp/types/upload.rb +1 -1
  86. data/lib/brick_ftp/types/user.rb +1 -1
  87. data/lib/brick_ftp/types/user_api_key.rb +1 -1
  88. data/lib/brick_ftp/types/user_public_key.rb +1 -1
  89. data/lib/brick_ftp/version.rb +1 -1
  90. metadata +8 -4
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # ## The behavior object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-behavior-object The behavior object
9
+ # @see https://developers.files.com/#the-behavior-object The behavior object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # ---------- | -------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The bundle object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-bundle-object The bundle object
9
+ # @see https://developers.files.com/#the-bundle-object The bundle object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # ---------- | -------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # An element of bundle contents
8
8
  #
9
- # @see https://developers.brickftp.com/#list-bundle-contents List bundle contents
9
+ # @see https://developers.files.com/#list-bundle-contents List bundle contents
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # --------- | ------- | -----------
@@ -4,7 +4,7 @@ module BrickFTP
4
4
  module Types
5
5
  using BrickFTP::CoreExt::Struct
6
6
 
7
- # @see https://developers.brickftp.com/#download-entire-bundle-as-zip Download entire bundle as ZIP
7
+ # @see https://developers.files.com/#download-entire-bundle-as-zip Download entire bundle as ZIP
8
8
  #
9
9
  # ATTRIBUTE | TYPE | DESCRIPTION
10
10
  # ------------ | -------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The file/folder object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-file-folder-object The file/folder object
9
+ # @see https://developers.files.com/#the-file-folder-object The file/folder object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # ------------------ | -------- | -----------
@@ -4,7 +4,7 @@ module BrickFTP
4
4
  module Types
5
5
  using BrickFTP::CoreExt::Struct
6
6
 
7
- # @see https://developers.brickftp.com/#download-one-file-in-a-bundle Download one file in a bundle
7
+ # @see https://developers.files.com/#download-one-file-in-a-bundle Download one file in a bundle
8
8
  #
9
9
  # ATTRIBUTE | TYPE | DESCRIPTION
10
10
  # ------------ | -------- | -----------
@@ -4,8 +4,8 @@ module BrickFTP
4
4
  module Types
5
5
  using BrickFTP::CoreExt::Struct
6
6
 
7
- # @see https://developers.brickftp.com/#count-folder-contents-recursively Count folder contents recursively
8
- # @see https://developers.brickftp.com/#count-folder-contents-non-recursively Count folder contents non-recursively
7
+ # @see https://developers.files.com/#count-folder-contents-recursively Count folder contents recursively
8
+ # @see https://developers.files.com/#count-folder-contents-non-recursively Count folder contents non-recursively
9
9
  #
10
10
  # ATTRIBUTE | TYPE | DESCRIPTION
11
11
  # ---------- | ------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The group object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-group-object The group object
9
+ # @see https://developers.files.com/#the-group-object The group object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # --------- | ------------------------ | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # membership object
8
8
  #
9
- # @see https://developers.brickftp.com/#add-a-member membership object
9
+ # @see https://developers.files.com/#add-a-member membership object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # --------- | ------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The notification object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-notification-object The notification object
9
+ # @see https://developers.files.com/#the-notification-object The notification object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # ------------- | -------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The notification object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-notification-object The notification object
9
+ # @see https://developers.files.com/#the-notification-object The notification object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # ------------- | ------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The permission object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-permission-object The permission object
9
+ # @see https://developers.files.com/#the-permission-object The permission object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # ---------- | ------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The upload object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-upload-object The upload object
9
+ # @see https://developers.files.com/#the-upload-object The upload object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # -------------------- | --------------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The user object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-user-object The user object
9
+ # @see https://developers.files.com/#the-user-object The user object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # ----------------------- | ------------------------ | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The API key object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-api-key-object The API key object
9
+ # @see https://developers.files.com/#the-api-key-object The API key object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # -------------- | -------- | -----------
@@ -6,7 +6,7 @@ module BrickFTP
6
6
 
7
7
  # The public key object
8
8
  #
9
- # @see https://developers.brickftp.com/#the-public-key-object The public key object
9
+ # @see https://developers.files.com/#the-public-key-object The public key object
10
10
  #
11
11
  # ATTRIBUTE | TYPE | DESCRIPTION
12
12
  # ----------- | -------- | -----------
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BrickFTP
4
- VERSION = '1.0.1'
4
+ VERSION = '2.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brick_ftp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - koshigoe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-15 00:00:00.000000000 Z
11
+ date: 2019-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -160,6 +160,11 @@ files:
160
160
  - ".circleci/config.yml"
161
161
  - ".github/ISSUE_TEMPLATE.md"
162
162
  - ".github/PULL_REQUEST_TEMPLATE.md"
163
+ - ".github/action/publish_gem/Dockerfile"
164
+ - ".github/action/publish_gem/entrypoint.sh"
165
+ - ".github/action/write_github_release/Dockerfile"
166
+ - ".github/action/write_github_release/entrypoint.sh"
167
+ - ".github/main.workflow"
163
168
  - ".gitignore"
164
169
  - ".rspec"
165
170
  - ".rubocop.yml"
@@ -288,8 +293,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
288
293
  - !ruby/object:Gem::Version
289
294
  version: '0'
290
295
  requirements: []
291
- rubyforge_project:
292
- rubygems_version: 2.7.3
296
+ rubygems_version: 3.0.3
293
297
  signing_key:
294
298
  specification_version: 4
295
299
  summary: BrickFTP's REST API client.