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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -0
- data/lib/pippi/auto_runner.rb +1 -1
- data/lib/pippi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d37c65528172c3c0e6fedbf801f96e8ea46034df
|
|
4
|
+
data.tar.gz: 846113876273b325dfa0b806dc817931444aed35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9cb6f46aaaae477eefc994667a1890c68e748ee223c3c1d9b0fa3462b1af82ce8b467d697a54fe639a8ab8f5e9193acaafdaf3f2039a4c7e7a684a7bc47efdd7
|
|
7
|
+
data.tar.gz: 25204a662c61af0f5906211e1b198286a04e94913a53753c807dd351a8c183fc8140c72103f163525bd3bd40d97fb853fd762a784aa1251ced648135fcdead21
|
data/CHANGELOG.md
CHANGED
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`.
|
data/lib/pippi/auto_runner.rb
CHANGED
|
@@ -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
|
|
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
|
data/lib/pippi/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2015-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|