ftp_paradise 1.4.5

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.
Files changed (119) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +319 -0
  3. data/bin/create_remote_directory +9 -0
  4. data/bin/ftp_get +17 -0
  5. data/bin/ftp_gtk3 +7 -0
  6. data/bin/ftp_upload +42 -0
  7. data/bin/ftp_upload_binary +18 -0
  8. data/bin/iftp +7 -0
  9. data/bin/remote_remove +28 -0
  10. data/doc/README.gen +302 -0
  11. data/doc/todo/TODO_FOR_FTP_PARADISE_PROJECT.md +79 -0
  12. data/ftp_paradise.gemspec +122 -0
  13. data/lib/ftp_paradise.rb +5 -0
  14. data/lib/ftp_paradise/base/cliner.rb +23 -0
  15. data/lib/ftp_paradise/base/colours.rb +83 -0
  16. data/lib/ftp_paradise/base/prototype.rb +171 -0
  17. data/lib/ftp_paradise/base/reset.rb +29 -0
  18. data/lib/ftp_paradise/colours/colours.rb +141 -0
  19. data/lib/ftp_paradise/colours/use_colours.rb +76 -0
  20. data/lib/ftp_paradise/configuration/configuration.rb +49 -0
  21. data/lib/ftp_paradise/connection/README.md +1 -0
  22. data/lib/ftp_paradise/connection/connection.rb +35 -0
  23. data/lib/ftp_paradise/connection/constants.rb +46 -0
  24. data/lib/ftp_paradise/connection/data.rb +164 -0
  25. data/lib/ftp_paradise/connection/debug.rb +78 -0
  26. data/lib/ftp_paradise/connection/directory_handling.rb +271 -0
  27. data/lib/ftp_paradise/connection/do_login.rb +108 -0
  28. data/lib/ftp_paradise/connection/download.rb +86 -0
  29. data/lib/ftp_paradise/connection/file_handling.rb +174 -0
  30. data/lib/ftp_paradise/connection/ftp_object.rb +21 -0
  31. data/lib/ftp_paradise/connection/initialize.rb +88 -0
  32. data/lib/ftp_paradise/connection/initialize_a_new_net_ftp_object_with_this_url.rb +20 -0
  33. data/lib/ftp_paradise/connection/is_connected.rb +46 -0
  34. data/lib/ftp_paradise/connection/misc.rb +474 -0
  35. data/lib/ftp_paradise/connection/notify.rb +71 -0
  36. data/lib/ftp_paradise/connection/password.rb +47 -0
  37. data/lib/ftp_paradise/connection/port.rb +33 -0
  38. data/lib/ftp_paradise/connection/remote_pwd.rb +72 -0
  39. data/lib/ftp_paradise/connection/remote_url.rb +164 -0
  40. data/lib/ftp_paradise/connection/remove.rb +143 -0
  41. data/lib/ftp_paradise/connection/reset.rb +78 -0
  42. data/lib/ftp_paradise/connection/run.rb +18 -0
  43. data/lib/ftp_paradise/connection/set_array_available_hosts.rb +27 -0
  44. data/lib/ftp_paradise/connection/set_input.rb +18 -0
  45. data/lib/ftp_paradise/connection/show.rb +153 -0
  46. data/lib/ftp_paradise/connection/sync_ftp_object_onto_the_main_namespace.rb +24 -0
  47. data/lib/ftp_paradise/connection/transfer_mode.rb +163 -0
  48. data/lib/ftp_paradise/connection/upload.rb +253 -0
  49. data/lib/ftp_paradise/connection/use_default_dataset.rb +40 -0
  50. data/lib/ftp_paradise/connection/username.rb +42 -0
  51. data/lib/ftp_paradise/constants/constants.rb +19 -0
  52. data/lib/ftp_paradise/constants/misc.rb +57 -0
  53. data/lib/ftp_paradise/constants/namespace.rb +14 -0
  54. data/lib/ftp_paradise/constants/newline.rb +14 -0
  55. data/lib/ftp_paradise/constants/roebe.rb +31 -0
  56. data/lib/ftp_paradise/constants/roebe_ftp_constants.rb +233 -0
  57. data/lib/ftp_paradise/entry/entry.rb +300 -0
  58. data/lib/ftp_paradise/gui/gtk2/ftp_paradise.rb +34 -0
  59. data/lib/ftp_paradise/gui/gtk3/ftp_paradise.rb +34 -0
  60. data/lib/ftp_paradise/gui/shared_code/ftp_paradise/ftp_paradise_module.rb +709 -0
  61. data/lib/ftp_paradise/images/connection_image.png +0 -0
  62. data/lib/ftp_paradise/interactive_ftp/constants.rb +103 -0
  63. data/lib/ftp_paradise/interactive_ftp/directory_handling.rb +216 -0
  64. data/lib/ftp_paradise/interactive_ftp/help.rb +50 -0
  65. data/lib/ftp_paradise/interactive_ftp/initialize.rb +27 -0
  66. data/lib/ftp_paradise/interactive_ftp/interactive_ftp.rb +998 -0
  67. data/lib/ftp_paradise/interactive_ftp/main_loop.rb +51 -0
  68. data/lib/ftp_paradise/interactive_ftp/menu.rb +786 -0
  69. data/lib/ftp_paradise/interactive_ftp/misc.rb +208 -0
  70. data/lib/ftp_paradise/interactive_ftp/mode.rb +124 -0
  71. data/lib/ftp_paradise/interactive_ftp/readline.rb +113 -0
  72. data/lib/ftp_paradise/interactive_ftp/remove.rb +97 -0
  73. data/lib/ftp_paradise/interactive_ftp/reset.rb +90 -0
  74. data/lib/ftp_paradise/interactive_ftp/run.rb +22 -0
  75. data/lib/ftp_paradise/interactive_ftp/show.rb +184 -0
  76. data/lib/ftp_paradise/interactive_ftp/upload.rb +90 -0
  77. data/lib/ftp_paradise/interactive_ftp/user_input.rb +53 -0
  78. data/lib/ftp_paradise/project/project.rb +64 -0
  79. data/lib/ftp_paradise/requires/common_basic_requires.rb +14 -0
  80. data/lib/ftp_paradise/requires/common_external_requires.rb +9 -0
  81. data/lib/ftp_paradise/requires/require_the_constants.rb +7 -0
  82. data/lib/ftp_paradise/requires/require_the_ftp_paradise_project.rb +18 -0
  83. data/lib/ftp_paradise/requires/require_the_ftp_paradise_project_with_the_GUI_bindings.rb +10 -0
  84. data/lib/ftp_paradise/requires/require_the_toplevel_methods.rb +24 -0
  85. data/lib/ftp_paradise/toplevel_methods/can_connect_to_remote_site.rb +28 -0
  86. data/lib/ftp_paradise/toplevel_methods/clear_user_dataset.rb +28 -0
  87. data/lib/ftp_paradise/toplevel_methods/connect.rb +50 -0
  88. data/lib/ftp_paradise/toplevel_methods/data.rb +31 -0
  89. data/lib/ftp_paradise/toplevel_methods/determine_user_dataset_from_this_hash.rb +37 -0
  90. data/lib/ftp_paradise/toplevel_methods/directory_related_actions.rb +33 -0
  91. data/lib/ftp_paradise/toplevel_methods/e.rb +16 -0
  92. data/lib/ftp_paradise/toplevel_methods/file_related_actions.rb +49 -0
  93. data/lib/ftp_paradise/toplevel_methods/ftp_object.rb +270 -0
  94. data/lib/ftp_paradise/toplevel_methods/is_on_roebe.rb +20 -0
  95. data/lib/ftp_paradise/toplevel_methods/login_name.rb +49 -0
  96. data/lib/ftp_paradise/toplevel_methods/misc.rb +16 -0
  97. data/lib/ftp_paradise/toplevel_methods/opn.rb +24 -0
  98. data/lib/ftp_paradise/toplevel_methods/password.rb +50 -0
  99. data/lib/ftp_paradise/toplevel_methods/port.rb +41 -0
  100. data/lib/ftp_paradise/toplevel_methods/rds.rb +18 -0
  101. data/lib/ftp_paradise/toplevel_methods/remote_url.rb +57 -0
  102. data/lib/ftp_paradise/toplevel_methods/time.rb +45 -0
  103. data/lib/ftp_paradise/toplevel_methods/upload_and_download.rb +108 -0
  104. data/lib/ftp_paradise/version/version.rb +19 -0
  105. data/lib/ftp_paradise/www/public/css/style.css +3 -0
  106. data/lib/ftp_paradise/www/sinatra_web_interface.rb +242 -0
  107. data/lib/ftp_paradise/www/views/index.slim +3 -0
  108. data/lib/ftp_paradise/www/views/layout.slim +11 -0
  109. data/lib/ftp_paradise/www/web_interface.cgi +34 -0
  110. data/lib/ftp_paradise/yaml/automatically_connect_on_startup_of_the_interactive_ftp_shell.yml +1 -0
  111. data/lib/ftp_paradise/yaml/debug.yml +1 -0
  112. data/lib/ftp_paradise/yaml/open_in_default_editor.yml +1 -0
  113. data/lib/ftp_paradise/yaml/show_full_names.yml +1 -0
  114. data/lib/ftp_paradise/yaml/use_colours.yml +1 -0
  115. data/test/testing_ftp_paradise.rb +94 -0
  116. data/test/testing_minimal_pure_net_ftp_example_to_connect.rb +28 -0
  117. data/test/testing_the_ftp_connection_component.rb +70 -0
  118. data/test/testing_upload_a_local_directory.rb +10 -0
  119. metadata +336 -0
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ require 'ftp_paradise'
6
+ require 'colours/colours_e_autoinclude.rb'
7
+
8
+ e 'Now testing uploading a local directory.'
9
+ _ = FtpParadise::Connection.new { :use_default_dataset }
10
+ _.upload_this_directory('/Depot/jj/')
metadata ADDED
@@ -0,0 +1,336 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ftp_paradise
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.5
5
+ platform: ruby
6
+ authors:
7
+ - Robert A. Heiler
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-02-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cliner
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: colours
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: convert_global_env
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rcfiles
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: opn
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: verbose_truth
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: gtk_paradise
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: "\nThis project aims to provide some convenience bindings and addon-classes\nfor
112
+ the Ruby-FTP base module.\n\nThe basic idea for this project was to make working
113
+ with FTP-related\ncode simpler, and more convenient. This is why the project focuses\nboth
114
+ on commandline use, interactive commandline use, as well as\nGUI components (via
115
+ ruby-gtk3 primarily).\n\nPlease be aware that since as of the year 2020, this project
116
+ is in a\nlow-effort maintenance mode only, though.\n\nBug fixes may still happen,
117
+ as well as improvements made to the \ndocumentation - but by and large, I am no
118
+ longer modifying this \nproject that much anymore. My peak FTP days in regards to
119
+ this\nproject were mostly from 2010 to 2014. Since then I have found\nfewer use
120
+ cases for this project.\n\nFor more information about the ftp_paradise project,
121
+ please have a look\nat the online documentation at https://www.rubydoc.info/gems/ftp_paradise/\nor
122
+ within the doc/ subdirectory of this gem.\n\n"
123
+ email: shevegen@gmail.com
124
+ executables:
125
+ - ftp_upload_binary
126
+ - remote_remove
127
+ - ftp_gtk3
128
+ - ftp_get
129
+ - create_remote_directory
130
+ - iftp
131
+ - ftp_upload
132
+ extensions: []
133
+ extra_rdoc_files: []
134
+ files:
135
+ - README.md
136
+ - bin/create_remote_directory
137
+ - bin/ftp_get
138
+ - bin/ftp_gtk3
139
+ - bin/ftp_upload
140
+ - bin/ftp_upload_binary
141
+ - bin/iftp
142
+ - bin/remote_remove
143
+ - doc/README.gen
144
+ - doc/todo/TODO_FOR_FTP_PARADISE_PROJECT.md
145
+ - ftp_paradise.gemspec
146
+ - lib/ftp_paradise.rb
147
+ - lib/ftp_paradise/base/cliner.rb
148
+ - lib/ftp_paradise/base/colours.rb
149
+ - lib/ftp_paradise/base/prototype.rb
150
+ - lib/ftp_paradise/base/reset.rb
151
+ - lib/ftp_paradise/colours/colours.rb
152
+ - lib/ftp_paradise/colours/use_colours.rb
153
+ - lib/ftp_paradise/configuration/configuration.rb
154
+ - lib/ftp_paradise/connection/README.md
155
+ - lib/ftp_paradise/connection/connection.rb
156
+ - lib/ftp_paradise/connection/constants.rb
157
+ - lib/ftp_paradise/connection/data.rb
158
+ - lib/ftp_paradise/connection/debug.rb
159
+ - lib/ftp_paradise/connection/directory_handling.rb
160
+ - lib/ftp_paradise/connection/do_login.rb
161
+ - lib/ftp_paradise/connection/download.rb
162
+ - lib/ftp_paradise/connection/file_handling.rb
163
+ - lib/ftp_paradise/connection/ftp_object.rb
164
+ - lib/ftp_paradise/connection/initialize.rb
165
+ - lib/ftp_paradise/connection/initialize_a_new_net_ftp_object_with_this_url.rb
166
+ - lib/ftp_paradise/connection/is_connected.rb
167
+ - lib/ftp_paradise/connection/misc.rb
168
+ - lib/ftp_paradise/connection/notify.rb
169
+ - lib/ftp_paradise/connection/password.rb
170
+ - lib/ftp_paradise/connection/port.rb
171
+ - lib/ftp_paradise/connection/remote_pwd.rb
172
+ - lib/ftp_paradise/connection/remote_url.rb
173
+ - lib/ftp_paradise/connection/remove.rb
174
+ - lib/ftp_paradise/connection/reset.rb
175
+ - lib/ftp_paradise/connection/run.rb
176
+ - lib/ftp_paradise/connection/set_array_available_hosts.rb
177
+ - lib/ftp_paradise/connection/set_input.rb
178
+ - lib/ftp_paradise/connection/show.rb
179
+ - lib/ftp_paradise/connection/sync_ftp_object_onto_the_main_namespace.rb
180
+ - lib/ftp_paradise/connection/transfer_mode.rb
181
+ - lib/ftp_paradise/connection/upload.rb
182
+ - lib/ftp_paradise/connection/use_default_dataset.rb
183
+ - lib/ftp_paradise/connection/username.rb
184
+ - lib/ftp_paradise/constants/constants.rb
185
+ - lib/ftp_paradise/constants/misc.rb
186
+ - lib/ftp_paradise/constants/namespace.rb
187
+ - lib/ftp_paradise/constants/newline.rb
188
+ - lib/ftp_paradise/constants/roebe.rb
189
+ - lib/ftp_paradise/constants/roebe_ftp_constants.rb
190
+ - lib/ftp_paradise/entry/entry.rb
191
+ - lib/ftp_paradise/gui/gtk2/ftp_paradise.rb
192
+ - lib/ftp_paradise/gui/gtk3/ftp_paradise.rb
193
+ - lib/ftp_paradise/gui/shared_code/ftp_paradise/ftp_paradise_module.rb
194
+ - lib/ftp_paradise/images/connection_image.png
195
+ - lib/ftp_paradise/interactive_ftp/constants.rb
196
+ - lib/ftp_paradise/interactive_ftp/directory_handling.rb
197
+ - lib/ftp_paradise/interactive_ftp/help.rb
198
+ - lib/ftp_paradise/interactive_ftp/initialize.rb
199
+ - lib/ftp_paradise/interactive_ftp/interactive_ftp.rb
200
+ - lib/ftp_paradise/interactive_ftp/main_loop.rb
201
+ - lib/ftp_paradise/interactive_ftp/menu.rb
202
+ - lib/ftp_paradise/interactive_ftp/misc.rb
203
+ - lib/ftp_paradise/interactive_ftp/mode.rb
204
+ - lib/ftp_paradise/interactive_ftp/readline.rb
205
+ - lib/ftp_paradise/interactive_ftp/remove.rb
206
+ - lib/ftp_paradise/interactive_ftp/reset.rb
207
+ - lib/ftp_paradise/interactive_ftp/run.rb
208
+ - lib/ftp_paradise/interactive_ftp/show.rb
209
+ - lib/ftp_paradise/interactive_ftp/upload.rb
210
+ - lib/ftp_paradise/interactive_ftp/user_input.rb
211
+ - lib/ftp_paradise/project/project.rb
212
+ - lib/ftp_paradise/requires/common_basic_requires.rb
213
+ - lib/ftp_paradise/requires/common_external_requires.rb
214
+ - lib/ftp_paradise/requires/require_the_constants.rb
215
+ - lib/ftp_paradise/requires/require_the_ftp_paradise_project.rb
216
+ - lib/ftp_paradise/requires/require_the_ftp_paradise_project_with_the_GUI_bindings.rb
217
+ - lib/ftp_paradise/requires/require_the_toplevel_methods.rb
218
+ - lib/ftp_paradise/toplevel_methods/can_connect_to_remote_site.rb
219
+ - lib/ftp_paradise/toplevel_methods/clear_user_dataset.rb
220
+ - lib/ftp_paradise/toplevel_methods/connect.rb
221
+ - lib/ftp_paradise/toplevel_methods/data.rb
222
+ - lib/ftp_paradise/toplevel_methods/determine_user_dataset_from_this_hash.rb
223
+ - lib/ftp_paradise/toplevel_methods/directory_related_actions.rb
224
+ - lib/ftp_paradise/toplevel_methods/e.rb
225
+ - lib/ftp_paradise/toplevel_methods/file_related_actions.rb
226
+ - lib/ftp_paradise/toplevel_methods/ftp_object.rb
227
+ - lib/ftp_paradise/toplevel_methods/is_on_roebe.rb
228
+ - lib/ftp_paradise/toplevel_methods/login_name.rb
229
+ - lib/ftp_paradise/toplevel_methods/misc.rb
230
+ - lib/ftp_paradise/toplevel_methods/opn.rb
231
+ - lib/ftp_paradise/toplevel_methods/password.rb
232
+ - lib/ftp_paradise/toplevel_methods/port.rb
233
+ - lib/ftp_paradise/toplevel_methods/rds.rb
234
+ - lib/ftp_paradise/toplevel_methods/remote_url.rb
235
+ - lib/ftp_paradise/toplevel_methods/time.rb
236
+ - lib/ftp_paradise/toplevel_methods/upload_and_download.rb
237
+ - lib/ftp_paradise/version/version.rb
238
+ - lib/ftp_paradise/www/public/css/style.css
239
+ - lib/ftp_paradise/www/sinatra_web_interface.rb
240
+ - lib/ftp_paradise/www/views/index.slim
241
+ - lib/ftp_paradise/www/views/layout.slim
242
+ - lib/ftp_paradise/www/web_interface.cgi
243
+ - lib/ftp_paradise/yaml/automatically_connect_on_startup_of_the_interactive_ftp_shell.yml
244
+ - lib/ftp_paradise/yaml/debug.yml
245
+ - lib/ftp_paradise/yaml/open_in_default_editor.yml
246
+ - lib/ftp_paradise/yaml/show_full_names.yml
247
+ - lib/ftp_paradise/yaml/use_colours.yml
248
+ - test/testing_ftp_paradise.rb
249
+ - test/testing_minimal_pure_net_ftp_example_to_connect.rb
250
+ - test/testing_the_ftp_connection_component.rb
251
+ - test/testing_upload_a_local_directory.rb
252
+ homepage: http://rubygems.org/gems/ftp_paradise
253
+ licenses:
254
+ - GPL-2.0
255
+ metadata: {}
256
+ post_install_message: |2+
257
+
258
+ The interactive file, which can be started by typing "iftp",
259
+ requires a library called configuration.
260
+
261
+ This is NOT the one available at rubygems.org - but instead can
262
+ be downloaded here:
263
+
264
+ wget http://shevegen.bplaced.net/configuration-1.0.21.gem
265
+
266
+ Please install only the above configuration-gem variant, not the
267
+ other gem called "configuration". (You can extract the gem and
268
+ look at it before you install it of course. Its sole purpose
269
+ is to read in a bunch of .yml yaml files to provide a proper
270
+ base configuration for a project.)
271
+
272
+ If you wish to start the interactive FTP, the file can be
273
+ found at:
274
+
275
+ bin/iftp
276
+
277
+ And should on most Linux systems end up on:
278
+
279
+ /usr/bin/iftp
280
+
281
+ if the --prefix is at /usr (obviously, if you install into
282
+ your home directory, then it will be at another location;
283
+ rubygems should take care of this).
284
+
285
+ So just typing "iftp" should suffice to start the interactive FTP
286
+ component, but keep in mind that you need to download the
287
+ configuration gem listed above first.
288
+
289
+ You can disable the colour-section of the interactive FTP
290
+ by issuing:
291
+
292
+ iftp --disable-colours
293
+
294
+ You can also batch-upload some scripts through the command
295
+ called:
296
+
297
+ ftp_upload
298
+
299
+ ftp_upload --help should give you some information on how
300
+ to use it.
301
+
302
+ Consider installing the "roebe" gem for making "Configuration"
303
+ available.
304
+
305
+ Thank you and have fun!
306
+
307
+ rdoc_options: []
308
+ require_paths:
309
+ - lib
310
+ required_ruby_version: !ruby/object:Gem::Requirement
311
+ requirements:
312
+ - - ">="
313
+ - !ruby/object:Gem::Version
314
+ version: 2.7.2
315
+ required_rubygems_version: !ruby/object:Gem::Requirement
316
+ requirements:
317
+ - - ">="
318
+ - !ruby/object:Gem::Version
319
+ version: 3.2.7
320
+ requirements: []
321
+ rubygems_version: 3.2.7
322
+ signing_key:
323
+ specification_version: 4
324
+ summary: This project aims to provide some convenience bindings and addon-classes
325
+ for the Ruby-FTP base module. The basic idea for this project was to make working
326
+ with FTP-related code simpler, and more convenient. This is why the project focuses
327
+ both on commandline use, interactive commandline use, as well as GUI components
328
+ (via ruby-gtk3 primarily). Please be aware that since as of the year 2020, this
329
+ project is in a low-effort maintenance mode only, though. Bug fixes may still happen,
330
+ as well as improvements made to the documentation - but by and large, I am no longer
331
+ modifying this project that much anymore. My peak FTP days in regards to this project
332
+ were mostly from 2010 to 2014. Since then I have found fewer use cases for this
333
+ project. For more information about the ftp_paradise project, please have a look
334
+ at the online documentation at https://www.rubydoc.info/gems/ftp_paradise/ or within
335
+ the doc/ subdirectory of this gem.
336
+ test_files: []