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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c373b333d8109e552863dc5e8dc1ce031d04b7344d80269c591408688cd70ade
4
- data.tar.gz: ee06b19abd37b90a35c0b9ced7a0c28a18c4d757f03318773763628efc1320f0
3
+ metadata.gz: 65c16358e0213298deaf8a7de7af3f08df723b098fb65f8ac80822bac7669ecb
4
+ data.tar.gz: 502a030fa9dae8f2c82be1131157b28a2027731ccac2cb76c932d9371cc074ec
5
5
  SHA512:
6
- metadata.gz: fe5589432db9a290342835c1799a8ff19f3e59df553e21b40de0bf059d6d8ea65ba0f1eb3a0929d5678d22ce47182e9d531c15d9486a19b71f68e80955ef6d0d
7
- data.tar.gz: 158067f3e822573f3d2a28b72b85f6dc4fb88afe532c9a2504c4cffff42720be1734a3b3e3253ec529cfc32e2f1f795e06119cf8448dec564a49652a104676af
6
+ metadata.gz: 50dffc8b877c4a91595c68314aae51129da3f1addd02f36423240cb56394bbaf13088487163315f4a0cdaf75215cc42f90fd0ecc98c08da8ef0bc07c6acf80fc
7
+ data.tar.gz: d22f233daaa40d98cd2f7c435e80be593ad0d2c78de827cb19d2d59d680ef37af974a6e708772136178fb1cf3eb6fcccb5d273416af76e71bc41a446b23ea423
@@ -1,34 +1,34 @@
1
1
 
2
2
  name: Test
3
3
 
4
- on: [push, pull_request]
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@v2
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
@@ -9,7 +9,7 @@ A Flexible and Rake based dotfile manager.
9
9
 
10
10
  ### Prerequisite
11
11
 
12
- Ruby 2.7+
12
+ Ruby 3.0+
13
13
 
14
14
  ### Installing
15
15
 
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('>= 2.7.0')
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)/}) }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Flexdot
4
- VERSION = '3.3.0'
4
+ VERSION = '3.4.0'
5
5
  end
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.3.0
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: 2022-05-22 00:00:00.000000000 Z
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: 2.7.0
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.3.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: []