decorations 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0478f2a6e231684f03d50f8f4e13ccba7afa372ac5c44215764fc6ee4f93da5
4
- data.tar.gz: 39ea7341ddb532abdee65e484ee78b6dae3015a9f7998b94b90e6ae30f970c7c
3
+ metadata.gz: 160b3081245364010b7a4f6c9ad4ab641f5abca2358aff973a50188c2491500b
4
+ data.tar.gz: 1e1181ff92abecee265ba742686a0172cc7361b2e98e0db55698018b006fe5e4
5
5
  SHA512:
6
- metadata.gz: 74365496f68c9d7a225f01ecc81ff8baa308da472194b7509159ad5ab271149aaf5f78a11f492263eb8ce3167e6f867a0bfa1efd7d7f33c0e8e5f2108fbb2b92
7
- data.tar.gz: 8de82fc3a517565492a7cf4d2327239140adaeeed90581a9cf8513e6c476444825f61ab1b3d52009cabee2e748ac9b6d317273bd3df6c7f2103631466b31aa04
6
+ metadata.gz: 3027680f0443fd0274c9b93877c587d0bad6a85dec4ebe17f40ff09e56bad6005e982746293b537ef489de76feb3463b5b2a0896e74369336cc2cf6178a5384d
7
+ data.tar.gz: 237a8752aa0b1f73e0b30fab4941190ed3b69073b9630eeeac74d62e2d575016fb41e21167107a40ab7c1cb50fada4d1b448f04af062195829a59dd03cb5a6cb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- decorations (0.1.2)
4
+ decorations (0.1.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -54,8 +54,8 @@ end
54
54
 
55
55
  app = Application.new
56
56
  app.perform_task
57
- # => [2019-10-31 02:00:31 -0700] LoggingDecorator.perform_task was called
58
- # => [2019-10-31 02:00:31 -0700] LoggingDecorator.perform_task has finished
57
+ # => [2019-10-31 02:00:31 -0700] Application.perform_task was called
58
+ # => [2019-10-31 02:00:31 -0700] Application.perform_task has finished
59
59
  # => 4
60
60
  ```
61
61
 
@@ -3,5 +3,5 @@
3
3
  module Decorations
4
4
  ##
5
5
  # The version of the Ruby-decorations gem
6
- VERSION = '0.1.2'
6
+ VERSION = '0.1.3'
7
7
  end
data/lib/decorations.rb CHANGED
@@ -44,7 +44,7 @@ module Decorations
44
44
  #
45
45
  # demo = Demo.new
46
46
  # demo.demo_method
47
- # # => 'DecoratorDemo' has 'demo_method' decorated
47
+ # # => 'Demo' has 'demo_method' decorated
48
48
  # # => am I decorated?
49
49
  #
50
50
  # @api public
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decorations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Shields