cukesparse 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +6 -14
- data/.gitignore +1 -0
- data/README.md +3 -1
- data/cukesparse.gemspec +1 -1
- data/lib/cukesparse.rb +1 -2
- metadata +3 -4
- data/report.html +0 -0
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
ZjRmNGQyZjhiZWJmN2JkZGU0MTg2MmUxMWI5YzJjYmE2YTlhOTlkZDQyZDky
|
10
|
-
MjAyYjc3ODA2NTI4Y2ZlNjJjNmVkNDM0ZGJiOGI4YTRmMjE4MDhhMTgyZDQw
|
11
|
-
MDRjNGFhOTdjM2Q2NDY4NzNmNDBiM2RjZmY3YWEyMjgwZjU3Yzc=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
OTU0MDU5MDM1NWI2YzAxNGFiMmIxMjEyZWY4ZmU1YjM0MWZkMTQ5ZTc1YTYx
|
14
|
-
NjA2MmNmMWU5ZTk0YWRmZjcwMDdjMjhmMmY5Mzk3YTE0YWQ2N2YxMjFjNzhm
|
15
|
-
ODQwZWZmZGMzYTU1OTA2OTQzNTliY2U4ZGM4N2E2NjJiMDRhMDg=
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 91f3bff2138f5aa91520a57877ad6d9b03faa415
|
4
|
+
data.tar.gz: fa04ec49ba476339b2076282b43eede695685725
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1a7bdeb209e20a4a9aab49571982ec92f7f899c4f346a29fd1a0e13ebccdb37aef7e6ebfd45e0c34fb1a8c7de19c6e0360097765c1ed5622dfd78fa7475803d3
|
7
|
+
data.tar.gz: 6d21c5241f17e4f5a5242e4e4b698e2ee078322356f4dda3824f0c01247ebef37da6e31766a78ba4c36f87ad99d0cd45993ff83ca2493b2cd8d00979bc0474df
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -46,7 +46,6 @@ Cukesparse parses command line arguments and sets default arguments from the con
|
|
46
46
|
You can have many highlevel tasks defined within your config/tasks.yml file. In the above example we only have the task `test_task`. Please note that the screen and position config options will set screenwidth/screenheight or xposition/yposition parameters. You should use screen/position or define the individual options only within the config file!
|
47
47
|
|
48
48
|
## Lets get it running!
|
49
|
-
|
50
49
|
Lets say we have the following simple config file options defined:
|
51
50
|
|
52
51
|
test_task:
|
@@ -71,6 +70,9 @@ As no `environment`, `log_level` arguments were passed the runtime defaults from
|
|
71
70
|
bundle exec cucumber --require features/ features/featureOne features/featureTwo features/featureThree --tags test
|
72
71
|
ENVIRONMENT=release LOG_LEVEL=debug FORMAT=pretty --format html --out coverage/report.html -P -s
|
73
72
|
|
73
|
+
## See tasks from CLI
|
74
|
+
If you need to view the tasks within config file from the command line just type: `cukesparse tasks`
|
75
|
+
|
74
76
|
## Parameters
|
75
77
|
Cukesparse accepts the following command line arguments:
|
76
78
|
|
data/cukesparse.gemspec
CHANGED
data/lib/cukesparse.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
require 'clik'
|
2
2
|
require 'colored'
|
3
3
|
require 'yaml'
|
4
|
-
require 'pry'
|
5
4
|
YAML::ENGINE.yamler = 'psych'
|
6
5
|
|
7
6
|
module Cukesparse
|
@@ -102,7 +101,7 @@ module Cukesparse
|
|
102
101
|
puts @config.inspect
|
103
102
|
puts 'DEBUG: Outputting parameters created'.yellow
|
104
103
|
puts @parameters.inspect
|
105
|
-
puts 'DEBUG: Outputting
|
104
|
+
puts 'DEBUG: Outputting command created'.yellow
|
106
105
|
puts @command.join(' ')
|
107
106
|
end
|
108
107
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cukesparse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Chrisp
|
@@ -95,7 +95,6 @@ files:
|
|
95
95
|
- config/tasks.yml
|
96
96
|
- cukesparse.gemspec
|
97
97
|
- lib/cukesparse.rb
|
98
|
-
- report.html
|
99
98
|
- spec/cukesparse_spec.rb
|
100
99
|
- spec/spec_files/invalid_tasks.yml
|
101
100
|
- spec/spec_files/valid_tasks.yml
|
@@ -109,12 +108,12 @@ require_paths:
|
|
109
108
|
- lib
|
110
109
|
required_ruby_version: !ruby/object:Gem::Requirement
|
111
110
|
requirements:
|
112
|
-
- -
|
111
|
+
- - '>='
|
113
112
|
- !ruby/object:Gem::Version
|
114
113
|
version: 1.9.2
|
115
114
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
116
115
|
requirements:
|
117
|
-
- -
|
116
|
+
- - '>='
|
118
117
|
- !ruby/object:Gem::Version
|
119
118
|
version: '0'
|
120
119
|
requirements: []
|
data/report.html
DELETED
File without changes
|