cucumber-cucumber-expressions 13.1.3 → 14.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- metadata +3 -5
- data/Makefile +0 -1
- data/default.mk +0 -93
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a32df17b80432aa451bc8f8d5822dfa3b919e44a3feefd657d6dffc730ca56c4
|
4
|
+
data.tar.gz: 12157d0f708a0eaff7b0fc6ad1afb0b68668dfdfd87a370091466cae29d3fcfe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95c6db3127e8a2111ec7f50b06dab07443649e2fd1f759818552df4ac24ec715bd8fb4aad2bd79b3e8054d88dc9751594c75880fa3c15b06f000c82dd88bb37e
|
7
|
+
data.tar.gz: 59ba7dabc703d4b3f4ce6e0d319c0275dfa1dc78b0589544a51f5a070f8a3c6c183dcf0bfa60dbac168209944ee9f5ce95a7ed280f4b5f5f28c817b84b40a937
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
14.0.0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber-cucumber-expressions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 14.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -59,12 +59,10 @@ files:
|
|
59
59
|
- ".rspec"
|
60
60
|
- Gemfile
|
61
61
|
- LICENSE
|
62
|
-
- Makefile
|
63
62
|
- README.md
|
64
63
|
- Rakefile
|
65
64
|
- VERSION
|
66
65
|
- cucumber-cucumber-expressions.gemspec
|
67
|
-
- default.mk
|
68
66
|
- lib/cucumber/cucumber_expressions/argument.rb
|
69
67
|
- lib/cucumber/cucumber_expressions/ast.rb
|
70
68
|
- lib/cucumber/cucumber_expressions/combinatorial_generated_expression_factory.rb
|
@@ -124,7 +122,7 @@ requirements: []
|
|
124
122
|
rubygems_version: 3.2.22
|
125
123
|
signing_key:
|
126
124
|
specification_version: 4
|
127
|
-
summary: cucumber-expressions-
|
125
|
+
summary: cucumber-expressions-14.0.0
|
128
126
|
test_files:
|
129
127
|
- spec/capture_warnings.rb
|
130
128
|
- spec/cucumber/cucumber_expressions/argument_spec.rb
|
data/Makefile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
include default.mk
|
data/default.mk
DELETED
@@ -1,93 +0,0 @@
|
|
1
|
-
SHELL := /usr/bin/env bash
|
2
|
-
RUBY_SOURCE_FILES = $(shell find . -name "*.rb")
|
3
|
-
GEMSPEC = $(shell find . -name "*.gemspec")
|
4
|
-
LIBNAME := $(shell basename $$(dirname $$(pwd)))
|
5
|
-
GEM := cucumber-$(LIBNAME)-$(NEW_VERSION).gem
|
6
|
-
IS_TESTDATA = $(findstring -testdata,${CURDIR})
|
7
|
-
|
8
|
-
# https://stackoverflow.com/questions/2483182/recursive-wildcards-in-gnu-make
|
9
|
-
rwildcard=$(foreach d,$(wildcard $(1:=/*)),$(call rwildcard,$d,$2) $(filter $(subst *,%,$2),$d))
|
10
|
-
|
11
|
-
default: .tested
|
12
|
-
.PHONY: default
|
13
|
-
|
14
|
-
.deps: Gemfile.lock
|
15
|
-
touch $@
|
16
|
-
|
17
|
-
Gemfile.lock: Gemfile $(GEMSPEC)
|
18
|
-
bundle install
|
19
|
-
touch $@
|
20
|
-
|
21
|
-
.tested: .deps $(RUBY_SOURCE_FILES)
|
22
|
-
bundle exec rspec --color
|
23
|
-
touch $@
|
24
|
-
|
25
|
-
update-dependencies:
|
26
|
-
./scripts/update-gemspec
|
27
|
-
.PHONY: update-dependencies
|
28
|
-
|
29
|
-
ifdef NEW_VERSION
|
30
|
-
ifneq (,$(GEMSPEC))
|
31
|
-
gem: $(GEM)
|
32
|
-
else
|
33
|
-
gem:
|
34
|
-
@echo "Not building gem because there is no gemspec"
|
35
|
-
endif
|
36
|
-
endif
|
37
|
-
.PHONY: gem
|
38
|
-
|
39
|
-
$(GEM): .tested
|
40
|
-
gem build $(GEMSPEC)
|
41
|
-
test -s "$(GEM)" || { echo "Gem not built: $(GEM)"; exit 1; }
|
42
|
-
|
43
|
-
remove-local-dependencies:
|
44
|
-
cat Gemfile | sed 's/^gem /#gem /' > Gemfile.tmp
|
45
|
-
mv Gemfile.tmp Gemfile
|
46
|
-
.PHONY: remove-local-dependencies
|
47
|
-
|
48
|
-
pre-release: remove-local-dependencies update-version update-dependencies gem
|
49
|
-
.PHONY: pre-release
|
50
|
-
|
51
|
-
update-version:
|
52
|
-
ifeq ($(IS_TESTDATA),-testdata)
|
53
|
-
# no-op
|
54
|
-
else
|
55
|
-
ifdef NEW_VERSION
|
56
|
-
@echo "$(NEW_VERSION)" > VERSION
|
57
|
-
endif
|
58
|
-
endif
|
59
|
-
.PHONY: update-version
|
60
|
-
|
61
|
-
publish: gem
|
62
|
-
ifeq ($(IS_TESTDATA),-testdata)
|
63
|
-
# no-op
|
64
|
-
else
|
65
|
-
ifneq (,$(GEMSPEC))
|
66
|
-
gem push $(GEM)
|
67
|
-
else
|
68
|
-
@echo "Not publishing because there is no gemspec"
|
69
|
-
endif
|
70
|
-
endif
|
71
|
-
.PHONY: publish
|
72
|
-
|
73
|
-
post-release:
|
74
|
-
cat Gemfile | sed 's/^#gem /gem /' > Gemfile.tmp
|
75
|
-
mv Gemfile.tmp Gemfile
|
76
|
-
.PHONY: post-release
|
77
|
-
|
78
|
-
clean: clean-ruby
|
79
|
-
.PHONY: clean
|
80
|
-
|
81
|
-
clean-ruby:
|
82
|
-
rm -rf .deps .linked .tested* Gemfile.lock *.gem acceptance
|
83
|
-
.PHONY: clean-ruby
|
84
|
-
|
85
|
-
### COMMON stuff for all platforms
|
86
|
-
|
87
|
-
BERP_VERSION = 1.3.0
|
88
|
-
BERP_GRAMMAR = gherkin.berp
|
89
|
-
|
90
|
-
define berp-generate-parser =
|
91
|
-
-! dotnet tool list --tool-path /usr/bin | grep "berp\s*$(BERP_VERSION)" && dotnet tool update Berp --version $(BERP_VERSION) --tool-path /usr/bin
|
92
|
-
berp -g $(BERP_GRAMMAR) -t $< -o $@ --noBOM
|
93
|
-
endef
|