putter 0.2.0 → 0.2.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: 5a525258dc08f4793f38bc5d023fc01efda81ba8
4
- data.tar.gz: 61e872b2ec792cb1557608f3f329b92123b8fe03
3
+ metadata.gz: c10cb5a65a0e9af1fecc76056ebf982133198a53
4
+ data.tar.gz: 6f56fba3228d58b36946c070dadf48710ec36cd2
5
5
  SHA512:
6
- metadata.gz: 04d82a6530661ed0cbada01906a726195e6e910941b8ae2770c1eb019069f4c1ddb4faa0d80d29052e5db1776fa95720ccb69898e2c8fcc4dd989824d3d7b1ac
7
- data.tar.gz: 56152fdd9dd89ae120d75c74d7ceea04e6aef5cbbd46a5b149c85a858bd8e09be0a7d0f566c656c3fcaa3908c5429db9f95ba3577ee4de645d3a92c22f1513b5
6
+ metadata.gz: 13583a279674f58f63f03d084e3bb9b9d974b359f30ede539c7ae1d564999d1832b9a7317d5abff091dfb5e5115af81e0f6552c5cc2cbd2cb58458a82c61e284
7
+ data.tar.gz: 3cce9ec1a107a16c235c642af2a01b8d0c5da3f7972fd702d61d48388aa3e1e29952c10f54cab08003a3d1a26397aca8f9162993c870848e78d8c58d30a035d1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # CHANGELOG
2
2
 
3
+ ### 0.2.1 - 2016-06-08
4
+ - Add missing Gemfile.lock to bundled gem.
5
+
3
6
  ### 0.2.0 - 2016-06-04
4
7
  - Convert print strategies to a single print strategy for both methods calls and results and adjust configuration accordingly.
5
8
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- putter (0.1.1)
4
+ putter (0.2.1)
5
5
  colorize (~> 0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -48,7 +48,7 @@ Service.do_stuff(object)
48
48
  Will output:
49
49
 
50
50
  ```bash
51
- Putter Debugging: Object instance -- Method: :value, Args: [:world, "!"], Result: "Hello world!"
51
+ Putter Debugging: Object instance -- Method: :hello, Args: [:world, "!"], Result: "Hello world!"
52
52
  ```
53
53
 
54
54
  #### `Putter.follow` Options
@@ -67,7 +67,7 @@ Putter currently has 3 configuration options:
67
67
 
68
68
  ```ruby
69
69
  Putter.configure do |config|
70
- # 'method_strategy' takes a block that receives four arguments with the label, method, args array,
70
+ # 'print_strategy' takes a block that receives four arguments with the label, method, args array,
71
71
  # and result respectively. This block will be used after each method is called, it must contain
72
72
  # puts or logger calls, to print or any other method callbacks that are helpful.
73
73
  # Defaults to Putter::PrintStrategy::Default
@@ -1,3 +1,3 @@
1
1
  module Putter
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: putter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John DeWyze
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-04 00:00:00.000000000 Z
11
+ date: 2016-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize