rbnotes 0.4.20 → 0.4.21

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: c983ec2e16d7e384a8b1ba50cd79ed327a1b69cf415c471becfb19dfd71ba5a2
4
- data.tar.gz: 2147e0b2c7564fc18f664dbd39ee597dbb642a8e6b42575d71078c5cc85cc8c4
3
+ metadata.gz: 29c624241fbfb8377565617bbb8313a225bcade6dbbad9bc22711b1edc44588e
4
+ data.tar.gz: d91950eeeba599c6807860ebfd0c9dbaab235441bced620c1441abc7dbd710e9
5
5
  SHA512:
6
- metadata.gz: f2389e447037b2b9a5a9f2136b435c44cc86bc8f1b84da057ffe9b1474132564034baf539e946dc74aeafa7ba609cd81bd32c1036c60991b1959e691523a3ad9
7
- data.tar.gz: 257fd944e264ae91780b63a9b37bfca1658943e2098ca4a007e49f05b875e4c496d475e10299496c4d397ffaa6cefe23549267bd3a0a07c8a5d6f658a37e2941
6
+ metadata.gz: 992d4ac0aa2c1cef5413ecf6229569f9e080c38a439e548c7728b7e569f8e4e09521d3278041342edfa4e19a1bda2b2f90ce6597683da177cf25bff16baec04c
7
+ data.tar.gz: f9bc08bf6eab09f7183e9d0a8aeb4708ba660a99ceca3867d037f64f1602258aec01be11e2d71a35a78f2684d8f65074c356fe2a3caae2848f43020cb6d888d5
@@ -6,13 +6,11 @@ jobs:
6
6
  build:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
- - uses: actions/checkout@v2
9
+ - uses: actions/checkout@v4
10
10
  - name: Set up Ruby
11
11
  uses: ruby/setup-ruby@v1
12
12
  with:
13
- ruby-version: 3.1.0
13
+ ruby-version: 3.3
14
+ bundler-cache: true
14
15
  - name: Run the default task
15
- run: |
16
- gem install bundler -v 2.2.3
17
- bundle install
18
- bundle exec rake
16
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
+ Gemfile.lock
1
2
  *.gem
2
3
  *.rbc
3
4
  /.config
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/).
6
6
 
7
7
  ## [Unreleased]
8
+ - (nothing)
9
+
10
+ ## [0.4.21] - 2022-11-03
11
+ - Use ruby 3.3.5.
12
+ - Remove the codefactor badge from `README.md`
13
+ - Add copyright year (2024) to `LICENSE`.
14
+ - Fix issue #135: incomplete timestamp patterns are acceptable.
8
15
  - Fix issue #133: some tests fail.
9
16
 
10
17
  ## [0.4.20] - 2022-12-03
data/Gemfile CHANGED
@@ -3,7 +3,7 @@ source "https://rubygems.org"
3
3
  # Specify your gem's dependencies in rbnotes.gemspec
4
4
  gemspec
5
5
 
6
- gem "rake", "~> 13.0"
7
- gem "minitest", "~> 5.0"
6
+ gem "rake", "~> 13.1"
7
+ gem "minitest", "~> 5.20"
8
8
 
9
- gem 'textrepo', "~> 0.5.9"
9
+ gem 'textrepo', "~> 0.5.10"
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2020, 2021 mnbi
3
+ Copyright (c) 2020, 2021, 2024 mnbi
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Rbnotes
2
2
 
3
3
  [![Build Status](https://github.com/mnbi/rbnotes/workflows/Build/badge.svg)](https://github.com/mnbi/rbnotes/actions?query=workflow%3A"Build")
4
- [![CodeFactor](https://www.codefactor.io/repository/github/mnbi/rbnotes/badge)](https://www.codefactor.io/repository/github/mnbi/rbnotes)
5
4
 
6
5
  Rbnotes is a simple utility to write a note in the single repository.
7
6
 
@@ -1,4 +1,4 @@
1
1
  module Rbnotes
2
- VERSION = "0.4.20"
3
- RELEASE = "2022-12-03"
2
+ VERSION = "0.4.21"
3
+ RELEASE = "2024-11-03"
4
4
  end
data/rbnotes.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.description = %q{Rbnotes allows you to write a note into a single repository.}
11
11
  spec.homepage = "https://github.com/mnbi/rbnotes"
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.3.0")
14
14
 
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
16
  spec.metadata["source_code_uri"] = "https://github.com/mnbi/rbnotes"
@@ -25,6 +25,8 @@ Gem::Specification.new do |spec|
25
25
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
26
  spec.require_paths = ["lib"]
27
27
 
28
- spec.add_dependency "textrepo", "~> 0.5.9"
29
- spec.add_dependency "unicode-display_width", "~> 1.8"
28
+ spec.add_dependency "textrepo", "~> 0.5.10"
29
+ spec.add_dependency "unicode-display_width", "~> 2.6"
30
+
31
+ spec.add_development_dependency "bundler", "~> 2.5"
30
32
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbnotes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.20
4
+ version: 0.4.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - mnbi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-03 00:00:00.000000000 Z
11
+ date: 2024-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: textrepo
@@ -16,28 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.5.9
19
+ version: 0.5.10
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.5.9
26
+ version: 0.5.10
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: unicode-display_width
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.8'
33
+ version: '2.6'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.8'
40
+ version: '2.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.5'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.5'
41
55
  description: Rbnotes allows you to write a note into a single repository.
42
56
  email:
43
57
  - mnbi@users.noreply.github.com
@@ -50,7 +64,6 @@ files:
50
64
  - ".gitignore"
51
65
  - CHANGELOG.md
52
66
  - Gemfile
53
- - Gemfile.lock
54
67
  - LICENSE
55
68
  - README.md
56
69
  - Rakefile
@@ -99,14 +112,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
99
112
  requirements:
100
113
  - - ">="
101
114
  - !ruby/object:Gem::Version
102
- version: 2.7.0
115
+ version: 3.3.0
103
116
  required_rubygems_version: !ruby/object:Gem::Requirement
104
117
  requirements:
105
118
  - - ">="
106
119
  - !ruby/object:Gem::Version
107
120
  version: '0'
108
121
  requirements: []
109
- rubygems_version: 3.3.11
122
+ rubygems_version: 3.5.18
110
123
  signing_key:
111
124
  specification_version: 4
112
125
  summary: A simple utility to write a note.
data/Gemfile.lock DELETED
@@ -1,26 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- rbnotes (0.4.20)
5
- textrepo (~> 0.5.9)
6
- unicode-display_width (~> 1.8)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- minitest (5.16.3)
12
- rake (13.0.6)
13
- textrepo (0.5.9)
14
- unicode-display_width (1.8.0)
15
-
16
- PLATFORMS
17
- x86_64-darwin-22
18
-
19
- DEPENDENCIES
20
- minitest (~> 5.0)
21
- rake (~> 13.0)
22
- rbnotes!
23
- textrepo (~> 0.5.9)
24
-
25
- BUNDLED WITH
26
- 2.3.11