patternmatching 0.1.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/History.txt +4 -0
- data/License.txt +20 -0
- data/Manifest.txt +25 -0
- data/README.txt +163 -0
- data/Rakefile +143 -0
- data/examples/enumerable_matching.rb +16 -0
- data/examples/hash_matching.rb +16 -0
- data/examples/matching.rb +19 -0
- data/examples/object_matching.rb +25 -0
- data/examples/partial_style_method.rb +24 -0
- data/examples/partial_style_method2.rb +25 -0
- data/lib/patternmatching/pattern.rb +296 -0
- data/lib/patternmatching/version.rb +9 -0
- data/lib/patternmatching.rb +5 -0
- data/scripts/makemanifest.rb +20 -0
- data/scripts/txt2html +67 -0
- data/setup.rb +1585 -0
- data/spec/patternmatching_spec.rb +162 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +1 -0
- data/website/index.html +231 -0
- data/website/index.txt +163 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +129 -0
- data/website/template.rhtml +48 -0
- metadata +75 -0
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.4
|
3
|
+
specification_version: 1
|
4
|
+
name: patternmatching
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2007-06-04 00:00:00 +09:00
|
8
|
+
summary: Provide a pure ruby module that can build structured objects easily, can enable pattern match of objects, and can define method as a partial function style.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: bellbind@gmail.com
|
12
|
+
homepage: http://patternmatching.rubyforge.org
|
13
|
+
rubyforge_project: patternmatching
|
14
|
+
description: Provide a pure ruby module that can build structured objects easily, can enable pattern match of objects, and can define method as a partial function style.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- ICHIYAMA Ryoichi
|
31
|
+
files:
|
32
|
+
- History.txt
|
33
|
+
- License.txt
|
34
|
+
- Manifest.txt
|
35
|
+
- README.txt
|
36
|
+
- Rakefile
|
37
|
+
- examples/enumerable_matching.rb
|
38
|
+
- examples/hash_matching.rb
|
39
|
+
- examples/matching.rb
|
40
|
+
- examples/object_matching.rb
|
41
|
+
- examples/partial_style_method.rb
|
42
|
+
- examples/partial_style_method2.rb
|
43
|
+
- lib/patternmatching.rb
|
44
|
+
- lib/patternmatching/pattern.rb
|
45
|
+
- lib/patternmatching/version.rb
|
46
|
+
- scripts/makemanifest.rb
|
47
|
+
- scripts/txt2html
|
48
|
+
- setup.rb
|
49
|
+
- spec/patternmatching_spec.rb
|
50
|
+
- spec/spec.opts
|
51
|
+
- spec/spec_helper.rb
|
52
|
+
- website/index.html
|
53
|
+
- website/index.txt
|
54
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
55
|
+
- website/stylesheets/screen.css
|
56
|
+
- website/template.rhtml
|
57
|
+
test_files: []
|
58
|
+
|
59
|
+
rdoc_options:
|
60
|
+
- --main
|
61
|
+
- README.txt
|
62
|
+
extra_rdoc_files:
|
63
|
+
- History.txt
|
64
|
+
- License.txt
|
65
|
+
- Manifest.txt
|
66
|
+
- README.txt
|
67
|
+
- website/index.txt
|
68
|
+
executables: []
|
69
|
+
|
70
|
+
extensions: []
|
71
|
+
|
72
|
+
requirements: []
|
73
|
+
|
74
|
+
dependencies: []
|
75
|
+
|