itamae-plugin-recipe-tmux 0.1.3 → 0.1.5
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/.circleci/config.yml +8 -5
- data/.github/release.yml +31 -0
- data/.github/workflows/release_gem.yml +41 -0
- data/CHANGELOG.md +15 -1
- data/README.md +4 -4
- data/itamae-plugin-recipe-tmux.gemspec +5 -0
- data/lib/itamae/plugin/recipe/tmux/default.rb +1 -1
- data/lib/itamae/plugin/recipe/tmux/dependency.rb +2 -0
- data/lib/itamae/plugin/recipe/tmux/version.rb +1 -1
- data/mrblib +1 -1
- data/recipes/node.yml +3 -0
- metadata +10 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0015a5c3ac1eaa024dc1246f8b3d632f60a0a91f6272bdad0781c8fcc4f4d12
|
|
4
|
+
data.tar.gz: c33f72a16607b980032802ad73b4fc52b40cd200bc653e3e43ccb6a7fac77f09
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d44c69d72af29f20a4efc9254b93fb4410704d0d81a365e9f4809b3434f58316c2fd3b5852b67a53ff5eba2a29a5d7c15b234492af33ea8900b9061f74e37db
|
|
7
|
+
data.tar.gz: 6dd9b0c2a6210884d5f62c32d6a0cf53b99fb4f76f6029c488e52d1fc2afff1bc4ccd7b41c4dd213375e6e0eadcadf7ce9ba07151009d6429357d47558526637
|
data/.circleci/config.yml
CHANGED
|
@@ -7,7 +7,7 @@ orbs:
|
|
|
7
7
|
executors:
|
|
8
8
|
default:
|
|
9
9
|
docker:
|
|
10
|
-
- image:
|
|
10
|
+
- image: cimg/ruby:2.6
|
|
11
11
|
working_directory: ~/app
|
|
12
12
|
|
|
13
13
|
jobs:
|
|
@@ -52,11 +52,14 @@ jobs:
|
|
|
52
52
|
|
|
53
53
|
build_jobs: &build_jobs
|
|
54
54
|
- build:
|
|
55
|
-
name:
|
|
56
|
-
image:
|
|
55
|
+
name: debian:bullseye
|
|
56
|
+
image: debian:bullseye
|
|
57
57
|
- build:
|
|
58
|
-
name: debian:
|
|
59
|
-
image: debian:
|
|
58
|
+
name: debian:bookworm
|
|
59
|
+
image: debian:bookworm
|
|
60
|
+
- build:
|
|
61
|
+
name: debian:trixie
|
|
62
|
+
image: debian:trixie
|
|
60
63
|
|
|
61
64
|
workflows:
|
|
62
65
|
version: 2
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
|
|
2
|
+
|
|
3
|
+
changelog:
|
|
4
|
+
exclude:
|
|
5
|
+
labels:
|
|
6
|
+
- chore
|
|
7
|
+
|
|
8
|
+
categories:
|
|
9
|
+
- title: ":bomb: Breaking Changes"
|
|
10
|
+
labels:
|
|
11
|
+
- breaking change
|
|
12
|
+
|
|
13
|
+
- title: ":lock: Security Fix"
|
|
14
|
+
labels:
|
|
15
|
+
- security
|
|
16
|
+
|
|
17
|
+
- title: ":rocket: Features"
|
|
18
|
+
labels:
|
|
19
|
+
- enhancement
|
|
20
|
+
|
|
21
|
+
- title: ":bug: Bug Fixes"
|
|
22
|
+
labels:
|
|
23
|
+
- bug
|
|
24
|
+
|
|
25
|
+
- title: ":dependabot: Dependency updates"
|
|
26
|
+
labels:
|
|
27
|
+
- dependencies
|
|
28
|
+
|
|
29
|
+
- title: ":pencil: Other Changes"
|
|
30
|
+
labels:
|
|
31
|
+
- "*"
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
if: github.repository == 'sue445/itamae-plugin-recipe-tmux'
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
environment:
|
|
12
|
+
name: rubygems.org
|
|
13
|
+
url: https://rubygems.org/gems/itamae-plugin-recipe-tmux
|
|
14
|
+
|
|
15
|
+
permissions:
|
|
16
|
+
contents: write
|
|
17
|
+
id-token: write
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- name: Harden Runner
|
|
21
|
+
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
|
|
22
|
+
with:
|
|
23
|
+
egress-policy: audit
|
|
24
|
+
|
|
25
|
+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
26
|
+
|
|
27
|
+
- name: Set up Ruby
|
|
28
|
+
uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
|
|
29
|
+
with:
|
|
30
|
+
bundler-cache: true
|
|
31
|
+
ruby-version: ruby
|
|
32
|
+
|
|
33
|
+
- name: Publish to RubyGems
|
|
34
|
+
uses: rubygems/release-gem@1c162a739e8b4cb21a676e97b087e8268d8fc40b # v1.1.2
|
|
35
|
+
|
|
36
|
+
- name: Create GitHub release
|
|
37
|
+
run: |
|
|
38
|
+
tag_name="$(git describe --tags --abbrev=0)"
|
|
39
|
+
gh release create "${tag_name}" --verify-tag --generate-notes
|
|
40
|
+
env:
|
|
41
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
## [Unreleased](https://github.com/sue445/itamae-plugin-recipe-tmux/tree/HEAD)
|
|
4
|
-
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.
|
|
4
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.5...HEAD)
|
|
5
|
+
|
|
6
|
+
## [v0.1.5](https://github.com/sue445/itamae-plugin-recipe-tmux/releases/tag/v0.1.5) (2025/12/06)
|
|
7
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.4...v0.1.5)
|
|
8
|
+
|
|
9
|
+
* Fixed error that occurred when building with Debian bookworm+
|
|
10
|
+
* https://github.com/sue445/itamae-plugin-recipe-tmux/pull/28
|
|
11
|
+
* Release gem from GitHub Actions
|
|
12
|
+
* https://github.com/sue445/itamae-plugin-recipe-tmux/pull/29
|
|
13
|
+
|
|
14
|
+
## [v0.1.4](https://github.com/sue445/itamae-plugin-recipe-tmux/tree/v0.1.4) (2021/11/20)
|
|
15
|
+
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.3...v0.1.4)
|
|
16
|
+
|
|
17
|
+
* Enable MFA requirement for gem releasing
|
|
18
|
+
* https://github.com/sue445/itamae-plugin-recipe-tmux/pull/25
|
|
5
19
|
|
|
6
20
|
## [v0.1.3](https://github.com/sue445/itamae-plugin-recipe-tmux/tree/v0.1.3) (2020/12/06)
|
|
7
21
|
[Full Changelog](https://github.com/sue445/itamae-plugin-recipe-tmux/compare/v0.1.2...v0.1.3)
|
data/README.md
CHANGED
|
@@ -45,12 +45,12 @@ tmux:
|
|
|
45
45
|
version: 2.1
|
|
46
46
|
|
|
47
47
|
libevent:
|
|
48
|
-
# install version (default: 2.
|
|
49
|
-
version: 2.
|
|
50
|
-
|
|
48
|
+
# install version (default: 2.1.12)
|
|
49
|
+
version: 2.1.12
|
|
50
|
+
|
|
51
51
|
ncurses:
|
|
52
52
|
# install version (default: 6.0)
|
|
53
|
-
version: 6.0
|
|
53
|
+
version: 6.0
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
## Development
|
|
@@ -14,6 +14,11 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.homepage = "https://github.com/sue445/itamae-plugin-recipe-tmux"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
|
19
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
20
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
|
21
|
+
|
|
17
22
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
23
|
spec.bindir = "exe"
|
|
19
24
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
data/mrblib
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
lib
|
data/recipes/node.yml
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: itamae-plugin-recipe-tmux
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: itamae
|
|
@@ -88,6 +87,8 @@ extensions: []
|
|
|
88
87
|
extra_rdoc_files: []
|
|
89
88
|
files:
|
|
90
89
|
- ".circleci/config.yml"
|
|
90
|
+
- ".github/release.yml"
|
|
91
|
+
- ".github/workflows/release_gem.yml"
|
|
91
92
|
- ".github_changelog_generator"
|
|
92
93
|
- ".gitignore"
|
|
93
94
|
- ".rspec"
|
|
@@ -112,8 +113,11 @@ files:
|
|
|
112
113
|
homepage: https://github.com/sue445/itamae-plugin-recipe-tmux
|
|
113
114
|
licenses:
|
|
114
115
|
- MIT
|
|
115
|
-
metadata:
|
|
116
|
-
|
|
116
|
+
metadata:
|
|
117
|
+
homepage_uri: https://github.com/sue445/itamae-plugin-recipe-tmux
|
|
118
|
+
source_code_uri: https://github.com/sue445/itamae-plugin-recipe-tmux
|
|
119
|
+
changelog_uri: https://github.com/sue445/itamae-plugin-recipe-tmux/blob/master/CHANGELOG.md
|
|
120
|
+
rubygems_mfa_required: 'true'
|
|
117
121
|
rdoc_options: []
|
|
118
122
|
require_paths:
|
|
119
123
|
- lib
|
|
@@ -128,8 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
128
132
|
- !ruby/object:Gem::Version
|
|
129
133
|
version: '0'
|
|
130
134
|
requirements: []
|
|
131
|
-
rubygems_version: 3.
|
|
132
|
-
signing_key:
|
|
135
|
+
rubygems_version: 3.6.9
|
|
133
136
|
specification_version: 4
|
|
134
137
|
summary: Itamae plugin to install tmux without any packages
|
|
135
138
|
test_files: []
|