happy_gemfile 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 +14 -1
- data/lib/happy_gemfile/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7e0fa0b62d27a3895ac68b3bca04556c7ae12dc
|
4
|
+
data.tar.gz: f825ed10b04f2021b16fd541e404c423e2f6185c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13ca0138945636c095ccd22d1b2730eb4f9a1ce554ed85d058a55dd43f31f0fdc69cb28b1fef344e9c886271c0207fdad1e3c3309926e24d02baf811a96cae64
|
7
|
+
data.tar.gz: e3296e5f60f269459b7e35c865da78d3d89a734235bd02f78787391a2b216b1884ab66fc4d4631e8ac1e5582e72fbcc67cf1099c2363e82ae15f29d3e46d1a2b
|
data/README.md
CHANGED
@@ -14,7 +14,7 @@ And then execute:
|
|
14
14
|
|
15
15
|
$ bundle
|
16
16
|
|
17
|
-
Or install it yourself
|
17
|
+
Or install it yourself with:
|
18
18
|
|
19
19
|
$ gem install happy_gemfile
|
20
20
|
|
@@ -25,6 +25,19 @@ You can call the executable in the directory with the gemfile to be spruced up!
|
|
25
25
|
$ happy_gemfile
|
26
26
|
```
|
27
27
|
|
28
|
+
But nothing will happen without arguments!
|
29
|
+
```bash
|
30
|
+
happy_gemfile alphabetize # alphabetizes gems in place; reminds me of grade school.
|
31
|
+
|
32
|
+
happy_gemfile wipe_comments # clears all, non-inline, comments; you know what you're doing, right?
|
33
|
+
|
34
|
+
happy_gemfile organize_groups # places gems tidily their specified group; home sweet home!
|
35
|
+
|
36
|
+
happy_gemfile all # one arg to call them all! (RECOMMENDED)
|
37
|
+
|
38
|
+
```
|
39
|
+
|
40
|
+
|
28
41
|
Alternatively, you can call the alphabetize method directly in your app, say, in your config.rb.
|
29
42
|
```ruby
|
30
43
|
HappyGemfile.alphabetize
|