jpie 0.3.0 → 0.3.1
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/CHANGELOG.md +6 -0
- data/jpie.gemspec +1 -1
- data/lib/jpie/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67c69b10983622f570ced09dfe95788999ebe45bbae24882d047db319204d237
|
4
|
+
data.tar.gz: 23bf36de8c560f109efbb3fd77b7cf963c90e216efcc1e7df94fac6fdad2c042
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb36641fc91e5be23485bac73d558ccb1f22bebe3924dc718eddfd2ef52b47ccfd37ef72fd90ea782fd96bb5ce4b5dacf038151464db033f69e52c7c272cd858
|
7
|
+
data.tar.gz: d70f6b5a1fdb6f17c470823045790ee1a9ec5964e68cfbacee7a8c52fc5a1a81c0de0f54214b4b86646abef6c06738870a7b00bde567481c37c86fd7e87d61d4
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [0.3.1] - 2025-01-24
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
- **Gemspec Metadata**: Updated homepage URL to correct GitHub repository (https://github.com/emk-klaay/jpie)
|
14
|
+
- **Documentation Links**: Fixed source code and changelog URLs in gem metadata
|
15
|
+
|
10
16
|
## [0.3.0] - 2025-01-24
|
11
17
|
|
12
18
|
### Added
|
data/jpie.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.summary = 'A resource-focused Rails library for developing JSON:API compliant servers'
|
12
12
|
spec.description = 'JPie provides a framework for developing JSON:API compliant servers with Rails 8+. ' \
|
13
13
|
'It focuses on clean architecture with strong separation of concerns.'
|
14
|
-
spec.homepage = 'https://github.com/
|
14
|
+
spec.homepage = 'https://github.com/emk-klaay/jpie'
|
15
15
|
spec.license = 'MIT'
|
16
16
|
spec.required_ruby_version = '>= 3.4.0'
|
17
17
|
|
data/lib/jpie/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jpie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emil Kampp
|
@@ -194,14 +194,14 @@ files:
|
|
194
194
|
- lib/jpie/resource/sortable.rb
|
195
195
|
- lib/jpie/serializer.rb
|
196
196
|
- lib/jpie/version.rb
|
197
|
-
homepage: https://github.com/
|
197
|
+
homepage: https://github.com/emk-klaay/jpie
|
198
198
|
licenses:
|
199
199
|
- MIT
|
200
200
|
metadata:
|
201
201
|
allowed_push_host: https://rubygems.org
|
202
|
-
homepage_uri: https://github.com/
|
203
|
-
source_code_uri: https://github.com/
|
204
|
-
changelog_uri: https://github.com/
|
202
|
+
homepage_uri: https://github.com/emk-klaay/jpie
|
203
|
+
source_code_uri: https://github.com/emk-klaay/jpie.git
|
204
|
+
changelog_uri: https://github.com/emk-klaay/jpie/blob/main/CHANGELOG.md
|
205
205
|
rubygems_mfa_required: 'true'
|
206
206
|
rdoc_options: []
|
207
207
|
require_paths:
|