flexdot 3.3.0 → 3.4.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/.github/workflows/test.yml +12 -12
- data/README.md +1 -1
- data/flexdot.gemspec +1 -1
- data/lib/flexdot/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65c16358e0213298deaf8a7de7af3f08df723b098fb65f8ac80822bac7669ecb
|
|
4
|
+
data.tar.gz: 502a030fa9dae8f2c82be1131157b28a2027731ccac2cb76c932d9371cc074ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50dffc8b877c4a91595c68314aae51129da3f1addd02f36423240cb56394bbaf13088487163315f4a0cdaf75215cc42f90fd0ecc98c08da8ef0bc07c6acf80fc
|
|
7
|
+
data.tar.gz: d22f233daaa40d98cd2f7c435e80be593ad0d2c78de827cb19d2d59d680ef37af974a6e708772136178fb1cf3eb6fcccb5d273416af76e71bc41a446b23ea423
|
data/.github/workflows/test.yml
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
|
|
2
2
|
name: Test
|
|
3
3
|
|
|
4
|
-
on:
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
- 'dev**'
|
|
9
|
+
pull_request:
|
|
5
10
|
|
|
6
11
|
jobs:
|
|
7
12
|
test:
|
|
8
13
|
name: Test on ruby ${{ matrix.ruby_version }}
|
|
9
14
|
runs-on: ubuntu-latest
|
|
10
15
|
|
|
11
|
-
# Run this build only on either pull request or push.
|
|
12
|
-
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
|
13
|
-
|
|
14
16
|
strategy:
|
|
15
17
|
matrix:
|
|
16
18
|
ruby_version:
|
|
17
|
-
- 2.7
|
|
18
19
|
- '3.0'
|
|
19
|
-
- 3.1
|
|
20
|
+
- '3.1'
|
|
21
|
+
- '3.2'
|
|
22
|
+
- '3.3'
|
|
23
|
+
|
|
20
24
|
steps:
|
|
21
|
-
- uses: actions/checkout@
|
|
25
|
+
- uses: actions/checkout@v3
|
|
22
26
|
|
|
23
27
|
- name: Set up Ruby ${{ matrix.ruby_version }}
|
|
24
28
|
uses: ruby/setup-ruby@v1
|
|
25
29
|
with:
|
|
26
30
|
ruby-version: ${{ matrix.ruby_version }}
|
|
27
|
-
|
|
28
|
-
- name: Install dependencies
|
|
29
|
-
run: |
|
|
30
|
-
gem install bundler
|
|
31
|
-
bundle install --jobs 4 --retry 3
|
|
31
|
+
bundler-cache: true
|
|
32
32
|
|
|
33
33
|
- name: Run tests
|
|
34
34
|
run: bundle exec rake test
|
data/README.md
CHANGED
data/flexdot.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.description = 'Flexdot is a Flexible and Rake based dotfile manager'
|
|
11
11
|
spec.homepage = 'https://github.com/hidakatsuya/flexdot'
|
|
12
12
|
spec.license = 'MIT'
|
|
13
|
-
spec.required_ruby_version = Gem::Requirement.new('>=
|
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
|
|
14
14
|
|
|
15
15
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
16
16
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test)/}) }
|
data/lib/flexdot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flexdot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katsuya Hidaka
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -66,7 +66,7 @@ homepage: https://github.com/hidakatsuya/flexdot
|
|
|
66
66
|
licenses:
|
|
67
67
|
- MIT
|
|
68
68
|
metadata: {}
|
|
69
|
-
post_install_message:
|
|
69
|
+
post_install_message:
|
|
70
70
|
rdoc_options: []
|
|
71
71
|
require_paths:
|
|
72
72
|
- lib
|
|
@@ -74,15 +74,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
74
74
|
requirements:
|
|
75
75
|
- - ">="
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
version:
|
|
77
|
+
version: 3.0.0
|
|
78
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
83
|
requirements: []
|
|
84
|
-
rubygems_version: 3.
|
|
85
|
-
signing_key:
|
|
84
|
+
rubygems_version: 3.4.6
|
|
85
|
+
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: A Flexible and Rake based dotfile manager
|
|
88
88
|
test_files: []
|