fun_sftp 0.0.2 → 0.0.4
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.
- data/README.rdoc +5 -3
- data/fun_sftp.gemspec +1 -1
- data/lib/fun_sftp/version.rb +1 -1
- metadata +4 -4
data/README.rdoc
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
= FunSFTP (Version 0.0.
|
1
|
+
= FunSFTP (Version 0.0.4)
|
2
2
|
|
3
3
|
Ruby Gem that provides a nice and easy to work with wrapper for the Net::SFTP library.
|
4
4
|
|
@@ -51,7 +51,7 @@ When investigating items in the remote host, these can be handy:
|
|
51
51
|
["test1", "test2", "some_directory_here"]
|
52
52
|
|
53
53
|
Command: conn.glob("directory_name", "**/*.rb")
|
54
|
-
#=> Pattern matches the second argument
|
54
|
+
#=> Pattern matches the second argument in the directory_name given
|
55
55
|
#=> So, you can get things like...
|
56
56
|
some_directory_here/hello_world.rb
|
57
57
|
some_directory_here/sftp_is_fun.rb
|
@@ -65,7 +65,9 @@ So far, you can make/remove directories, remove/rename files
|
|
65
65
|
Command: conn.mkdir!("some_directory/a_new_directory_name_here")
|
66
66
|
#=> makes a_new_directory_name_here under some_directory which exists
|
67
67
|
|
68
|
-
Removing a directory is the same as above except you would now specify:
|
68
|
+
Removing a directory is the same as above except you would now specify:
|
69
|
+
|
70
|
+
conn.rmdir!
|
69
71
|
|
70
72
|
Files can be renamed and removed off the remote:
|
71
73
|
|
data/fun_sftp.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.email = ["georgediaz88@yahoo.com"]
|
10
10
|
s.homepage = ""
|
11
11
|
s.summary = %q{FunSFTP for secure file transfers}
|
12
|
-
s.description = %q{Wrapper for Rubys Net::SFTP library which makes SFTP easy! See Documentation at https://
|
12
|
+
s.description = %q{Wrapper for Rubys Net::SFTP library which makes SFTP easy! See Documentation at https://github.com/georgediaz88/fun_sftp}
|
13
13
|
|
14
14
|
s.rubyforge_project = "fun_sftp"
|
15
15
|
|
data/lib/fun_sftp/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fun_sftp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 4
|
10
|
+
version: 0.0.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- George Diaz
|
@@ -46,7 +46,7 @@ dependencies:
|
|
46
46
|
version: "0"
|
47
47
|
type: :development
|
48
48
|
version_requirements: *id002
|
49
|
-
description: Wrapper for Rubys Net::SFTP library which makes SFTP easy! See Documentation at https://
|
49
|
+
description: Wrapper for Rubys Net::SFTP library which makes SFTP easy! See Documentation at https://github.com/georgediaz88/fun_sftp
|
50
50
|
email:
|
51
51
|
- georgediaz88@yahoo.com
|
52
52
|
executables: []
|