goto_string 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/Manifest.txt +1 -1
- data/lib/goto_string.rb +1 -1
- data/test/{goto_string_test.rb → test_goto_string.rb} +3 -4
- metadata +4 -4
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/lib/goto_string.rb
CHANGED
@@ -1,8 +1,7 @@
|
|
1
|
-
require
|
2
|
-
|
3
|
-
class GotoStringTest < Test::Unit::TestCase
|
4
|
-
fixtures :notes
|
1
|
+
require 'test/unit'
|
2
|
+
require 'goto_string'
|
5
3
|
|
4
|
+
class TestGotoString < Test::Unit::TestCase
|
6
5
|
def test_simple
|
7
6
|
s = %w( iamapala implementation impl simple nomatch )
|
8
7
|
a = GotoString::Matcher.match 'impl', s
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: goto_string
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.1.
|
6
|
+
version: 0.1.1
|
7
7
|
date: 2007-07-20 00:00:00 +10:00
|
8
8
|
summary: Quicksilver-like partial string matching
|
9
9
|
require_paths:
|
@@ -34,9 +34,9 @@ files:
|
|
34
34
|
- README.txt
|
35
35
|
- Rakefile
|
36
36
|
- lib/goto_string.rb
|
37
|
-
- test/
|
38
|
-
test_files:
|
39
|
-
|
37
|
+
- test/test_goto_string.rb
|
38
|
+
test_files:
|
39
|
+
- test/test_goto_string.rb
|
40
40
|
rdoc_options:
|
41
41
|
- --main
|
42
42
|
- README.txt
|