rugex 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +4 -3
- data/VERSION +1 -1
- data/lib/rugex/print.rb +1 -1
- data/rugex.gemspec +1 -1
- metadata +3 -3
data/README.textile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
h1. About
|
2
2
|
|
3
|
-
Rugex is a simple tool for testing
|
3
|
+
Rugex is a simple tool for testing Ruby Regular Expressions using the terminal.
|
4
4
|
|
5
5
|
It can be useful if you often use regular expressions or if you are learning it.
|
6
6
|
|
@@ -22,8 +22,8 @@ h2. For example:
|
|
22
22
|
<pre><code>rugex aquarius /aqua/</code></pre>
|
23
23
|
=> *aqua* rius
|
24
24
|
|
25
|
-
<pre><code>rugex aquarius ^a
|
26
|
-
=> *
|
25
|
+
<pre><code>rugex aquarius ^a.+u</code></pre>
|
26
|
+
=> *aquariu* s
|
27
27
|
|
28
28
|
<pre><code>rugex aquarius /a[qr]/</code></pre>
|
29
29
|
=> *aq* u *ar* ius
|
@@ -32,6 +32,7 @@ h1. TODO
|
|
32
32
|
|
33
33
|
* File Suport
|
34
34
|
* Regex Options (i, m, x, o)
|
35
|
+
* It does not work in Windows OS.
|
35
36
|
|
36
37
|
h1. Contributing to Lucas Caton
|
37
38
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/lib/rugex/print.rb
CHANGED
data/rugex.gemspec
CHANGED
metadata
CHANGED