Skip to content

Commit

Permalink
Added issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
mfazekas committed Nov 17, 2016
1 parent f4b88d7 commit 82332e3
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions ISSUE_TEMPLATE.md
@@ -0,0 +1,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
```

0 comments on commit 82332e3

Please sign in to comment.