komeda 0.1.4 → 0.1.6
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/.tagpr +42 -0
- data/CHANGELOG.md +8 -13
- data/config/menus.yaml +2 -2
- data/lib/komeda/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 999b90c04f2963d4a4b113aba0c2997ed956510d824129b29afbabcda5d7bb2b
|
|
4
|
+
data.tar.gz: 19f1fda0e7f9d739de9223dc6146d217901153643d6cee77c100951873b688a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e3b77255437540fa95e8b80b9c3c8c2b0aec9a2d5e8f2bbbbc2e9310c0a108e4c74a08fb3d39b9d08efb7c1e00a4bbedccc65ba3f3aa23ab8a31b389407f728
|
|
7
|
+
data.tar.gz: 3c3c246f8b5545c931a5622905afa4f9e65aaff0348d05e7050703f46a503f6c9bb1c563debc671eb3184ef15fed214accad096a9ee0a40497a2353e740c7b3d
|
data/.tagpr
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# config file for the tagpr in git config format
|
|
2
|
+
# The tagpr generates the initial configuration, which you can rewrite to suit your environment.
|
|
3
|
+
# CONFIGURATIONS:
|
|
4
|
+
# tagpr.releaseBranch
|
|
5
|
+
# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
|
|
6
|
+
# creates or updates a pull request as a release candidate, or tags when they are merged.
|
|
7
|
+
#
|
|
8
|
+
# tagpr.versionFile
|
|
9
|
+
# Versioning file containing the semantic version needed to be updated at release.
|
|
10
|
+
# It will be synchronized with the "git tag".
|
|
11
|
+
# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
|
|
12
|
+
# Sometimes the source code file, such as version.go or Bar.pm, is used.
|
|
13
|
+
# If you do not want to use versioning files but only git tags, specify the "-" string here.
|
|
14
|
+
# You can specify multiple version files by comma separated strings.
|
|
15
|
+
#
|
|
16
|
+
# tagpr.vPrefix
|
|
17
|
+
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
|
|
18
|
+
# This is only a tagging convention, not how it is described in the version file.
|
|
19
|
+
#
|
|
20
|
+
# tagpr.changelog (Optional)
|
|
21
|
+
# Flag whether or not changelog is added or changed during the release.
|
|
22
|
+
#
|
|
23
|
+
# tagpr.command (Optional)
|
|
24
|
+
# Command to change files just before release.
|
|
25
|
+
#
|
|
26
|
+
# tagpr.template (Optional)
|
|
27
|
+
# Pull request template in go template format
|
|
28
|
+
#
|
|
29
|
+
# tagpr.release (Optional)
|
|
30
|
+
# GitHub Release creation behavior after tagging [true, draft, false]
|
|
31
|
+
# If this value is not set, the release is to be created.
|
|
32
|
+
#
|
|
33
|
+
# tagpr.majorLabels (Optional)
|
|
34
|
+
# Label of major update targets. Default is [major]
|
|
35
|
+
#
|
|
36
|
+
# tagpr.minorLabels (Optional)
|
|
37
|
+
# Label of minor update targets. Default is [minor]
|
|
38
|
+
#
|
|
39
|
+
[tagpr]
|
|
40
|
+
vPrefix = true
|
|
41
|
+
releaseBranch = main
|
|
42
|
+
versionFile = lib/komeda/version.rb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,19 @@
|
|
|
1
|
-
##
|
|
2
|
-
|
|
1
|
+
## [v0.1.6](https://github.com/ytkg/komeda/compare/v0.1.5...v0.1.6) - 2024-02-19
|
|
2
|
+
- Update menu data by @github-actions in https://github.com/ytkg/komeda/pull/18
|
|
3
3
|
|
|
4
|
-
## v0.1.4
|
|
5
|
-
|
|
4
|
+
## [v0.1.5](https://github.com/ytkg/komeda/compare/v0.1.4...v0.1.5) - 2024-02-06
|
|
5
|
+
- Update menu data by @github-actions in https://github.com/ytkg/komeda/pull/16
|
|
6
6
|
|
|
7
|
+
## [v0.1.4](https://github.com/ytkg/komeda/compare/v0.1.3...v0.1.4)
|
|
7
8
|
- Update menu data (https://github.com/ytkg/komeda/pull/13)
|
|
8
9
|
|
|
9
|
-
## v0.1.3
|
|
10
|
-
[full changelog](http://github.com/ytkg/komeda/compare/v0.1.2...v0.1.3)
|
|
11
|
-
|
|
10
|
+
## [v0.1.3](http://github.com/ytkg/komeda/compare/v0.1.2...v0.1.3)
|
|
12
11
|
- Fix menus file path (https://github.com/ytkg/komeda/pull/12)
|
|
13
12
|
|
|
14
|
-
## v0.1.2
|
|
15
|
-
[full changelog](http://github.com/ytkg/komeda/compare/v0.1.1...v0.1.2)
|
|
16
|
-
|
|
13
|
+
## [v0.1.2](http://github.com/ytkg/komeda/compare/v0.1.1...v0.1.2)
|
|
17
14
|
- Update menu data (https://github.com/ytkg/komeda/pull/11)
|
|
18
15
|
|
|
19
|
-
## v0.1.1
|
|
20
|
-
[full changelog](http://github.com/ytkg/komeda/compare/v0.1.0...v0.1.1)
|
|
16
|
+
## [v0.1.1](http://github.com/ytkg/komeda/compare/v0.1.0...v0.1.1)
|
|
21
17
|
|
|
22
18
|
## v0.1.0
|
|
23
|
-
|
|
24
19
|
- Initial release
|
data/config/menus.yaml
CHANGED
|
@@ -69,7 +69,7 @@ all:
|
|
|
69
69
|
description: 蜂蜜の香りと甘みがコーヒーの旨味をぐっと引きたてます。※本商品には「はちみつ」を使用しているため、1歳未満の乳児には与えないで ください。
|
|
70
70
|
- &21
|
|
71
71
|
name: ジェリコ 元祖
|
|
72
|
-
description:
|
|
72
|
+
description: コーヒージェリーとアイスコーヒーを組み合わせて 仕上げにホイップをのせた、ほろ苦い大人の飲むスイーツ。
|
|
73
73
|
- &22
|
|
74
74
|
name: カフェインレスアイスコーヒー
|
|
75
75
|
description: |-
|
|
@@ -442,7 +442,7 @@ all:
|
|
|
442
442
|
- &119
|
|
443
443
|
name: ビーフシチュー
|
|
444
444
|
description: |-
|
|
445
|
-
|
|
445
|
+
じっくり煮込んだごろごろビーフのシチューに、ポテトサラダとチーズを合わせるのがコメダ流。
|
|
446
446
|
本商品に使用しているチーズは加熱処理済みです。
|
|
447
447
|
- &120
|
|
448
448
|
name: ポテトバスケット
|
data/lib/komeda/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: komeda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yoshiki Takagi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-02-
|
|
11
|
+
date: 2024-02-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
|
61
61
|
files:
|
|
62
62
|
- ".rspec"
|
|
63
63
|
- ".rubocop.yml"
|
|
64
|
+
- ".tagpr"
|
|
64
65
|
- CHANGELOG.md
|
|
65
66
|
- CODE_OF_CONDUCT.md
|
|
66
67
|
- Gemfile
|
|
@@ -97,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
97
98
|
- !ruby/object:Gem::Version
|
|
98
99
|
version: '0'
|
|
99
100
|
requirements: []
|
|
100
|
-
rubygems_version: 3.3
|
|
101
|
+
rubygems_version: 3.5.3
|
|
101
102
|
signing_key:
|
|
102
103
|
specification_version: 4
|
|
103
104
|
summary: Komeda's coffee menu data
|