pork 0.9.1 → 0.9.2
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/.travis.yml +2 -4
- data/CHANGES.md +6 -1
- data/lib/pork.rb +1 -1
- data/lib/pork/version.rb +1 -1
- data/pork.gemspec +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a3d84ef0bd9962c3d48dad6baf8182cdea451d3
|
4
|
+
data.tar.gz: 65e166bbe7e9fe9fcc91f9b8a66c4457a9a97c37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 406eace0873f1bbf764fd77a041df9e92368eb82c3681ac5b99a9bd999ed508e71412f2552b04cd8129eb67eb8efbc9fe8db5f900c12bc4ede8d4b7848c2caf0
|
7
|
+
data.tar.gz: 4a57b245e51c6132d7d5e9ba3e4bdca5e7741b06830da52289fefcc05e70e7d0d80091c852893891a604f9097a39a9906539cabdaf28edcb98b0c36bb9791bf5
|
data/.travis.yml
CHANGED
data/CHANGES.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# CHANGES
|
2
2
|
|
3
|
+
## Pork 0.9.2 -- 2014-11-07
|
4
|
+
|
5
|
+
* Pork::Error is now a StandardError instead of an Exception.
|
6
|
+
We should all try to avoid using Exception directly, since
|
7
|
+
we don't want to interferer with signal handling.
|
8
|
+
|
3
9
|
## Pork 0.9.1 -- 2014-07-14
|
4
10
|
|
5
11
|
### Bugs fixed
|
@@ -7,7 +13,6 @@
|
|
7
13
|
* It would now properly `exit(1)` when there's an error.
|
8
14
|
* It would now properly search the stashes chain upon `paste`.
|
9
15
|
|
10
|
-
|
11
16
|
### Enhancement
|
12
17
|
|
13
18
|
* `Kernel#should` now accepts a second argument for building messages lazily.
|
data/lib/pork.rb
CHANGED
data/lib/pork/version.rb
CHANGED
data/pork.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: pork 0.9.
|
2
|
+
# stub: pork 0.9.2 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "pork"
|
6
|
-
s.version = "0.9.
|
6
|
+
s.version = "0.9.2"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib"]
|
10
10
|
s.authors = ["Lin Jen-Shin (godfat)"]
|
11
|
-
s.date = "2014-07
|
11
|
+
s.date = "2014-11-07"
|
12
12
|
s.description = "Pork -- Simple and clean and modular testing library.\n\n[Bacon][] reimplemented around 250 lines of code.\n\n[Bacon]: https://github.com/chneukirchen/bacon"
|
13
13
|
s.email = ["godfat (XD) godfat.org"]
|
14
14
|
s.files = [
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |s|
|
|
30
30
|
"test/test_readme.rb"]
|
31
31
|
s.homepage = "https://github.com/godfat/pork"
|
32
32
|
s.licenses = ["Apache License 2.0"]
|
33
|
-
s.rubygems_version = "2.
|
33
|
+
s.rubygems_version = "2.4.2"
|
34
34
|
s.summary = "Pork -- Simple and clean and modular testing library."
|
35
35
|
s.test_files = [
|
36
36
|
"test/test_bacon.rb",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pork
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lin Jen-Shin (godfat)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07
|
11
|
+
date: 2014-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |-
|
14
14
|
Pork -- Simple and clean and modular testing library.
|
@@ -58,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
58
|
version: '0'
|
59
59
|
requirements: []
|
60
60
|
rubyforge_project:
|
61
|
-
rubygems_version: 2.
|
61
|
+
rubygems_version: 2.4.2
|
62
62
|
signing_key:
|
63
63
|
specification_version: 4
|
64
64
|
summary: Pork -- Simple and clean and modular testing library.
|