yamlfish 0.1.0.rc3 → 0.1.0.rc4

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: 8a41671e059e352e76f132c0fbcd0106cc9a17cee26872cb8c78fbb44e9720a6
4
- data.tar.gz: 343c3d9fde40e58ab909f7ae79c938058875c00d305ecaa08f7ca842c50907c6
3
+ metadata.gz: c9f9f487b00f7a7c96974506a584a7a437fa015410320d33918f4dc644d97163
4
+ data.tar.gz: d81e5b8b6ece926871c4a342511f2ed891ce93a99479aa59606a807283f22644
5
5
  SHA512:
6
- metadata.gz: 7a55ee62dc45c611e6f5634b64b2ff4209735fcc514bd2a42ffe0fe4964da0e90b2e5fea2a8b2769ccc0a3a6963620e88c0b4390c55386cee6f80ad03b8e558a
7
- data.tar.gz: aff8fb4f4ede8bc7ed0a2a08ffb8bd2b1de9bd0ecda29e34fcb84a2561557d0071e6a0ab7d1821cbe370d41ba866cf63ed5c8813fc0ce94cab3ca9cc0ff5ea9a
6
+ metadata.gz: 07def78b64bf452f2dab86becf67be6c6bfb173f6f7f68484384de0e486441934fad5db0da36bfabad7686ddd974c7a0ab173751c6dbb242e2badc6b07217577
7
+ data.tar.gz: 1ee17872e6d82a7395027f178edc1f1e2114f8d92f9d20fa1ae17b58fc068d069b6dc7eca5cb682d76a4f544e00c446da5c554248327df8a52bc7ee08423e0f8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  <!-- ## [Unreleased] -->
2
2
 
3
+ ## [0.1.0.rc4] - 2025-03-22
4
+ * Fix emojis being converted to unicode when doing `yaml pull`
5
+
3
6
  ## [0.1.0.rc3] - 2024-09-08
4
7
  * Add `-k` / `--keep-unmentioned-keys` option to `push` command
5
8
 
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # YAMLFish CLI
2
2
 
3
- This is the command line interface for [YAMLFish](https:s://yamlfish.dev), the simple and powerful translation management platform.
3
+ This is the command line interface for [YAMLFish](https://yamlfish.dev), the simple and powerful translation management platform.
4
4
 
5
5
  ## Installation
6
6
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Yamlfish
4
4
  module Cli
5
- VERSION = "0.1.0.rc3"
5
+ VERSION = "0.1.0.rc4"
6
6
  end
7
7
  end
@@ -13,7 +13,10 @@ module Yamlfish
13
13
  node.style = Psych::Nodes::Scalar::LITERAL if node.value.include?("\n")
14
14
  end
15
15
 
16
- ast.yaml(nil, {line_width: -1})
16
+ ast.yaml(nil, {line_width: -1}).then do |yaml|
17
+ # Restore emojis
18
+ yaml.gsub(/\\u[\da-f]{8}/i) { |m| [m[-8..].to_i(16)].pack("U") }
19
+ end
17
20
  end
18
21
  end
19
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yamlfish
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.rc3
4
+ version: 0.1.0.rc4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Siami
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-08 00:00:00.000000000 Z
11
+ date: 2025-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor