zeta 2.1.1 → 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e5ab7f8a67c05dcfe779a6b0f294b4739c48051
4
- data.tar.gz: 4bdb5e271e1163579aa2009e695cf2e4ed7c1e38
3
+ metadata.gz: f1b45f041471de08223d29130c6f63a07ab5a7f2
4
+ data.tar.gz: f2d3f4357da410840ea839511f47120eaed0bc21
5
5
  SHA512:
6
- metadata.gz: 594d80d468c3d59c24ecf3184cc47d0644ac174346418c80f454595ed7d3c498929b0b9a23cca585f653be2b6c1b0ca7d2ca4bd59f08b8e8517f14b459aaebb6
7
- data.tar.gz: 0fa2f6065bc5af0603ca7556d0015ec1f13790bb95979c2a8c3feb950354ba3ec1a58ed2719e6be75ed1224fd4bcd79a7ac8873edaba35b56e3728f5da3d8423
6
+ metadata.gz: 8f47ca58b63a2a932b2c24f05949d0ed12ac0153ebc80bfc9e182036f992d4b1a4549b9ef686467b3e936179a530213abf96dc060fc6465db17547e91aed0021
7
+ data.tar.gz: f82c61c32d425409c7c0d277a3bda8d667c20a0d9bc6f5347332c4fd3418120da08153b0cdf93e30e8ad4deb71eae37d2aae82d67081556e930ecb2cb766368a
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,6 @@
1
+ # 2.1.2
2
+ - Add a context to prevent rspec from running context before other tests in autorun_all
3
+
1
4
  # 2.1.1
2
5
  - Bump lacerda to 2.1.2
3
6
  - Fix issues with nested describes/its/contexts
@@ -7,18 +7,20 @@ if defined?(Rails) && ENV['ZETA_HTTP_USER'].blank? && ENV['ZETA_HTTP_PASSWORD'].
7
7
  end
8
8
 
9
9
  RSpec.describe 'Zeta infrastructure', order: :defined do
10
- it 'has a correctly configured current service' do
11
- expect do
12
- Zeta.config
13
- Zeta.infrastructure
14
- end.to_not raise_error
15
- end
10
+ context 'the current service' do
11
+ it 'is correctly configured' do
12
+ expect do
13
+ Zeta.config
14
+ Zeta.infrastructure
15
+ end.to_not raise_error
16
+ end
16
17
 
17
- it 'can download the infrastructure contracts (requires network connection)' do
18
- expect do
19
- Zeta.verbose = false
20
- Zeta.update_contracts
21
- end.to_not raise_error
18
+ it 'can download the infrastructure contracts (requires network connection)' do
19
+ expect do
20
+ Zeta.verbose = false
21
+ Zeta.update_contracts
22
+ end.to_not raise_error
23
+ end
22
24
  end
23
25
 
24
26
  context 'contract validation' do
data/lib/zeta/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Zeta
2
- VERSION = "2.1.1"
2
+ VERSION = "2.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zeta
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jannis Hermanns