pippi 0.0.12 → 0.0.13

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
  SHA1:
3
- metadata.gz: 3c24ec1b3f56f5dba07eaa8619badfc62dfcd5ab
4
- data.tar.gz: ffa9fa8962b11c79dfce4047599cd5718858fce1
3
+ metadata.gz: d37c65528172c3c0e6fedbf801f96e8ea46034df
4
+ data.tar.gz: 846113876273b325dfa0b806dc817931444aed35
5
5
  SHA512:
6
- metadata.gz: 6161dc0accabc5bc2200c50988cb9dc1c8cbe1fd6e3d2896de5baaf0b6e9c2b3462f81b295a91436a008bec02538d16258920d61e52350139e981cf4a2f9239e
7
- data.tar.gz: 17e840883462738dd6785e07e5891019f42fe24497aa72f90ca7e6906c47691fbb35e9902d2bdb66b2fd2b0410ea4586dd5c5d2120c5df3204e9195d15e26055
6
+ metadata.gz: 9cb6f46aaaae477eefc994667a1890c68e748ee223c3c1d9b0fa3462b1af82ce8b467d697a54fe639a8ab8f5e9193acaafdaf3f2039a4c7e7a684a7bc47efdd7
7
+ data.tar.gz: 25204a662c61af0f5906211e1b198286a04e94913a53753c807dd351a8c183fc8140c72103f163525bd3bd40d97fb853fd762a784aa1251ced648135fcdead21
@@ -1,3 +1,7 @@
1
+ ## 0.0.13 (2015-02-17)
2
+
3
+ * (FIXED) :io option was still opening default file
4
+
1
5
  ## 0.0.12 (2015-02-16)
2
6
 
3
7
  * (NEW) Changed output format to work better with IDEs
data/README.md CHANGED
@@ -370,6 +370,7 @@ rm -rf pippi_debug.log pippi.log .bundle/gems/pippi-0.0.1/ .bundle/cache/pippi-0
370
370
 
371
371
  ## Credits
372
372
 
373
+ * [Andrew Kozin](https://twitter.com/nepalez): fixes to :io option
373
374
  * Christopher Schramm([@cschramm](https://github.com/cschramm)) bugfixes in fault proc clearing
374
375
  * Enrique Delgado: Documentation fixes
375
376
  * [Evan Phoenix](https://twitter.com/evanphx)([@evanphx](https://github.com/evanphx)) for the idea of watching method invocations at runtime using metaprogramming rather than using `Tracepoint`.
@@ -4,7 +4,7 @@ module Pippi
4
4
 
5
5
  def initialize(opts = {})
6
6
  checkset = opts.fetch(:checkset, 'basic')
7
- @io = opts.fetch(:io, File.open('log/pippi.log', 'w'))
7
+ @io = opts.fetch(:io) { File.open('log/pippi.log', 'w') }
8
8
  @ctx = Pippi::Context.new
9
9
 
10
10
  @ctx.checks = Pippi::CheckLoader.new(@ctx, checkset).checks
@@ -1,3 +1,3 @@
1
1
  module Pippi
2
- VERSION = '0.0.12'
2
+ VERSION = '0.0.13'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pippi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.12
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Copeland
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-17 00:00:00.000000000 Z
11
+ date: 2015-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake