Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
add randomcase & alternatecase
  • Loading branch information
noraj committed Aug 23, 2020
1 parent e2fd4b5 commit 662381b
Show file tree
Hide file tree
Showing 17 changed files with 459 additions and 26 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ctf-party (1.2.1)
ctf-party (1.3.0)

GEM
remote: https://rubygems.org/
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ myvar.to_b64!

## Features

- base64: `to_b64`, `to_b64!`, `from_b64`, `from_b64!`, `b64?`
- digest: `md5`, `md5!`, `sha1`, `sha1!`, etc.
- base64: `to_b64`, `from_b64`, `b64?` and bang versions
- digest: `md5`, `sha1`, etc. and bang versions
- flag: `flag`, `flag!`, `flag?` (apply/check a flag format)
- rot: `rot`, `rot!`, `rot13`, `rot13!`
- rot: `rot`, `rot13` and bang versions
- hex: `hex2dec`, `dec2hex`, `to_hex`, `from_hex`, `hex2bin`, `bin2hex` and bang versions
- case: `randomcase`, `alternatecase` and bang versions

## References

Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.3.0]

- new case methods:
- normal: `randomcase`, `alternatecase`
- in-place: `randomcase!`, `alternatecase!`

## [1.2.1]

- lib: code lint
Expand Down
7 changes: 4 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ myvar.to_b64!

## Features

- base64: `to_b64`, `to_b64!`, `from_b64`, `from_b64!`, `b64?`
- digest: `md5`, `md5!`, `sha1`, `sha1!`, etc.
- base64: `to_b64`, `from_b64`, `b64?` and bang versions
- digest: `md5`, `sha1`, etc. and bang versions
- flag: `flag`, `flag!`, `flag?` (apply/check a flag format)
- rot: `rot`, `rot!`, `rot13`, `rot13!`
- rot: `rot`, `rot13` and bang versions
- hex: `hex2dec`, `dec2hex`, `to_hex`, `from_hex`, `hex2bin`, `bin2hex` and bang versions
- case: `randomcase`, `alternatecase` and bang versions

## References

Expand Down
Loading

0 comments on commit 662381b

Please sign in to comment.