rage_flip 1.0.1 → 1.2.0

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: 63cef068ded99a79213e516650f5c8af352e54d56b40fbac108655cf8534380b
4
- data.tar.gz: 276ecb0beecce2fdd08eeb99d42a41ced8eff9701a15ef060171ff8b416d617f
3
+ metadata.gz: 110abc7d7015e11a7caa27d88704c38712cfbb111b1ca66f6f913f387e756e68
4
+ data.tar.gz: 78e934a51e716668cc2e32280c084722823895082e88378c422367d4f548f900
5
5
  SHA512:
6
- metadata.gz: 58ad3abfe8d692cc13f3ab14131f58426f3a7e6463cab8d8442a217025ec16ddbe2eabe7e5e0f507a2f2ff02591c353318205200a2c499b121979e5846d9dcef
7
- data.tar.gz: bcb13ace487889aab8f435693ebd79f6d8aa23c35f91a33396520e32b7df36bb1df9ef4decd28ce00cc2383cf48de4e804bdb6261ca3640445a7955ee0f03b8b
6
+ metadata.gz: 95310bd67ef6264dac0b00bc80b0e526587413e5b9c16910118c83366be958987ce7fa4a775b3a30510cea5645ef740d17529cf0939191627e26260ee044db50
7
+ data.tar.gz: bde29f71409d10585180a35e6c0871843d05f7078e576bc29a97e8fb6ec038c5f2d2cffa24fcb2bb60e5d10a8bedaffec16de682446324b9b9c696515b5c4b48
data/CHANGELOG.md CHANGED
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Added
11
+ - `flip_text` command for flipping text without any emoticons
12
+ - `emote` command system with disapproval and animal+poop combinations
13
+ - `emote disapproval` outputs `(ಠ_ಠ)`
14
+ - `emote bullshit`, `catshit`, `dogshit`, `pandashit`, `horseshit`, `batshit` commands
15
+ - `emote list` to display all available emotes
16
+ - `table_flip` command with classic `(╯°□°)╯︵` and `┻━┻` emoticons
17
+
18
+ ## [1.0.1] - 2025-10-04
19
+
20
+ ### Added
21
+ - Persistent chaos level storage in `~/.chaos_level.txt`
22
+ - `chaos_level show` command to display current chaos level
23
+ - Chaos level minimum enforcement (cannot go below 1)
24
+
25
+ ### Changed
26
+ - Chaos level now persists across terminal sessions and reboots
27
+ - Removed dependency on `CHAOS_LEVEL` environment variable
28
+
29
+ ## [1.0.0] - 2025-10-03
30
+
10
31
  ### Added
11
32
  - Version management and release automation
12
33
 
data/Gemfile CHANGED
@@ -5,4 +5,5 @@ gemspec
5
5
  group :development, :test do
6
6
  gem "rspec"
7
7
  gem "rake"
8
- end
8
+ gem "standard"
9
+ end