erbfmt 0.2.0 → 0.2.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -8
  3. data/lib/erbfmt/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b0deba8372df8716b8ff08a1e01fa3f0d7ac13f17b94a0015dd3119bfa096f3
4
- data.tar.gz: 8842df95feb9c5eb27c6dae623562a43a4898467433acc77f5dbf58e1f37f24e
3
+ metadata.gz: acf20151d41c419172ae25c4a68cbf9159955f231c2331a7af35639c26ada380
4
+ data.tar.gz: 011f1ed1e1086d91a58dddc454162992f8b8920a6b1290000c3fa99d94c281e0
5
5
  SHA512:
6
- metadata.gz: 468f33439db856ef9d25fd40519494e8c86364e244a5f20ccc2c9414137c930bbd2f9605040c2f7c66040300fd4aba02d4c359911d00a2fad754d04f5077ca26
7
- data.tar.gz: 6f24df9e128f89b2794ff0b4e0415e2b95cc5ee97bf82fa633837a77daec867871fa9a6047b6c2109c238605dd6a6aa04dfcc8fb2a79b6acc8a5344b05a1d2e2
6
+ metadata.gz: 63d3f4f9e77deb45e74eb6404b84ea4d43fd3a93b9f2aa05754d37f95de9835a0a9e034695c149ffd50bc413844a311286fdc34645f388e671eac6c758b57f4b
7
+ data.tar.gz: 9bbfbea6b16c6d240c2c7048f3c82d262bba6eb6a6d50cb0ce0bcf514bf2f8a4b7945f2263686842deb7299c193f950b3696589b2b553e1901a4146ed1849bcb
data/README.md CHANGED
@@ -25,7 +25,7 @@ end
25
25
  For a global local command, install erbfmt directly from RubyGems.org:
26
26
 
27
27
  ```bash
28
- gem install erbfmt -v 0.2.0
28
+ gem install erbfmt -v 0.2.1
29
29
  erbfmt --version
30
30
  ```
31
31
 
@@ -33,7 +33,7 @@ The global install is convenient for quick trials, but Bundler is preferred for
33
33
  project use because it pins the formatter version.
34
34
 
35
35
  RubyGems.org releases include platform-specific gems with the packaged Rust
36
- binary and may include `erbfmt-0.2.0.gem` as a binary-free Bundler fallback for
36
+ binary and may include `erbfmt-0.2.1.gem` as a binary-free Bundler fallback for
37
37
  multi-platform lockfiles. The fallback resolves dependency installation but
38
38
  needs either a matching platform gem or `ERBFMT_BINARY` to run.
39
39
 
@@ -46,10 +46,10 @@ unpacked path dependency:
46
46
 
47
47
  ```bash
48
48
  curl -L \
49
- -o erbfmt-0.2.0-x86_64-linux-gnu.gem \
50
- https://github.com/hinamimi/erbfmt/releases/download/v0.2.0/erbfmt-0.2.0-x86_64-linux-gnu.gem
49
+ -o erbfmt-0.2.1-x86_64-linux-gnu.gem \
50
+ https://github.com/hinamimi/erbfmt/releases/download/v0.2.1/erbfmt-0.2.1-x86_64-linux-gnu.gem
51
51
  mkdir -p vendor/gems
52
- gem unpack erbfmt-0.2.0-x86_64-linux-gnu.gem --target vendor/gems
52
+ gem unpack erbfmt-0.2.1-x86_64-linux-gnu.gem --target vendor/gems
53
53
  ```
54
54
 
55
55
  Add the unpacked gem to the project Gemfile:
@@ -57,7 +57,7 @@ Add the unpacked gem to the project Gemfile:
57
57
  ```ruby
58
58
  group :development do
59
59
  gem "erbfmt",
60
- path: "vendor/gems/erbfmt-0.2.0-x86_64-linux-gnu",
60
+ path: "vendor/gems/erbfmt-0.2.1-x86_64-linux-gnu",
61
61
  require: false
62
62
  end
63
63
  ```
@@ -98,8 +98,8 @@ The shared version check covers Cargo, this gem, the VSCode extension, and
98
98
  their lockfiles. Release versions are updated from the repository root:
99
99
 
100
100
  ```bash
101
- ruby scripts/version.rb set 0.2.0
102
- ruby scripts/version.rb verify 0.2.0
101
+ ruby scripts/version.rb set 0.2.1
102
+ ruby scripts/version.rb verify 0.2.1
103
103
  ```
104
104
 
105
105
  Build, install, and execute a local platform-specific gem in isolation:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Erbfmt
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erbfmt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - erbfmt contributors