fun_sftp 0.0.6 → 0.0.7

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 CHANGED
@@ -1,4 +1,4 @@
1
- = FunSFTP (Version 0.0.6)
1
+ = FunSFTP (Version 0.0.7)
2
2
 
3
3
  A Ruby Gem that provides a nice and easy to use wrapper for the Net::SFTP library.
4
4
 
data/fun_sftp.gemspec CHANGED
@@ -7,9 +7,9 @@ Gem::Specification.new do |s|
7
7
  s.version = FunSftp::VERSION
8
8
  s.authors = ["George Diaz"]
9
9
  s.email = ["georgediaz88@yahoo.com"]
10
- s.homepage = ""
10
+ s.homepage = "https://rubygems.org/gems/fun_sftp"
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://github.com/georgediaz88/fun_sftp}
12
+ s.description = %q{Wrapper for Ruby's 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.6"
2
+ VERSION = "0.0.7"
3
3
  end
data/lib/fun_sftp.rb CHANGED
@@ -28,7 +28,7 @@ module FunSftp
28
28
  @client.download!(target, source)
29
29
  end
30
30
 
31
- def read(path)
31
+ def read(path) #read a file
32
32
  file = @client.file.open(path)
33
33
  while !file.eof?
34
34
  puts file.gets
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: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 6
10
- version: 0.0.6
9
+ - 7
10
+ version: 0.0.7
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://github.com/georgediaz88/fun_sftp
49
+ description: Wrapper for Ruby's 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: []
@@ -64,7 +64,7 @@ files:
64
64
  - lib/fun_sftp.rb
65
65
  - lib/fun_sftp/version.rb
66
66
  has_rdoc: true
67
- homepage: ""
67
+ homepage: https://rubygems.org/gems/fun_sftp
68
68
  licenses: []
69
69
 
70
70
  post_install_message: