fun_sftp 0.0.2 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- = FunSFTP (Version 0.0.2)
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 for the directory_name given
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: conn.rmdir!
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://georgediaz88@github.com/georgediaz88/fun_sftp.git}
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
 
@@ -1,3 +1,3 @@
1
1
  module FunSftp
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.4"
3
3
  end
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: 27
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
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://georgediaz88@github.com/georgediaz88/fun_sftp.git
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: []