psychgus 1.3.5 → 1.3.7

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: aa00bfe0768a30b9679056fe748769e53827b254d8899bcaacc032fc236e5791
4
- data.tar.gz: 46a834b2f517190e9c6b28e6f87964a186c69b7b2bdaf45465d59f2ac1f06603
3
+ metadata.gz: ffadac29265886dcd2b06d12d45405cb7a204ca891dff23c2d67a5f8cdf2f454
4
+ data.tar.gz: e3648eebf1425c030b6dadfa580a4a41d1ef562b16e652204eb1ec4577e74f5c
5
5
  SHA512:
6
- metadata.gz: 3bcbf539c47cfb64273682b0d1fa76c3745e523e0a792f2a9dec92e1df80352c6c987762edcebd9fc21bccc36450619b42572f5e37fe66e5002ffad2e2e15eb6
7
- data.tar.gz: 338ffe5daaafb1ddc79fac1f939058928d839f64f96bd3c8198bbda7f8426da0fea04ab6fead6b114628d64466901499c844bdc14fa55d8795f05d34b89d11ec
6
+ metadata.gz: e6b41b74666b0de6f2cde69261f7958b113b4e030d35fe01cae9c11e3dc1a9a5738c777328bdc48497e831d8d8d0008c0e15562ed772487b09fd5cc0a3635283
7
+ data.tar.gz: eaa81c7b6b374aa09c9a959af0d788bdaa86567783eb78fc64e1a49b9d9d5a947a14feaf08912351b6030c5b16efc8de1e91627a000d8936be4165e5db887858
data/.yardopts CHANGED
@@ -1,5 +1,3 @@
1
1
  --files 'LICENSE.txt,CHANGELOG.md'
2
2
  --protected
3
3
  --readme 'README.md'
4
- --template-path 'yard/templates'
5
- --title 'Psychgus'
data/CHANGELOG.md CHANGED
@@ -1,11 +1,22 @@
1
1
  # Changelog | Psychgus
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+ - [Keep a Changelog v1.0.0](https://keepachangelog.com/en/1.0.0)
4
+ - [Semantic Versioning v2.0.0](https://semver.org/spec/v2.0.0.html)
4
5
 
5
- Format is based on [Keep a Changelog v1.0.0](https://keepachangelog.com/en/1.0.0),
6
- and this project adheres to [Semantic Versioning v2.0.0](https://semver.org/spec/v2.0.0.html).
7
6
 
8
- ## [[Unreleased]](https://github.com/esotericpig/psychgus/compare/v1.3.5...HEAD)
7
+ ## [v1.3.7] - 2025-05-01
8
+ ### Fixed
9
+ - Fixed up code examples in README and doc.
10
+
11
+
12
+ ## [v1.3.6] - 2025-05-01
13
+ ### Fixed
14
+ - Fixed deref aliases for Psych v5.2.0+.
15
+
16
+ ### Changed
17
+ - Renamed `master` branch to `main`.
18
+ - Applied RuboCop suggestions.
19
+ - Refactored tests.
9
20
 
10
21
 
11
22
  ## [v1.3.5] - 2024-09-06
data/Gemfile CHANGED
@@ -3,16 +3,16 @@
3
3
 
4
4
  source 'https://rubygems.org'
5
5
 
6
- group(:development) do
6
+ group(:development,:test) do
7
7
  # Build.
8
- gem 'bundler' ,'~> 2.5'
8
+ gem 'bundler' ,'~> 2.6'
9
9
  gem 'rake' ,'~> 13.2'
10
10
 
11
11
  # Doc.
12
- gem 'rdoc' ,'~> 6.7' # RDoc for YARD (*.rb).
13
- gem 'redcarpet' ,'~> 3.6' # Markdown for YARD (*.md).
12
+ gem 'rdoc' ,'~> 6.13' # RDoc (*.rb).
13
+ gem 'redcarpet' ,'~> 3.6' # Markdown (*.md).
14
14
  gem 'yard' ,'~> 0.9' # Doc.
15
- gem 'yard_ghurt','~> 1.2' # YARD GitHub rake tasks.
15
+ gem 'yard_ghurt','~> 1.2' # Rake tasks for fixing YARD.
16
16
  end
17
17
 
18
18
  group(:test) do