hashery 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.ruby +98 -0
- data/HISTORY.rdoc +17 -4
- data/NOTICE +11 -0
- data/lib/hashery.rb +1 -1
- data/lib/hashery.yml +98 -0
- data/lib/hashery/basic_struct.rb +1 -0
- data/lib/hashery/basicobject.rb +74 -0
- data/lib/hashery/basicstruct.rb +280 -0
- data/lib/hashery/open_object.rb +1 -1
- data/lib/hashery/openobject.rb +1 -279
- data/lib/hashery/ostructable.rb +48 -71
- data/qed/01_openhash.rdoc +57 -0
- data/qed/02_queryhash.rdoc +21 -0
- data/qed/03_castinghash.rdoc +13 -0
- data/qed/04_statichash.rdoc +22 -0
- data/qed/05_association.rdoc +59 -0
- data/qed/06_opencascade.rdoc +58 -0
- data/qed/07_fuzzyhash.rdoc +141 -0
- data/qed/08_properyhash.rdoc +38 -0
- data/qed/09_ostructable.rdoc +56 -0
- data/qed/applique/ae.rb +1 -0
- metadata +53 -9
- data/PROFILE +0 -35
- data/VERSION +0 -3
data/qed/applique/ae.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'ae/should'
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hashery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 7
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 1
|
7
|
-
-
|
8
|
+
- 4
|
8
9
|
- 0
|
9
|
-
version: 1.
|
10
|
+
version: 1.4.0
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Thomas Sawyer
|
@@ -20,10 +21,37 @@ autorequire:
|
|
20
21
|
bindir: bin
|
21
22
|
cert_chain: []
|
22
23
|
|
23
|
-
date:
|
24
|
+
date: 2011-01-19 00:00:00 -05:00
|
24
25
|
default_executable:
|
25
|
-
dependencies:
|
26
|
-
|
26
|
+
dependencies:
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: syckle
|
29
|
+
prerelease: false
|
30
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
hash: 3
|
36
|
+
segments:
|
37
|
+
- 0
|
38
|
+
version: "0"
|
39
|
+
type: :development
|
40
|
+
version_requirements: *id001
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: qed
|
43
|
+
prerelease: false
|
44
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
hash: 3
|
50
|
+
segments:
|
51
|
+
- 0
|
52
|
+
version: "0"
|
53
|
+
type: :development
|
54
|
+
version_requirements: *id002
|
27
55
|
description: The Hashery is a collection of Hash-like classes, spun-off from the original Ruby Facets library. Included are the widely used OrderedHash, the related but more featured Dictionary class, a number of open classes, similiar to the standard OpenStruct and a few variations on the standard Hash.
|
28
56
|
email: transfire@gmail.com
|
29
57
|
executables: []
|
@@ -33,7 +61,11 @@ extensions: []
|
|
33
61
|
extra_rdoc_files:
|
34
62
|
- README.rdoc
|
35
63
|
files:
|
64
|
+
- .ruby
|
36
65
|
- lib/hashery/association.rb
|
66
|
+
- lib/hashery/basic_struct.rb
|
67
|
+
- lib/hashery/basicobject.rb
|
68
|
+
- lib/hashery/basicstruct.rb
|
37
69
|
- lib/hashery/casting_hash.rb
|
38
70
|
- lib/hashery/castinghash.rb
|
39
71
|
- lib/hashery/dictionary.rb
|
@@ -64,6 +96,17 @@ files:
|
|
64
96
|
- lib/hashery/static_hash.rb
|
65
97
|
- lib/hashery/statichash.rb
|
66
98
|
- lib/hashery.rb
|
99
|
+
- lib/hashery.yml
|
100
|
+
- qed/01_openhash.rdoc
|
101
|
+
- qed/02_queryhash.rdoc
|
102
|
+
- qed/03_castinghash.rdoc
|
103
|
+
- qed/04_statichash.rdoc
|
104
|
+
- qed/05_association.rdoc
|
105
|
+
- qed/06_opencascade.rdoc
|
106
|
+
- qed/07_fuzzyhash.rdoc
|
107
|
+
- qed/08_properyhash.rdoc
|
108
|
+
- qed/09_ostructable.rdoc
|
109
|
+
- qed/applique/ae.rb
|
67
110
|
- test/case_association.rb
|
68
111
|
- test/case_dictionary.rb
|
69
112
|
- test/case_opencascade.rb
|
@@ -72,14 +115,13 @@ files:
|
|
72
115
|
- test/case_sparsearray.rb
|
73
116
|
- test/case_stash.rb
|
74
117
|
- HISTORY.rdoc
|
75
|
-
- PROFILE
|
76
118
|
- LICENSE
|
77
119
|
- README.rdoc
|
78
|
-
-
|
120
|
+
- NOTICE
|
79
121
|
has_rdoc: true
|
80
122
|
homepage: http://rubyworks.github.com/hashery
|
81
123
|
licenses:
|
82
|
-
-
|
124
|
+
- Apache 2.0
|
83
125
|
post_install_message:
|
84
126
|
rdoc_options:
|
85
127
|
- --title
|
@@ -93,6 +135,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
93
135
|
requirements:
|
94
136
|
- - ">="
|
95
137
|
- !ruby/object:Gem::Version
|
138
|
+
hash: 3
|
96
139
|
segments:
|
97
140
|
- 0
|
98
141
|
version: "0"
|
@@ -101,6 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
144
|
requirements:
|
102
145
|
- - ">="
|
103
146
|
- !ruby/object:Gem::Version
|
147
|
+
hash: 3
|
104
148
|
segments:
|
105
149
|
- 0
|
106
150
|
version: "0"
|
@@ -110,6 +154,6 @@ rubyforge_project: hashery
|
|
110
154
|
rubygems_version: 1.3.7
|
111
155
|
signing_key:
|
112
156
|
specification_version: 3
|
113
|
-
summary: Facets
|
157
|
+
summary: Facets-bread collection of Hash-like classes.
|
114
158
|
test_files: []
|
115
159
|
|
data/PROFILE
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Hashery
|
3
|
-
suite: rubyworks
|
4
|
-
summary: Facets bread collection of Hash-like classes.
|
5
|
-
license: MIT
|
6
|
-
contact: Trans <transfire@gmail.com>
|
7
|
-
created: 2010-04-21
|
8
|
-
|
9
|
-
authors:
|
10
|
-
- Thomas Sawyer
|
11
|
-
- Kirk Haines
|
12
|
-
- Robert Klemme
|
13
|
-
- Jan Molic
|
14
|
-
- George Moschovitis
|
15
|
-
- Jeena Paradies
|
16
|
-
- Erik Veenstra
|
17
|
-
|
18
|
-
description:
|
19
|
-
The Hashery is a collection of Hash-like classes, spun-off
|
20
|
-
from the original Ruby Facets library. Included are the widely
|
21
|
-
used OrderedHash, the related but more featured Dictionary
|
22
|
-
class, a number of open classes, similiar to the standard
|
23
|
-
OpenStruct and a few variations on the standard Hash.
|
24
|
-
|
25
|
-
resources:
|
26
|
-
home : http://rubyworks.github.com/hashery
|
27
|
-
code : http://github.com/rubyworks/hashery
|
28
|
-
mail : http://groups.google.com/group/rubyworks-mailinglist
|
29
|
-
api : http://rubyworks.github.com/hashery/docs/api
|
30
|
-
host : http://rubygems.org/gems/hashery
|
31
|
-
wiki : http://wiki.github.com/rubyworks/hashery
|
32
|
-
repo : git://github.com/rubyworks/hashery.git
|
33
|
-
|
34
|
-
copyright:
|
35
|
-
Copyright (c) 2010 Thomas Sawyer
|
data/VERSION
DELETED