net-netrc 0.2.1 → 0.2.2

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.
@@ -1,6 +1,6 @@
1
1
  # = net/ftp-netrc.rb - Net::FTP / Net::Netrc integration
2
2
  #
3
- # Copyright (c) 2005 Robert J. Showalter
3
+ # Copyright (c) 2005-2009 Bob Showalter
4
4
  #
5
5
  # This library is distributed under the terms of the Ruby license.
6
6
  # You may freely distribute or modify this library.
@@ -16,8 +16,6 @@
16
16
  # ftp.login(nil)
17
17
  # ftp.last_response
18
18
  # => 230 User myuser logged in.
19
- #
20
- # $Id: ftp-netrc.rb 40 2005-12-19 16:53:01Z bshow $
21
19
 
22
20
  require 'net/ftp'
23
21
  require 'net/netrc'
@@ -1,6 +1,6 @@
1
1
  # = net/netrc.rb - ftp(1) .netrc parsing
2
2
  #
3
- # Copyright (c) 2005, 2008 Robert J. Showalter
3
+ # Copyright (c) 2005-2009 Bob Showalter
4
4
  #
5
5
  # This library is distributed under the terms of the Ruby license.
6
6
  # You may freely distribute or modify this library.
@@ -78,7 +78,7 @@ module Net
78
78
 
79
79
  VERSION_MAJOR = 0
80
80
  VERSION_MINOR = 2
81
- VERSION_PATCH = 1
81
+ VERSION_PATCH = 2
82
82
  VERSION = "#{VERSION_MAJOR}.#{VERSION_MINOR}.#{VERSION_PATCH}"
83
83
 
84
84
  # detect whether running on MS Windows platform
@@ -1,5 +1,3 @@
1
- # $Id: test_netrc.rb 42 2008-03-03 13:59:16Z bshow $
2
-
3
1
  $:.unshift File.join(File.dirname(__FILE__), "../lib")
4
2
 
5
3
  require 'net/netrc'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net-netrc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Showalter
@@ -9,11 +9,12 @@ autorequire: net/netrc
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-03-03 00:00:00 -05:00
12
+ date: 2009-09-23 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: Platform
17
+ type: :runtime
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
@@ -22,7 +23,7 @@ dependencies:
22
23
  version: 0.3.0
23
24
  version:
24
25
  description:
25
- email: bshow@rubyforge.org
26
+ email: showaltb@gmail.com
26
27
  executables: []
27
28
 
28
29
  extensions: []
@@ -30,12 +31,13 @@ extensions: []
30
31
  extra_rdoc_files: []
31
32
 
32
33
  files:
33
- - lib/net
34
34
  - lib/net/ftp-netrc.rb
35
35
  - lib/net/netrc.rb
36
36
  - test/test_netrc.rb
37
37
  has_rdoc: true
38
38
  homepage: http://net-netrc.rubyforge.org
39
+ licenses: []
40
+
39
41
  post_install_message:
40
42
  rdoc_options: []
41
43
 
@@ -56,9 +58,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
56
58
  requirements: []
57
59
 
58
60
  rubyforge_project:
59
- rubygems_version: 1.0.1
61
+ rubygems_version: 1.3.5
60
62
  signing_key:
61
- specification_version: 2
63
+ specification_version: 3
62
64
  summary: Net::Netrc provides ftp(1)-style .netrc parsing
63
65
  test_files:
64
66
  - test/test_netrc.rb