lacerda 2.1.2 → 2.1.3
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.markdown +5 -0
- data/lib/lacerda/reporters/rspec.rb +1 -1
- data/lib/lacerda/version.rb +1 -1
- 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: 6fa036be3aa64b8252a1f70c50845b30a3416c91
|
|
4
|
+
data.tar.gz: bdf9130ea1129c5d75ad957b0ead7c1415e79872
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ecafbf4304cc8c8996872d24473250c5b0160d18ed1570abda7b82f2cb3a74a1c9eb9d835883b0f2fc921efeeea46df51a3e8e0c5054d5b0cdf5c57c9b0c4d8
|
|
7
|
+
data.tar.gz: f928393cc76f332f8ca5efed5a714e44cdcdc6ae7bff3ba1a01d715cb6ce637b7a4717c0774a8a82ec3f50924fa3951f64d3f2a6467a55ef2f892c4bf524be95
|
data/CHANGELOG.markdown
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
+
# [2.1.3] - 2017-09-15
|
|
2
|
+
### Fixed
|
|
3
|
+
- Allow Lacerda::Reporter::Rspec to work when RSpec config.disable_monkey_paching! is set.
|
|
4
|
+
|
|
1
5
|
# 2.1.2
|
|
2
6
|
- Avoid RSpec stdout errors for programatially created specs
|
|
7
|
+
|
|
3
8
|
# 2.1.1
|
|
4
9
|
- Fix https://github.com/moviepilot/lacerda/issues/22
|
|
5
10
|
- Fix issues with nested describe/it/contexts
|
|
@@ -3,7 +3,7 @@ require 'active_support/core_ext/object/try'
|
|
|
3
3
|
module Lacerda
|
|
4
4
|
module Reporters
|
|
5
5
|
class RSpec < Lacerda::Reporter
|
|
6
|
-
def initialize(group = RSpec.describe("Lacerda infrastructure contract validation"))
|
|
6
|
+
def initialize(group = ::RSpec.describe("Lacerda infrastructure contract validation"))
|
|
7
7
|
@group = group
|
|
8
8
|
end
|
|
9
9
|
|
data/lib/lacerda/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lacerda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jannis Hermanns
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -289,7 +289,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
289
289
|
version: '0'
|
|
290
290
|
requirements: []
|
|
291
291
|
rubyforge_project:
|
|
292
|
-
rubygems_version: 2.6.
|
|
292
|
+
rubygems_version: 2.6.13
|
|
293
293
|
signing_key:
|
|
294
294
|
specification_version: 4
|
|
295
295
|
summary: Markdown publish/consume contract parser and validator
|