inertia_i18n 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5d21515efb4733bc47d4a1f7b4964768893478366e101bfd4209c4cd45f3fee
4
- data.tar.gz: fd44f198a5d66b793459eac5ab9b0b43487e3c4d4abc9b5f1e2145a995ceacd3
3
+ metadata.gz: 9a4954965db51e0c477201a5fd1b3951c8442545556630e63fa733a429da252d
4
+ data.tar.gz: b5e20502b975c6a77a12a045432fe54c66026b26b5a78c0a5bf2472d83eb092d
5
5
  SHA512:
6
- metadata.gz: a54935ae8c875ba3b9baf3fadab5bc7033150da97eb72ed7c453b7dd14e315809df3cfc7ac58cf5f34eb0a426b1343a9cfe206da45e897a93e4ac20edc957b12
7
- data.tar.gz: 02f8b5b053cf02be28186c79a137935d83fd55c82c7e27f1c7a9531c46803e16a5aab8d8748f4c46576800f7322ce755c99154d26ae2c350360d7efbf95f6011
6
+ metadata.gz: f3d2a66d32aee58cdb436187dcfb75cef820322f80de05a042733343dfa913fe3fcf38259727c993ea44f21aec46d4d0b1be6d58bd47ad6e09c8df76a42d9057
7
+ data.tar.gz: 7f0b6a6857d5eba1602131f8f4e0ab7617e1c3c69da0d5c946c4a49b64daf109d0adb8fee89002808d8e0d1bffcfbf7de437420c27667ca1f70072f40c57af2c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2026-01-16
4
+
5
+ - Change generated test file paths to `spec/inertia_i18n_spec.rb` and `test/inertia_i18n_test.rb`
6
+
3
7
  ## [0.1.0] - 2026-01-06
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Translation management for Inertia.js applications with Rails backend
4
4
 
5
5
  [![Gem Version](https://badge.fury.io/rb/inertia_i18n.svg)](https://badge.fury.io/rb/inertia_i18n)
6
- [![Build Status](https://github.com/alec-c4/inertia_i18n/workflows/CI/badge.svg)](https://github.com/alec-c4/inertia_i18n/actions)
6
+ [![Build Status](https://github.com/alec-c4/inertia_i18n/actions/workflows/main.yml/badge.svg)](https://github.com/alec-c4/inertia_i18n/actions)
7
7
 
8
8
  ## The Problem
9
9
 
@@ -7,9 +7,9 @@ module InertiaI18n
7
7
 
8
8
  def create_test_file
9
9
  if rspec?
10
- template "i18n_spec.rb", "spec/inertia_i18n_health_spec.rb"
10
+ template "i18n_spec.rb", "spec/inertia_i18n_spec.rb"
11
11
  else
12
- template "i18n_test.rb", "test/inertia_i18n_health_test.rb"
12
+ template "i18n_test.rb", "test/inertia_i18n_test.rb"
13
13
  end
14
14
  end
15
15
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module InertiaI18n
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inertia_i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexey Poimtsev