cql 1.6.0 → 1.7.0
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/lib/cql/version.rb +1 -1
- data/testing/rspec/spec/cql_spec.rb +6 -0
- metadata +24 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c95630cf653362dc9364c4ffe7c5099efbd779abec07c8fe42ebb4fffc23008b
|
4
|
+
data.tar.gz: 7f1c6a3f3e728fe9b92ad1ba1df4001d5a10cca8469997a47bf82c6f0b301664
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d449609ec93c7ef3cece4da854e6b2ecb83198eb02bfe9f17688974f9ee3aa8f17bf5dcf94241ebdbb201414f18fc938bdca86b16141f7937246a903abbef070
|
7
|
+
data.tar.gz: c7b9588db438b973b1714d2191f5725ba17ad30aa363d6f8d10337767d86616fd982ea603fc266628209518de0d2a6c4d265dbfe043c19f0966f88387254a279
|
data/lib/cql/version.rb
CHANGED
@@ -13,6 +13,12 @@ describe 'the gem' do
|
|
13
13
|
expect(mock_ui.error).to_not match(/warn/i)
|
14
14
|
end
|
15
15
|
|
16
|
+
it 'has a current license' do
|
17
|
+
license_text = File.read("#{File.dirname(__FILE__)}/../../../LICENSE.txt")
|
18
|
+
|
19
|
+
expect(license_text).to match(/Copyright.*2014-#{Time.now.year}/)
|
20
|
+
end
|
21
|
+
|
16
22
|
end
|
17
23
|
|
18
24
|
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Kessler
|
8
8
|
- Jarrod Folino
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-01-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: cuke_modeler
|
@@ -272,16 +272,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
272
272
|
version: 1.8.7
|
273
273
|
- - "<"
|
274
274
|
- !ruby/object:Gem::Version
|
275
|
-
version: '
|
275
|
+
version: '4.0'
|
276
276
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
277
277
|
requirements:
|
278
278
|
- - ">="
|
279
279
|
- !ruby/object:Gem::Version
|
280
280
|
version: '0'
|
281
281
|
requirements: []
|
282
|
-
|
283
|
-
|
284
|
-
signing_key:
|
282
|
+
rubygems_version: 3.2.3
|
283
|
+
signing_key:
|
285
284
|
specification_version: 4
|
286
285
|
summary: A gem providing functionality to query a Cucumber test suite.
|
287
286
|
test_files:
|
@@ -306,15 +305,26 @@ test_files:
|
|
306
305
|
- testing/fixtures/features/combined/b/f2_2_tags.feature
|
307
306
|
- testing/fixtures/features/combined/b/f3_3_tags.feature
|
308
307
|
- testing/fixtures/features/examples/basic/test_with_scenarios.feature
|
308
|
+
- testing/fixtures/features/examples/filters/tag_count/simple.feature
|
309
|
+
- testing/fixtures/features/examples/filters/tag_count/simple2.feature
|
309
310
|
- testing/fixtures/features/examples/filters/tags/simple.feature
|
310
311
|
- testing/fixtures/features/examples/filters/tags2/simple.feature
|
311
312
|
- testing/fixtures/features/examples/filters/tags2/simple2.feature
|
312
|
-
- testing/fixtures/features/examples/filters/tag_count/simple.feature
|
313
|
-
- testing/fixtures/features/examples/filters/tag_count/simple2.feature
|
314
313
|
- testing/fixtures/features/examples/multiple_examples/test_with_scenarios.feature
|
315
314
|
- testing/fixtures/features/examples/name_filter/name.feature
|
316
315
|
- testing/fixtures/features/got/Lannisters.feature
|
317
316
|
- testing/fixtures/features/got/Starks.feature
|
317
|
+
- testing/fixtures/features/scen_outlines/basic/test_with_scenarios.feature
|
318
|
+
- testing/fixtures/features/scen_outlines/filters/tag_count/simple.feature
|
319
|
+
- testing/fixtures/features/scen_outlines/filters/tag_count/simple2.feature
|
320
|
+
- testing/fixtures/features/scen_outlines/filters/tags/simple.feature
|
321
|
+
- testing/fixtures/features/scen_outlines/filters/tags2/simple.feature
|
322
|
+
- testing/fixtures/features/scen_outlines/filters/tags2/simple2.feature
|
323
|
+
- testing/fixtures/features/scen_outlines/line_count/simple.feature
|
324
|
+
- testing/fixtures/features/scen_outlines/line_count/simple2.feature
|
325
|
+
- testing/fixtures/features/scen_outlines/line_filter/ll.feature
|
326
|
+
- testing/fixtures/features/scen_outlines/multiple_examples/test_with_scenarios.feature
|
327
|
+
- testing/fixtures/features/scen_outlines/name_filter/name.feature
|
318
328
|
- testing/fixtures/features/scenario/line_count/simple.feature
|
319
329
|
- testing/fixtures/features/scenario/line_count/simple2.feature
|
320
330
|
- testing/fixtures/features/scenario/line_filter/ll.feature
|
@@ -325,6 +335,8 @@ test_files:
|
|
325
335
|
- testing/fixtures/features/scenario/simple/test_full.feature
|
326
336
|
- testing/fixtures/features/scenario/simple2/test_full.feature
|
327
337
|
- testing/fixtures/features/scenario/table/simple.feature
|
338
|
+
- testing/fixtures/features/scenario/tag_count/simple.feature
|
339
|
+
- testing/fixtures/features/scenario/tag_count/simple2.feature
|
328
340
|
- testing/fixtures/features/scenario/tagged_features/simple.feature
|
329
341
|
- testing/fixtures/features/scenario/tagged_features/test.feature
|
330
342
|
- testing/fixtures/features/scenario/tagged_features/test2.feature
|
@@ -333,19 +345,6 @@ test_files:
|
|
333
345
|
- testing/fixtures/features/scenario/tags2/simple.feature
|
334
346
|
- testing/fixtures/features/scenario/tags2/simple2.feature
|
335
347
|
- testing/fixtures/features/scenario/tags3/simple.feature
|
336
|
-
- testing/fixtures/features/scenario/tag_count/simple.feature
|
337
|
-
- testing/fixtures/features/scenario/tag_count/simple2.feature
|
338
|
-
- testing/fixtures/features/scen_outlines/basic/test_with_scenarios.feature
|
339
|
-
- testing/fixtures/features/scen_outlines/filters/tags/simple.feature
|
340
|
-
- testing/fixtures/features/scen_outlines/filters/tags2/simple.feature
|
341
|
-
- testing/fixtures/features/scen_outlines/filters/tags2/simple2.feature
|
342
|
-
- testing/fixtures/features/scen_outlines/filters/tag_count/simple.feature
|
343
|
-
- testing/fixtures/features/scen_outlines/filters/tag_count/simple2.feature
|
344
|
-
- testing/fixtures/features/scen_outlines/line_count/simple.feature
|
345
|
-
- testing/fixtures/features/scen_outlines/line_count/simple2.feature
|
346
|
-
- testing/fixtures/features/scen_outlines/line_filter/ll.feature
|
347
|
-
- testing/fixtures/features/scen_outlines/multiple_examples/test_with_scenarios.feature
|
348
|
-
- testing/fixtures/features/scen_outlines/name_filter/name.feature
|
349
348
|
- testing/gemfiles/cuke_modeler0.gemfile
|
350
349
|
- testing/gemfiles/cuke_modeler1.gemfile
|
351
350
|
- testing/gemfiles/cuke_modeler2.gemfile
|
@@ -356,8 +355,8 @@ test_files:
|
|
356
355
|
- testing/rspec/spec/clauses/from_clause_spec.rb
|
357
356
|
- testing/rspec/spec/clauses/select_clause_spec.rb
|
358
357
|
- testing/rspec/spec/clauses/transform_clause_spec.rb
|
359
|
-
- testing/rspec/spec/clauses/without_clause_spec.rb
|
360
358
|
- testing/rspec/spec/clauses/with_clause_spec.rb
|
359
|
+
- testing/rspec/spec/clauses/without_clause_spec.rb
|
361
360
|
- testing/rspec/spec/cql_spec.rb
|
362
361
|
- testing/rspec/spec/dsl_spec.rb
|
363
362
|
- testing/rspec/spec/filter_example_spec.rb
|
@@ -373,7 +372,8 @@ test_files:
|
|
373
372
|
- testing/rspec/spec/queriable_specs.rb
|
374
373
|
- testing/rspec/spec/repository_spec.rb
|
375
374
|
- testing/rspec/spec/select_feature_dsl_spec.rb
|
376
|
-
- testing/rspec/spec/select_scenario_dsl_spec.rb
|
377
375
|
- testing/rspec/spec/select_scen_outline_dsl_spec.rb
|
376
|
+
- testing/rspec/spec/select_scenario_dsl_spec.rb
|
378
377
|
- testing/rspec/spec/spec_helper.rb
|
379
378
|
- testing/rspec/spec/tag_filterable_specs.rb
|
379
|
+
...
|