exemplor 2.9.0 → 2000.0.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.
- data/VERSION +1 -1
- data/examples/check_parsing.rb +7 -1
- data/examples/with_setup.rb +0 -1
- data/exemplor.gemspec +2 -2
- data/lib/exemplor.rb +1 -0
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
2000.0.0
|
data/examples/check_parsing.rb
CHANGED
@@ -24,6 +24,10 @@ eg "with brackets and is" do
|
|
24
24
|
Check(String.new('test')).is("test")
|
25
25
|
end
|
26
26
|
|
27
|
+
eg "with disambiguation" do
|
28
|
+
Check(foo)['bar'].is('bar')
|
29
|
+
end
|
30
|
+
|
27
31
|
__END__
|
28
32
|
|
29
33
|
(I) plain call:
|
@@ -35,4 +39,6 @@ __END__
|
|
35
39
|
(I) with brackets:
|
36
40
|
(i) String.new('test'): test
|
37
41
|
(s) with brackets and is:
|
38
|
-
(s) String.new('test'): test
|
42
|
+
(s) String.new('test'): test
|
43
|
+
(s) with disambiguation:
|
44
|
+
(s) foo bar: bar
|
data/examples/with_setup.rb
CHANGED
data/exemplor.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{exemplor}
|
8
|
-
s.version = "
|
8
|
+
s.version = "2000.0.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Myles Byrne"]
|
12
|
-
s.date = %q{2009-10-
|
12
|
+
s.date = %q{2009-10-30}
|
13
13
|
s.email = %q{myles@myles.id.au}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"README"
|
data/lib/exemplor.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: exemplor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2000.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Myles Byrne
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-10-
|
12
|
+
date: 2009-10-30 00:00:00 +11:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|