mac_cleaner 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ceca408d76e1b377b62baaa1adbc78fc9d4dfe8be15dd21f8e2e4157657aa1b0
4
- data.tar.gz: dae5536d6035f67546136f12ffe1fc52d602bdffc8dd5eeba120fec2313c4cd7
3
+ metadata.gz: 798e1fb145bf3e42e1dbdd3f0ff730ef8791c39319da30dd71e934bfb4bd63e3
4
+ data.tar.gz: 0e157805a9d9597173f17bafd3954c807869d41d13bc4b8c66db14cac38bb176
5
5
  SHA512:
6
- metadata.gz: 83ed6a6c96149e14593ececab64b0a88110ca6fda5d1d4ff3a5072c078febc190d372631edaa25982311a32f290560522564d8411a2dd0dae1ab6ec6adc07e84
7
- data.tar.gz: 8cf8d948c812075b068479e25737a0d43999831f2dea87a018d6d62fe8c1049d96bb27076f88173ed91d4bd4ae1939669d768402ee9e8ce8e5c215c14014d909
6
+ metadata.gz: ead2932fe815b080bee1190c31bb1319a492d3b1ea044ac1cdbe455a08c78736019ce0b225212051c812b9a0160b4a324f9c039aefffe0c03b5e4205a9599309
7
+ data.tar.gz: 45f114b1dd0045852e30237e301797d9ba0cbd8a630d9a05f3318cdb24a653f214abefc7108992715695c8adc6d39f46d7adb5f1ae4fe05460f8a7857c04b56d
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # Mac Cleaner
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/mac_cleaner.svg)](https://badge.fury.io/rb/mac_cleaner)
4
+
5
+ [!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/ojisanchamchi)
6
+
7
+ A script to clean your Mac and analyze disk space.
8
+
9
+ ## Installation
10
+
11
+ ### From RubyGems
12
+
13
+ ```bash
14
+ gem install mac_cleaner
15
+ ```
16
+
17
+ ### From the `.gem` file
18
+
19
+ ```bash
20
+ gem install ./mac_cleaner-1.0.0.gem
21
+ ```
22
+
23
+ ### From the git repository
24
+
25
+ ```bash
26
+ git clone https://github.com/ojisanchamchi/mac_cleaner.git
27
+ cd mac_cleaner
28
+ rake install
29
+ ```
30
+
31
+ ## Usage
32
+
33
+ ### Clean up your Mac
34
+
35
+ ```bash
36
+ mac_cleaner clean
37
+ ```
38
+
39
+ #### Options
40
+
41
+ * `--dry-run`, `-n`: Perform a dry run without deleting files.
42
+ * `--sudo`: Run with sudo for system-level cleanup.
43
+
44
+ ### Analyze disk space
45
+
46
+ ```bash
47
+ mac_cleaner analyze [PATH]
48
+ ```
49
+
50
+ #### Arguments
51
+
52
+ * `PATH`: The path to analyze. Defaults to `~`.
data/exe/mac_cleaner ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "mac_cleaner"
4
+
5
+ MacCleaner::CLI.start(ARGV)