rutema 2.0.0.pre13 → 2.0.0.pre14
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/History.txt +2 -0
- data/lib/rutema/core/configuration.rb +3 -1
- data/lib/rutema/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 311e719e7f4b3e8f03d0f0f4626dcba9d60198e0
|
|
4
|
+
data.tar.gz: 710a02e8c7be372a6c693807fbd50a6dff7fd54d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25cba503f6b025433a3ffa4726e4fccaeb01b0da11429adc68daa2272b76102e6d6495fc0a3d02fb59508f459436b1bba48f273de51924911693879821c06f43
|
|
7
|
+
data.tar.gz: 3e6977a0db884edc6f088ff0fabca374d149b8c71a73eca471ee1e4f525c2fdca5435f8c546ad42778da8fbde3c44ce4f33a9ae1d51fbcad31b1c5d4bca13132
|
data/History.txt
CHANGED
|
@@ -201,8 +201,10 @@
|
|
|
201
201
|
begin
|
|
202
202
|
cfg_txt=File.read(filename)
|
|
203
203
|
cwd=File.expand_path(File.dirname(filename))
|
|
204
|
+
#WORKAROUND for ruby 2.3.1
|
|
205
|
+
fname=File.basename(filename)
|
|
204
206
|
#evaluate in the working directory to enable relative paths in configuration
|
|
205
|
-
Dir.chdir(cwd){eval(cfg_txt,binding(),
|
|
207
|
+
Dir.chdir(cwd){eval(cfg_txt,binding(),fname,__LINE__)}
|
|
206
208
|
rescue ConfigurationException
|
|
207
209
|
#pass it on, do not wrap again
|
|
208
210
|
raise
|
data/lib/rutema/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rutema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.0.
|
|
4
|
+
version: 2.0.0.pre14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vassilis Rizopoulos
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: patir
|
|
@@ -58,14 +58,14 @@ dependencies:
|
|
|
58
58
|
requirements:
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '3.
|
|
61
|
+
version: '3.14'
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '3.
|
|
68
|
+
version: '3.14'
|
|
69
69
|
description: "rutema [http://github.com/damphyr/rutema](http://github.com/damphyr/rutema)\n\nrutema
|
|
70
70
|
is a test execution tool and a framework for organizing and managing test execution
|
|
71
71
|
across different tools.\n\nIt enables the combination of different test tools while
|