Open
Conversation
Like explained in ReadMe
add missing `end` in example
Use `File#exist?` to silence deprecation warnings.
Fix Ruby 2.4 compatibility.
Update docs in download.rb
Fix Session inline documentation with password
Ruby's IO class defines the #gets method as having an optional limit argument. This can either be passed in as an integer for the first argument or passed in addition to the delimiter. This makes argument handling a little awkward unfortunately.
The previous commit added a limit argument to #gets as defined by Ruby's IO class. This does the same for readline since it also accepts a limit argument in the IO class. Fortunately we simply forward these params to gets.
Add a sentence documenting the new limit argument. Took this sentence from Ruby's IO documentation. https://ruby-doc.org/core-2.5.1/IO.html#method-i-gets
A separator string could be provided that was not found in the stream. In that scenario, we were ignoring the limit argument. This change respects the limit argument even when the separator isn't found.
Ruby's IO documentation says that if nil is passed as the separator argument, the IO object should read to the end of the file or until the limit argument is reached.
This is another method an IO-like object should provide. It resets the beginning state of the file.
Update to net-ssh 5.0.2 improves performance; fix tests
Add #size and #rewind to Net::SFTP::Operations::File
Allow to set protocol version via Net::SFTP.start
correct typo "raeddir"
Ignore `Gemfile.lock` in git
Update cert URL and filename on README
Fix multibyte string write
Fix documentation link
Test with modern rubies incl. jruby and truffleruby. Jruby doesn't seem to pass so far.
... which fixes OpenSSL 3 compat. Closes net-ssh#136
Allow net-ssh v7
GitHub actions
fix it's typos
Official 4.0.0 release
# Conflicts: # lib/net/sftp.rb # net-sftp.gemspec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.