syntax_tree-no_alignment 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 +4 -4
- data/README.md +3 -4
- data/lib/syntax_tree/no_alignment/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: deeb4078c60ea945a5436d3fa1b932a3c9408862ded91c78a06b8b22dd28f015
|
4
|
+
data.tar.gz: bb8e995f8f7b9eee2e1781dee8f4a6f722870c3b0cf37645823c02d76129f031
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d097d97b1e3fd78b367ae656b618fd19ce3eadd5238c1f90db3ac45258a2a25fa273675db257caf05df2b9015d38925da29d967dcae5d7dddad4d7f22a9c18a5
|
7
|
+
data.tar.gz: 9a7a8d0314518efc25b0c4b0298c6192a0368b9e1e6a926749b78e5ed4240e883900dcbe4b87f108f960ffb5854e2e83649f7e638ccf15b57770869e5cf6f256
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@ SyntaxTree gem can format your Ruby code and I think it's pretty good at that!
|
|
4
4
|
Despite not having many configuration options, it does have a plugin system
|
5
5
|
for people who want to change a thing or two in its behavior.
|
6
6
|
|
7
|
-
There are 2 common ways to [align arguments in a multiline method call]
|
7
|
+
There are 2 common ways to [align arguments in a multiline method call][rubocop_rule]:
|
8
8
|
|
9
9
|
- align them to the first argument
|
10
10
|
- use fixed indentation
|
@@ -48,9 +48,8 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
48
48
|
## Usage
|
49
49
|
|
50
50
|
Example:
|
51
|
-
|
52
|
-
stree write --plugins=no_alignment lib/**/*.rb
|
53
|
-
```
|
51
|
+
|
52
|
+
$ stree write --plugins=no_alignment lib/**/*.rb
|
54
53
|
|
55
54
|
## Contributing
|
56
55
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: syntax_tree-no_alignment
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomasz Szczęśniak-Szlagowski
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: syntax_tree
|
@@ -60,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
62
|
requirements: []
|
63
|
-
rubygems_version: 3.
|
63
|
+
rubygems_version: 3.5.11
|
64
64
|
signing_key:
|
65
65
|
specification_version: 4
|
66
66
|
summary: A Syntax Tree plugin disabling argument alignment
|