net-sftp-backports 4.0.0.backports

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.
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: net-sftp-backports
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.0.0.backports
5
+ platform: ruby
6
+ authors:
7
+ - Jamis Buck
8
+ - Delano Mandelbaum
9
+ - Miklós Fazekas
10
+ autorequire:
11
+ bindir: exe
12
+ cert_chain: []
13
+ date: 2024-01-16 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: net-ssh-backports
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 6.0.0
22
+ - - "<"
23
+ - !ruby/object:Gem::Version
24
+ version: 7.0.0
25
+ type: :runtime
26
+ prerelease: false
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 6.0.0
32
+ - - "<"
33
+ - !ruby/object:Gem::Version
34
+ version: 7.0.0
35
+ - !ruby/object:Gem::Dependency
36
+ name: minitest
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '5'
42
+ type: :development
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '5'
49
+ - !ruby/object:Gem::Dependency
50
+ name: mocha
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :development
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ description: A pure Ruby implementation of the SFTP client protocol
64
+ email:
65
+ - net-ssh@solutious.com
66
+ executables: []
67
+ extensions: []
68
+ extra_rdoc_files:
69
+ - LICENSE.txt
70
+ - README.rdoc
71
+ files:
72
+ - ".github/workflows/ci.yml"
73
+ - ".gitignore"
74
+ - CHANGES.txt
75
+ - Gemfile
76
+ - LICENSE.txt
77
+ - Manifest
78
+ - README.rdoc
79
+ - Rakefile
80
+ - lib/net/sftp.rb
81
+ - lib/net/sftp/constants.rb
82
+ - lib/net/sftp/errors.rb
83
+ - lib/net/sftp/operations/dir.rb
84
+ - lib/net/sftp/operations/download.rb
85
+ - lib/net/sftp/operations/file.rb
86
+ - lib/net/sftp/operations/file_factory.rb
87
+ - lib/net/sftp/operations/upload.rb
88
+ - lib/net/sftp/packet.rb
89
+ - lib/net/sftp/protocol.rb
90
+ - lib/net/sftp/protocol/01/attributes.rb
91
+ - lib/net/sftp/protocol/01/base.rb
92
+ - lib/net/sftp/protocol/01/name.rb
93
+ - lib/net/sftp/protocol/02/base.rb
94
+ - lib/net/sftp/protocol/03/base.rb
95
+ - lib/net/sftp/protocol/04/attributes.rb
96
+ - lib/net/sftp/protocol/04/base.rb
97
+ - lib/net/sftp/protocol/04/name.rb
98
+ - lib/net/sftp/protocol/05/base.rb
99
+ - lib/net/sftp/protocol/06/attributes.rb
100
+ - lib/net/sftp/protocol/06/base.rb
101
+ - lib/net/sftp/protocol/base.rb
102
+ - lib/net/sftp/request.rb
103
+ - lib/net/sftp/response.rb
104
+ - lib/net/sftp/session.rb
105
+ - lib/net/sftp/version.rb
106
+ - net-sftp-public_cert.pem
107
+ - net-sftp.gemspec
108
+ - setup.rb
109
+ homepage: https://github.com/net-ssh/net-sftp
110
+ licenses:
111
+ - MIT
112
+ metadata: {}
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubygems_version: 3.0.3.1
129
+ signing_key:
130
+ specification_version: 3
131
+ summary: A pure Ruby implementation of the SFTP client protocol.
132
+ test_files: []