airbrussh 0.5.0 → 0.5.1

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: e0a386319a132a613b48624a83110acc398c36b4
4
- data.tar.gz: ae0e818ca6931928500bf516bed0a8f542c6a53f
3
+ metadata.gz: e49b6c7756e1907e6a3cf024e9f90b811c3fae43
4
+ data.tar.gz: 0d721e07a866d4cb7c65e283ee172d760eadc1fa
5
5
  SHA512:
6
- metadata.gz: e372e78dd7f096b2602c998ed5178409978f8f0e6be17a5034c202c8e05a666ab9ccf61ab15a1bed01d9b2f141035c25fbe67b7e605ce5c251d9fe67b14c858c
7
- data.tar.gz: 771b4bf163c6c2b59bacc25bfc6f4d7fe9931121ba3280587e403b42ee5633518c6c4d0bcd1b3c8dc9d01a6432ade255d48d1f92d3a9e614d11c72f63a971af6
6
+ metadata.gz: fc1aa66f2be55a796d7adbb03a4d142fcdc53cb22bd2c1800880ffec261997bad86f2a4029c87918ad481e09166235369e80a31246d5de51d7f6a8e60751ac9b
7
+ data.tar.gz: 974909bb9964735a526f8c19b423d95ab83136c367e25e503e5dcee436aa68cd8c12faceb951e42cac5cab12a258693c8af3cfc07f35451ab953396363a75ce2
data/CHANGELOG.md CHANGED
@@ -8,6 +8,10 @@ Airbrussh is in a pre-1.0 state. This means that its APIs and behavior are subje
8
8
 
9
9
  * Your contribution here!
10
10
 
11
+ ## [0.5.1][] (2015-06-24)
12
+
13
+ * Fix `NameError: uninitialized constant Airbrussh::SimpleDelegator`
14
+
11
15
  ## [0.5.0][] (2015-06-24)
12
16
 
13
17
  There are no changes to the actual behavior and feature set of Airbrussh in this release.
@@ -48,7 +52,8 @@ There are, however, many behind-the-scenes changes and improvements to overall c
48
52
  * Initial release
49
53
 
50
54
  [Semver]: http://semver.org
51
- [Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v0.5.0...HEAD
55
+ [Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v0.5.1...HEAD
56
+ [0.5.1]: https://github.com/mattbrictson/airbrussh/compare/v0.5.0...v0.5.1
52
57
  [0.5.0]: https://github.com/mattbrictson/airbrussh/compare/v0.4.1...v0.5.0
53
58
  [0.4.1]: https://github.com/mattbrictson/airbrussh/compare/v0.4.0...v0.4.1
54
59
  [0.4.0]: https://github.com/mattbrictson/airbrussh/compare/v0.3.0...v0.4.0
@@ -1,5 +1,6 @@
1
1
  # encoding: UTF-8
2
2
  require "airbrussh/colors"
3
+ require "delegate"
3
4
  # rubocop:disable Style/AsciiComments
4
5
 
5
6
  module Airbrussh
@@ -1,3 +1,5 @@
1
+ require "delegate"
2
+
1
3
  module Airbrussh
2
4
  module Rake
3
5
  # Decorates an SSHKit Command to add Rake-specific contextual information:
@@ -1,3 +1,3 @@
1
1
  module Airbrussh
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airbrussh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson