summaryrefslogtreecommitdiff
path: root/ISSUE_TEMPLATE.md
blob: 429d2a18b557da5430955a03c232341a32665c30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
### Expected behavior

Tell us what should happen

### Actual behavior

Tell us what happens instead.

### System configuration

- net-ssh version
- Ruby version

### Example App

Please provide an example script that reproduces the problem. This will save maintainers time so they can spend it fixing your issues instead of trying to build a reproduction case from sparse instructions.

You can use this as stating point:

```ruby
gem 'net-ssh', '= 4.0.0.beta3'
require 'net/ssh'
puts Net::SSH::Version::CURRENT

@host = 'localhost'
@user = ENV['USER']
Net::SSH.start(@host, @user) do |ssh|
  puts ssh.exec!('echo "hello"')
end
```