sshkit 1.9.0.rc1 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: abfe247587ee2e726dbc24ea5de49ac889398eeb
4
- data.tar.gz: 68b375157b3a48703d6f7cc7ae46888a4f41e1b8
3
+ metadata.gz: 1b6bcfd27e36ebe075f80d336e753443e1367aed
4
+ data.tar.gz: c41d529fd3c79e9b89506e20b95778672385f636
5
5
  SHA512:
6
- metadata.gz: 1ebb765665fa9b9d82277a9346e1a94a3e65cf818095976d970d8a928c692eaf2214c4fc39b5781c0b9ada96d6743cda52010aa91dc4b71a05953d890b34729a
7
- data.tar.gz: d0c45809d3ad62dd5c3639c3a435c9d8b796757ff6b8cd58a802c82b15493fd1c8320ec72c551c1179e2b2fb5e7ac83acce2bbf97fb5968788a7e135331abb32
6
+ metadata.gz: 8cc8f62186668eae9e473e7b72c073d31c008af7104ee893e5a5761bdc6c3159b9ce2ecd6063a0e4cbc4173eeb986451dffa5d6b69588e04ba577bd499cad8c7
7
+ data.tar.gz: be5c5e5686439d393a498d9084219eecb706192518bfc57aaeec18ae7c0b6c4803b344ef51690c0ab7ac9987725220caf2fbcd7eeac24f4ce3c5873760fda69d
@@ -8,6 +8,12 @@ appear at the top.
8
8
  * Add your entries below here, remember to credit yourself however you want
9
9
  to be credited!
10
10
 
11
+ ## 1.9.0
12
+
13
+ **Refer to the 1.9.0.rc1 release notes for a full list of new features, fixes,
14
+ and potentially breaking changes since SSHKit 1.8.1.** There are no changes
15
+ since 1.9.0.rc1.
16
+
11
17
  ## 1.9.0.rc1
12
18
 
13
19
  ### Potentially breaking changes
data/README.md CHANGED
@@ -13,6 +13,7 @@ The typical use-case looks something like this:
13
13
 
14
14
  ```ruby
15
15
  require 'sshkit'
16
+ require 'sshkit/dsl'
16
17
  include SSHKit::DSL
17
18
 
18
19
  on %w{1.example.com 2.example.com}, in: :sequence, wait: 5 do |host|
@@ -1,3 +1,3 @@
1
1
  module SSHKit
2
- VERSION = "1.9.0.rc1"
2
+ VERSION = "1.9.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sshkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0.rc1
4
+ version: 1.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Hambley
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-02-23 00:00:00.000000000 Z
12
+ date: 2016-03-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: net-ssh
@@ -225,12 +225,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
225
225
  version: '0'
226
226
  required_rubygems_version: !ruby/object:Gem::Requirement
227
227
  requirements:
228
- - - ">"
228
+ - - ">="
229
229
  - !ruby/object:Gem::Version
230
- version: 1.3.1
230
+ version: '0'
231
231
  requirements: []
232
232
  rubyforge_project:
233
- rubygems_version: 2.5.1
233
+ rubygems_version: 2.6.1
234
234
  signing_key:
235
235
  specification_version: 4
236
236
  summary: SSHKit makes it easy to write structured, testable SSH commands in Ruby