postmodern / chars

A Ruby library for working with various character sets, recognizing text and generating random text from specific character sets.

postmodern (author)
Mon Sep 21 18:11:10 -0700 2009
commit  da44f4b8aa202f2e66e2c9bfea3895d9bbbaa640
tree    0eba3c3144a25060c7be64130f677e6740ac6a8c
parent  5f2d7f4bdeedbf625bcc0e5e64265964dbe570b2
chars / History.txt
100644 41 lines (34 sloc) 0.995 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
=== 0.1.2 / 2009-09-21
 
* Require Hoe >= 2.3.3.
* Require YARD >= 0.2.3.5.
* Require RSpec >= 1.2.8.
* Added Chars.visibile and Chars::VISIBLE (thanks flatline).
* Added CharSet#random_distinct_bytes, CharSet#random_distinct_chars,
  and CharSet#random_distinct_string (thanks flatline).
* Use 'hoe/signing' for signed RubyGems.
* Moved to YARD based documentation.
* All specs now pass on JRuby 1.3.1.
 
=== 0.1.1 / 2009-04-01
 
* Renamed CharSet#=~ to CharSet#===.
* Added an alias from CharSet#=~ to CharSet#===.
 
=== 0.1.0 / 2009-03-16
 
* Initial release.
* Provides character sets for:
  * Numeric
  * Octal
  * Uppercase Hexadecimal
  * Lowercase Hexadecimal
  * Hexadecimal
  * Uppercase Alpha
  * Lowercase Alpha
  * Alpha
  * Alpha-numeric
  * Punctuation
  * Symbols
  * Space
  * Printable
  * Control
  * ASCII
* Provides convenience methods for testing wether a String or Integer
  belongs to a certain character set.
* Supports random text generation using specific character sets.