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.
- checksums.yaml +4 -4
- data/README.md +8 -8
- data/lib/erbfmt/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: acf20151d41c419172ae25c4a68cbf9159955f231c2331a7af35639c26ada380
|
|
4
|
+
data.tar.gz: 011f1ed1e1086d91a58dddc454162992f8b8920a6b1290000c3fa99d94c281e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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.
|
|
50
|
-
https://github.com/hinamimi/erbfmt/releases/download/v0.2.
|
|
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.
|
|
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.
|
|
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.
|
|
102
|
-
ruby scripts/version.rb verify 0.2.
|
|
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:
|
data/lib/erbfmt/version.rb
CHANGED