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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 885c569da2496923eeac8a765bb713a38d882e79
4
- data.tar.gz: 0e9fb16d8d4b9de93177ea86da953639c7500e22
3
+ metadata.gz: 3a3d84ef0bd9962c3d48dad6baf8182cdea451d3
4
+ data.tar.gz: 65e166bbe7e9fe9fcc91f9b8a66c4457a9a97c37
5
5
  SHA512:
6
- metadata.gz: 66d37601b58be4a81c6c1e41fa4bde8c55d8a7ac827d43acf18ffae90babac1894dc0cb90c21d3edafb6c042a4c20bd81d1a992267b6655a9e8d92376ca9d819
7
- data.tar.gz: 68ecfbbf3939cf7adeb1662dbcb826c5845a6e147d1dea0bcc348f1582593c8e01e43bda5fd20423446b47865b3a6720d21b21a1c549f5cf8b91fe534ddb2c75
6
+ metadata.gz: 406eace0873f1bbf764fd77a041df9e92368eb82c3681ac5b99a9bd999ed508e71412f2552b04cd8129eb67eb8efbc9fe8db5f900c12bc4ede8d4b7848c2caf0
7
+ data.tar.gz: 4a57b245e51c6132d7d5e9ba3e4bdca5e7741b06830da52289fefcc05e70e7d0d80091c852893891a604f9097a39a9906539cabdaf28edcb98b0c36bb9791bf5
@@ -1,11 +1,9 @@
1
1
 
2
2
  language: ruby
3
3
  rvm:
4
- - 1.9.3
5
- - 2.0.0
6
- - ruby
4
+ - 2.0
5
+ - 2.1
7
6
  - rbx-2
8
7
  - jruby
9
8
 
10
9
  script: 'ruby -r bundler/setup -S rake test'
11
- sudo: false
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.
@@ -8,7 +8,7 @@ module Kernel
8
8
  end
9
9
 
10
10
  module Pork
11
- Error = Class.new(Exception)
11
+ Error = Class.new(StandardError)
12
12
  Failure = Class.new(Error)
13
13
  Skip = Class.new(Error)
14
14
 
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Pork
3
- VERSION = '0.9.1'
3
+ VERSION = '0.9.2'
4
4
  end
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: pork 0.9.1 ruby lib
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.1"
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-14"
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.3.0"
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.1
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-14 00:00:00.000000000 Z
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.3.0
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.