lopata 0.1.17 → 0.1.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exe/lopata +0 -0
- data/lib/lopata/scenario.rb +14 -0
- data/lib/lopata/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 648aa77ea8c480039ff21dc5b0ad56869252bf132878980b413cce036faba74e
|
4
|
+
data.tar.gz: e038f58383820b4fa57388c7b41c4a654bbf3fdb366e6f65517cf5e4e2e0ba1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b48e9faf2da07942d82a0f336a7dcf146a36624cb4fb02913562821ca1862aefa4433e0a3cec56abf699019c998765e7eca5309bf54b8266483f0de78cdd97d9
|
7
|
+
data.tar.gz: 86a158bf2b5097e351acfeb84376f0d67615ea9fcde9e46108e997b2b100a91ea9d068ed96363a156ba9cb41f6bbc7965fcd2d65e655d11e7f8da0c0dbf3d281
|
data/exe/lopata
CHANGED
File without changes
|
data/lib/lopata/scenario.rb
CHANGED
@@ -15,6 +15,14 @@ class Lopata::Scenario
|
|
15
15
|
@execution = execution
|
16
16
|
end
|
17
17
|
|
18
|
+
# Provide a human-readable representation of this class
|
19
|
+
def inspect
|
20
|
+
"#<#{self.class.name} #{execution.title.inspect}>"
|
21
|
+
end
|
22
|
+
alias to_s inspect
|
23
|
+
|
24
|
+
|
25
|
+
|
18
26
|
# Marks current step as pending
|
19
27
|
# @example
|
20
28
|
# it 'pending step' do
|
@@ -65,6 +73,12 @@ class Lopata::Scenario
|
|
65
73
|
@scenario = Lopata::Scenario.new(self)
|
66
74
|
end
|
67
75
|
|
76
|
+
# Provide a human-readable representation of this class
|
77
|
+
def inspect
|
78
|
+
"#<#{self.class.name} #{title.inspect}>"
|
79
|
+
end
|
80
|
+
alias to_s inspect
|
81
|
+
|
68
82
|
def run
|
69
83
|
@status = :running
|
70
84
|
sort_steps
|
data/lib/lopata/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lopata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexey Volochnev
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -120,7 +120,7 @@ homepage: https://github.com/avolochnev/lopata
|
|
120
120
|
licenses:
|
121
121
|
- MIT
|
122
122
|
metadata: {}
|
123
|
-
post_install_message:
|
123
|
+
post_install_message:
|
124
124
|
rdoc_options: []
|
125
125
|
require_paths:
|
126
126
|
- lib
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
136
|
version: '0'
|
137
137
|
requirements: []
|
138
138
|
rubygems_version: 3.2.15
|
139
|
-
signing_key:
|
139
|
+
signing_key:
|
140
140
|
specification_version: 4
|
141
|
-
summary: lopata-0.1.
|
141
|
+
summary: lopata-0.1.18
|
142
142
|
test_files: []
|