cooklang 1.0.2 → 1.0.3
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/.github/workflows/test.yml +2 -2
- data/.gitignore +1 -0
- data/README.md +4 -0
- data/cooklang.gemspec +2 -2
- data/lib/cooklang/metadata.rb +2 -2
- data/lib/cooklang/version.rb +1 -1
- metadata +6 -7
- data/Gemfile.lock +0 -84
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4a3402d1f6f0e5864c0e59c8f237f0d06ca9a469ef3783f51b49e48d2ab1adb
|
4
|
+
data.tar.gz: bba07497106184771d712868f8abaaca2538bff3b85278357ba8d62438e0d452
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d89c0f9d7828567958e37b3b98f2318d5d69e6bb64b31ef2a1536a14e142c031143c798236e36da450dd5f1ac15370306fa2694ef8358cbe790358c621e642d
|
7
|
+
data.tar.gz: f1d1881eccc351da77bb473447e4b1eb8508d951ed71ad044e082bc8ed7ab92cbbbd8cb9904a996595db74b04ee91ef56896a9b3d75b1c12e51a39503d3615fc
|
data/.github/workflows/test.yml
CHANGED
@@ -11,7 +11,7 @@ jobs:
|
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
strategy:
|
13
13
|
matrix:
|
14
|
-
ruby-version: ['3.2', '3.3', '3.4', '3.5']
|
14
|
+
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4', '3.5']
|
15
15
|
|
16
16
|
steps:
|
17
17
|
- uses: actions/checkout@v4
|
@@ -29,7 +29,7 @@ jobs:
|
|
29
29
|
run: bundle exec rubocop
|
30
30
|
|
31
31
|
- uses: qltysh/qlty-action/coverage@v2
|
32
|
-
if: matrix.ruby-version == '3.
|
32
|
+
if: matrix.ruby-version == '3.4'
|
33
33
|
with:
|
34
34
|
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
|
35
35
|
files: coverage/.resultset.json
|
data/.gitignore
CHANGED
data/README.md
CHANGED
data/cooklang.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.description = "Cooklang is a markup language for recipes that allows you to define ingredients, cookware, timers, and metadata in a structured way. This gem provides a Ruby parser for Cooklang files."
|
15
15
|
spec.homepage = "https://github.com/jamesbrooks/cooklang"
|
16
16
|
spec.license = "MIT"
|
17
|
-
spec.required_ruby_version = ">=
|
17
|
+
spec.required_ruby_version = ">= 2.7.0"
|
18
18
|
|
19
19
|
spec.metadata["homepage_uri"] = spec.homepage
|
20
20
|
spec.metadata["source_code_uri"] = "https://github.com/jamesbrooks/cooklang"
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
26
26
|
spec.require_paths = ["lib"]
|
27
27
|
|
28
|
-
spec.add_development_dependency "bundler", "
|
28
|
+
spec.add_development_dependency "bundler", ">= 2.1"
|
29
29
|
spec.add_development_dependency "rake", "~> 13.0"
|
30
30
|
spec.add_development_dependency "rspec", "~> 3.13"
|
31
31
|
spec.add_development_dependency "rubocop", "~> 1.80"
|
data/lib/cooklang/metadata.rb
CHANGED
data/lib/cooklang/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cooklang
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Brooks
|
@@ -13,16 +13,16 @@ dependencies:
|
|
13
13
|
name: bundler
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
|
-
- - "
|
16
|
+
- - ">="
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: '2.
|
18
|
+
version: '2.1'
|
19
19
|
type: :development
|
20
20
|
prerelease: false
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
22
22
|
requirements:
|
23
|
-
- - "
|
23
|
+
- - ">="
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: '2.
|
25
|
+
version: '2.1'
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: rake
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -124,7 +124,6 @@ files:
|
|
124
124
|
- ".rspec"
|
125
125
|
- ".rubocop.yml"
|
126
126
|
- Gemfile
|
127
|
-
- Gemfile.lock
|
128
127
|
- LICENSE.txt
|
129
128
|
- README.md
|
130
129
|
- Rakefile
|
@@ -186,7 +185,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
186
185
|
requirements:
|
187
186
|
- - ">="
|
188
187
|
- !ruby/object:Gem::Version
|
189
|
-
version:
|
188
|
+
version: 2.7.0
|
190
189
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
191
190
|
requirements:
|
192
191
|
- - ">="
|
data/Gemfile.lock
DELETED
@@ -1,84 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
cooklang (1.0.1)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
ast (2.4.3)
|
10
|
-
diff-lcs (1.6.2)
|
11
|
-
docile (1.4.1)
|
12
|
-
json (2.13.2)
|
13
|
-
language_server-protocol (3.17.0.5)
|
14
|
-
lint_roller (1.1.0)
|
15
|
-
parallel (1.27.0)
|
16
|
-
parser (3.3.9.0)
|
17
|
-
ast (~> 2.4.1)
|
18
|
-
racc
|
19
|
-
prism (1.4.0)
|
20
|
-
racc (1.8.1)
|
21
|
-
rainbow (3.1.1)
|
22
|
-
rake (13.3.0)
|
23
|
-
regexp_parser (2.11.2)
|
24
|
-
rspec (3.13.1)
|
25
|
-
rspec-core (~> 3.13.0)
|
26
|
-
rspec-expectations (~> 3.13.0)
|
27
|
-
rspec-mocks (~> 3.13.0)
|
28
|
-
rspec-core (3.13.5)
|
29
|
-
rspec-support (~> 3.13.0)
|
30
|
-
rspec-expectations (3.13.5)
|
31
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
32
|
-
rspec-support (~> 3.13.0)
|
33
|
-
rspec-mocks (3.13.5)
|
34
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
35
|
-
rspec-support (~> 3.13.0)
|
36
|
-
rspec-support (3.13.5)
|
37
|
-
rubocop (1.80.0)
|
38
|
-
json (~> 2.3)
|
39
|
-
language_server-protocol (~> 3.17.0.2)
|
40
|
-
lint_roller (~> 1.1.0)
|
41
|
-
parallel (~> 1.10)
|
42
|
-
parser (>= 3.3.0.2)
|
43
|
-
rainbow (>= 2.2.2, < 4.0)
|
44
|
-
regexp_parser (>= 2.9.3, < 3.0)
|
45
|
-
rubocop-ast (>= 1.46.0, < 2.0)
|
46
|
-
ruby-progressbar (~> 1.7)
|
47
|
-
unicode-display_width (>= 2.4.0, < 4.0)
|
48
|
-
rubocop-ast (1.46.0)
|
49
|
-
parser (>= 3.3.7.2)
|
50
|
-
prism (~> 1.4)
|
51
|
-
rubocop-performance (1.25.0)
|
52
|
-
lint_roller (~> 1.1)
|
53
|
-
rubocop (>= 1.75.0, < 2.0)
|
54
|
-
rubocop-ast (>= 1.38.0, < 2.0)
|
55
|
-
rubocop-rspec (3.6.0)
|
56
|
-
lint_roller (~> 1.1)
|
57
|
-
rubocop (~> 1.72, >= 1.72.1)
|
58
|
-
ruby-progressbar (1.13.0)
|
59
|
-
simplecov (0.22.0)
|
60
|
-
docile (~> 1.1)
|
61
|
-
simplecov-html (~> 0.11)
|
62
|
-
simplecov_json_formatter (~> 0.1)
|
63
|
-
simplecov-html (0.13.2)
|
64
|
-
simplecov_json_formatter (0.1.4)
|
65
|
-
unicode-display_width (3.1.5)
|
66
|
-
unicode-emoji (~> 4.0, >= 4.0.4)
|
67
|
-
unicode-emoji (4.0.4)
|
68
|
-
|
69
|
-
PLATFORMS
|
70
|
-
arm64-darwin-24
|
71
|
-
ruby
|
72
|
-
|
73
|
-
DEPENDENCIES
|
74
|
-
bundler (~> 2.7)
|
75
|
-
cooklang!
|
76
|
-
rake (~> 13.0)
|
77
|
-
rspec (~> 3.13)
|
78
|
-
rubocop (~> 1.80)
|
79
|
-
rubocop-performance (~> 1.25)
|
80
|
-
rubocop-rspec (~> 3.6)
|
81
|
-
simplecov (~> 0.22.0)
|
82
|
-
|
83
|
-
BUNDLED WITH
|
84
|
-
2.7.1
|