correlate 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +23 -0
- data/LICENSE +20 -0
- data/README.rdoc +137 -0
- data/Rakefile +48 -0
- data/correlate.gemspec +101 -0
- data/lib/correlate.rb +97 -0
- data/lib/correlate/correlation.rb +116 -0
- data/lib/correlate/links.rb +89 -0
- data/lib/correlate/relationships.rb +36 -0
- data/lib/correlate/relationships/active_record.rb +146 -0
- data/lib/correlate/relationships/active_record/collection_proxy.rb +32 -0
- data/lib/correlate/relationships/couchrest.rb +171 -0
- data/lib/correlate/validator.rb +49 -0
- data/spec/active_record_spec.rb +30 -0
- data/spec/activerecord_helper.rb +17 -0
- data/spec/correlate_spec.rb +132 -0
- data/spec/fixtures/article.rb +8 -0
- data/spec/fixtures/blank_doc.rb +4 -0
- data/spec/fixtures/comment.rb +11 -0
- data/spec/fixtures/course.rb +5 -0
- data/spec/fixtures/crawler.rb +6 -0
- data/spec/fixtures/news_feed.rb +13 -0
- data/spec/fixtures/note.rb +2 -0
- data/spec/fixtures/person.rb +11 -0
- data/spec/fixtures/project.rb +2 -0
- data/spec/fixtures/reader.rb +11 -0
- data/spec/fixtures/student.rb +11 -0
- data/spec/links_spec.rb +27 -0
- data/spec/relationships_spec.rb +18 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +41 -0
- data/spec/validation_spec.rb +38 -0
- metadata +144 -0
metadata
ADDED
@@ -0,0 +1,144 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: correlate
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kenneth Kalmer
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-12-13 00:00:00 +02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: couchrest
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0.33"
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: rspec
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.2.9
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: yard
|
37
|
+
type: :development
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: "0"
|
44
|
+
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: activerecord
|
47
|
+
type: :development
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 2.3.2
|
54
|
+
version:
|
55
|
+
description:
|
56
|
+
email: kenneth.kalmer@gmail.com
|
57
|
+
executables: []
|
58
|
+
|
59
|
+
extensions: []
|
60
|
+
|
61
|
+
extra_rdoc_files:
|
62
|
+
- LICENSE
|
63
|
+
- README.rdoc
|
64
|
+
files:
|
65
|
+
- .document
|
66
|
+
- .gitignore
|
67
|
+
- LICENSE
|
68
|
+
- README.rdoc
|
69
|
+
- Rakefile
|
70
|
+
- correlate.gemspec
|
71
|
+
- lib/correlate.rb
|
72
|
+
- lib/correlate/correlation.rb
|
73
|
+
- lib/correlate/links.rb
|
74
|
+
- lib/correlate/relationships.rb
|
75
|
+
- lib/correlate/relationships/active_record.rb
|
76
|
+
- lib/correlate/relationships/active_record/collection_proxy.rb
|
77
|
+
- lib/correlate/relationships/couchrest.rb
|
78
|
+
- lib/correlate/validator.rb
|
79
|
+
- spec/active_record_spec.rb
|
80
|
+
- spec/activerecord_helper.rb
|
81
|
+
- spec/correlate_spec.rb
|
82
|
+
- spec/fixtures/article.rb
|
83
|
+
- spec/fixtures/blank_doc.rb
|
84
|
+
- spec/fixtures/comment.rb
|
85
|
+
- spec/fixtures/course.rb
|
86
|
+
- spec/fixtures/crawler.rb
|
87
|
+
- spec/fixtures/news_feed.rb
|
88
|
+
- spec/fixtures/note.rb
|
89
|
+
- spec/fixtures/person.rb
|
90
|
+
- spec/fixtures/project.rb
|
91
|
+
- spec/fixtures/reader.rb
|
92
|
+
- spec/fixtures/student.rb
|
93
|
+
- spec/links_spec.rb
|
94
|
+
- spec/relationships_spec.rb
|
95
|
+
- spec/spec.opts
|
96
|
+
- spec/spec_helper.rb
|
97
|
+
- spec/validation_spec.rb
|
98
|
+
has_rdoc: true
|
99
|
+
homepage: http://github.com/kennethkalmer/correlate
|
100
|
+
licenses: []
|
101
|
+
|
102
|
+
post_install_message:
|
103
|
+
rdoc_options:
|
104
|
+
- --charset=UTF-8
|
105
|
+
require_paths:
|
106
|
+
- lib
|
107
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: "0"
|
112
|
+
version:
|
113
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: "0"
|
118
|
+
version:
|
119
|
+
requirements: []
|
120
|
+
|
121
|
+
rubyforge_project:
|
122
|
+
rubygems_version: 1.3.5
|
123
|
+
signing_key:
|
124
|
+
specification_version: 3
|
125
|
+
summary: Help correlate individual documents in a No/Less-SQL environment
|
126
|
+
test_files:
|
127
|
+
- spec/active_record_spec.rb
|
128
|
+
- spec/activerecord_helper.rb
|
129
|
+
- spec/correlate_spec.rb
|
130
|
+
- spec/fixtures/article.rb
|
131
|
+
- spec/fixtures/blank_doc.rb
|
132
|
+
- spec/fixtures/comment.rb
|
133
|
+
- spec/fixtures/course.rb
|
134
|
+
- spec/fixtures/crawler.rb
|
135
|
+
- spec/fixtures/news_feed.rb
|
136
|
+
- spec/fixtures/note.rb
|
137
|
+
- spec/fixtures/person.rb
|
138
|
+
- spec/fixtures/project.rb
|
139
|
+
- spec/fixtures/reader.rb
|
140
|
+
- spec/fixtures/student.rb
|
141
|
+
- spec/links_spec.rb
|
142
|
+
- spec/relationships_spec.rb
|
143
|
+
- spec/spec_helper.rb
|
144
|
+
- spec/validation_spec.rb
|