seomoz-ripple 1.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +20 -0
- data/Guardfile +15 -0
- data/Rakefile +88 -0
- data/lib/rails/generators/ripple/configuration/configuration_generator.rb +13 -0
- data/lib/rails/generators/ripple/configuration/templates/ripple.yml +24 -0
- data/lib/rails/generators/ripple/js/js_generator.rb +13 -0
- data/lib/rails/generators/ripple/js/templates/js/contrib.js +63 -0
- data/lib/rails/generators/ripple/js/templates/js/iso8601.js +76 -0
- data/lib/rails/generators/ripple/js/templates/js/ripple.js +132 -0
- data/lib/rails/generators/ripple/model/model_generator.rb +20 -0
- data/lib/rails/generators/ripple/model/templates/model.rb +10 -0
- data/lib/rails/generators/ripple/observer/observer_generator.rb +16 -0
- data/lib/rails/generators/ripple/observer/templates/observer.rb +4 -0
- data/lib/rails/generators/ripple/test/templates/test_server.rb +46 -0
- data/lib/rails/generators/ripple/test/test_generator.rb +39 -0
- data/lib/rails/generators/ripple_generator.rb +78 -0
- data/lib/ripple.rb +79 -0
- data/lib/ripple/associations.rb +356 -0
- data/lib/ripple/associations/embedded.rb +35 -0
- data/lib/ripple/associations/instantiators.rb +26 -0
- data/lib/ripple/associations/linked.rb +65 -0
- data/lib/ripple/associations/many.rb +38 -0
- data/lib/ripple/associations/many_embedded_proxy.rb +38 -0
- data/lib/ripple/associations/many_linked_proxy.rb +66 -0
- data/lib/ripple/associations/many_reference_proxy.rb +93 -0
- data/lib/ripple/associations/many_stored_key_proxy.rb +76 -0
- data/lib/ripple/associations/one.rb +20 -0
- data/lib/ripple/associations/one_embedded_proxy.rb +35 -0
- data/lib/ripple/associations/one_key_proxy.rb +58 -0
- data/lib/ripple/associations/one_linked_proxy.rb +22 -0
- data/lib/ripple/associations/one_stored_key_proxy.rb +43 -0
- data/lib/ripple/associations/proxy.rb +118 -0
- data/lib/ripple/attribute_methods.rb +118 -0
- data/lib/ripple/attribute_methods/dirty.rb +50 -0
- data/lib/ripple/attribute_methods/query.rb +34 -0
- data/lib/ripple/attribute_methods/read.rb +26 -0
- data/lib/ripple/attribute_methods/write.rb +25 -0
- data/lib/ripple/callbacks.rb +74 -0
- data/lib/ripple/conflict/basic_resolver.rb +82 -0
- data/lib/ripple/conflict/document_hooks.rb +20 -0
- data/lib/ripple/conflict/resolver.rb +71 -0
- data/lib/ripple/conflict/test_helper.rb +33 -0
- data/lib/ripple/conversion.rb +28 -0
- data/lib/ripple/core_ext.rb +2 -0
- data/lib/ripple/core_ext/casting.rb +148 -0
- data/lib/ripple/core_ext/object.rb +8 -0
- data/lib/ripple/document.rb +104 -0
- data/lib/ripple/document/bucket_access.rb +25 -0
- data/lib/ripple/document/finders.rb +131 -0
- data/lib/ripple/document/key.rb +43 -0
- data/lib/ripple/document/link.rb +30 -0
- data/lib/ripple/document/persistence.rb +115 -0
- data/lib/ripple/embedded_document.rb +64 -0
- data/lib/ripple/embedded_document/around_callbacks.rb +18 -0
- data/lib/ripple/embedded_document/finders.rb +26 -0
- data/lib/ripple/embedded_document/persistence.rb +77 -0
- data/lib/ripple/i18n.rb +2 -0
- data/lib/ripple/inspection.rb +32 -0
- data/lib/ripple/locale/en.yml +21 -0
- data/lib/ripple/nested_attributes.rb +265 -0
- data/lib/ripple/observable.rb +28 -0
- data/lib/ripple/properties.rb +73 -0
- data/lib/ripple/property_type_mismatch.rb +12 -0
- data/lib/ripple/railtie.rb +13 -0
- data/lib/ripple/serialization.rb +84 -0
- data/lib/ripple/timestamps.rb +27 -0
- data/lib/ripple/translation.rb +14 -0
- data/lib/ripple/validations.rb +67 -0
- data/lib/ripple/validations/associated_validator.rb +43 -0
- data/ripple.gemspec +46 -0
- data/seomoz-ripple.gemspec +46 -0
- data/spec/fixtures/config.yml +8 -0
- data/spec/integration/ripple/associations_spec.rb +220 -0
- data/spec/integration/ripple/conflict_resolution_spec.rb +293 -0
- data/spec/integration/ripple/nested_attributes_spec.rb +264 -0
- data/spec/integration/ripple/persistence_spec.rb +57 -0
- data/spec/integration/ripple/search_associations_spec.rb +42 -0
- data/spec/ripple/associations/many_embedded_proxy_spec.rb +122 -0
- data/spec/ripple/associations/many_linked_proxy_spec.rb +191 -0
- data/spec/ripple/associations/many_reference_proxy_spec.rb +170 -0
- data/spec/ripple/associations/many_stored_key_proxy_spec.rb +158 -0
- data/spec/ripple/associations/one_embedded_proxy_spec.rb +125 -0
- data/spec/ripple/associations/one_key_proxy_spec.rb +82 -0
- data/spec/ripple/associations/one_linked_proxy_spec.rb +91 -0
- data/spec/ripple/associations/one_stored_key_proxy_spec.rb +72 -0
- data/spec/ripple/associations/proxy_spec.rb +84 -0
- data/spec/ripple/associations_spec.rb +129 -0
- data/spec/ripple/attribute_methods/dirty_spec.rb +80 -0
- data/spec/ripple/attribute_methods_spec.rb +230 -0
- data/spec/ripple/bucket_access_spec.rb +25 -0
- data/spec/ripple/callbacks_spec.rb +176 -0
- data/spec/ripple/conflict/resolver_spec.rb +42 -0
- data/spec/ripple/conversion_spec.rb +22 -0
- data/spec/ripple/core_ext_spec.rb +103 -0
- data/spec/ripple/document/link_spec.rb +67 -0
- data/spec/ripple/document_spec.rb +96 -0
- data/spec/ripple/embedded_document/finders_spec.rb +29 -0
- data/spec/ripple/embedded_document/persistence_spec.rb +80 -0
- data/spec/ripple/embedded_document_spec.rb +84 -0
- data/spec/ripple/finders_spec.rb +217 -0
- data/spec/ripple/inspection_spec.rb +51 -0
- data/spec/ripple/key_spec.rb +30 -0
- data/spec/ripple/observable_spec.rb +121 -0
- data/spec/ripple/persistence_spec.rb +326 -0
- data/spec/ripple/properties_spec.rb +262 -0
- data/spec/ripple/ripple_spec.rb +71 -0
- data/spec/ripple/serialization_spec.rb +51 -0
- data/spec/ripple/timestamps_spec.rb +76 -0
- data/spec/ripple/validations/associated_validator_spec.rb +77 -0
- data/spec/ripple/validations_spec.rb +104 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/support/associations.rb +1 -0
- data/spec/support/associations/proxies.rb +17 -0
- data/spec/support/integration_setup.rb +11 -0
- data/spec/support/mocks.rb +4 -0
- data/spec/support/models.rb +4 -0
- data/spec/support/models/address.rb +12 -0
- data/spec/support/models/box.rb +13 -0
- data/spec/support/models/car.rb +16 -0
- data/spec/support/models/cardboard_box.rb +3 -0
- data/spec/support/models/clock.rb +12 -0
- data/spec/support/models/clock_observer.rb +3 -0
- data/spec/support/models/company.rb +23 -0
- data/spec/support/models/customer.rb +4 -0
- data/spec/support/models/driver.rb +6 -0
- data/spec/support/models/email.rb +4 -0
- data/spec/support/models/engine.rb +5 -0
- data/spec/support/models/family.rb +16 -0
- data/spec/support/models/favorite.rb +4 -0
- data/spec/support/models/invoice.rb +7 -0
- data/spec/support/models/late_invoice.rb +3 -0
- data/spec/support/models/ninja.rb +9 -0
- data/spec/support/models/note.rb +5 -0
- data/spec/support/models/page.rb +4 -0
- data/spec/support/models/paid_invoice.rb +4 -0
- data/spec/support/models/passenger.rb +6 -0
- data/spec/support/models/profile.rb +10 -0
- data/spec/support/models/seat.rb +5 -0
- data/spec/support/models/subscription.rb +27 -0
- data/spec/support/models/tasks.rb +14 -0
- data/spec/support/models/team.rb +11 -0
- data/spec/support/models/transactions.rb +17 -0
- data/spec/support/models/tree.rb +4 -0
- data/spec/support/models/user.rb +10 -0
- data/spec/support/models/wheel.rb +6 -0
- data/spec/support/models/widget.rb +22 -0
- data/spec/support/test_server.rb +18 -0
- data/spec/support/test_server.yml.example +2 -0
- metadata +362 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
|
2
|
+
class Subscription
|
3
|
+
include Ripple::Document
|
4
|
+
|
5
|
+
class MyCustomType
|
6
|
+
attr_accessor :foo
|
7
|
+
|
8
|
+
def initialize(foo)
|
9
|
+
self.foo = foo
|
10
|
+
end
|
11
|
+
|
12
|
+
def as_json(options = {})
|
13
|
+
foo
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.ripple_cast(value)
|
17
|
+
new(value)
|
18
|
+
end
|
19
|
+
|
20
|
+
def ==(other)
|
21
|
+
other.foo == foo
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
property :days_of_month, Set
|
26
|
+
property :custom_data, MyCustomType
|
27
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class PaymentMethod
|
2
|
+
include Ripple::Document
|
3
|
+
property :account_key, String
|
4
|
+
end
|
5
|
+
|
6
|
+
class Account
|
7
|
+
include Ripple::Document
|
8
|
+
many :payment_methods, :using => :reference
|
9
|
+
property :transaction_keys, Array
|
10
|
+
many :transactions, :using => :stored_key
|
11
|
+
end
|
12
|
+
|
13
|
+
class Transaction
|
14
|
+
include Ripple::Document
|
15
|
+
property :account_key, String
|
16
|
+
one :account, :using => :stored_key
|
17
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
|
2
|
+
class Widget
|
3
|
+
include Ripple::Document
|
4
|
+
property :size, Integer
|
5
|
+
property :name, String, :default => "widget"
|
6
|
+
property :manufactured, Boolean, :default => false
|
7
|
+
property :shipped_at, Time
|
8
|
+
|
9
|
+
attr_protected :manufactured
|
10
|
+
|
11
|
+
many :widget_parts
|
12
|
+
end
|
13
|
+
|
14
|
+
class Cog < Widget
|
15
|
+
property :name, String, :default => "cog"
|
16
|
+
end
|
17
|
+
|
18
|
+
class WidgetPart
|
19
|
+
include Ripple::Document
|
20
|
+
property :name, String
|
21
|
+
key_on :name
|
22
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
|
2
|
+
require 'riak/test_server'
|
3
|
+
|
4
|
+
unless $test_server
|
5
|
+
begin
|
6
|
+
require 'yaml'
|
7
|
+
config = YAML.load_file("spec/support/test_server.yml")
|
8
|
+
$test_server = Riak::TestServer.new(config.symbolize_keys)
|
9
|
+
$test_server.prepare!
|
10
|
+
$test_server.start
|
11
|
+
Ripple.config = {:http_port => 9000 }
|
12
|
+
at_exit { $test_server.cleanup }
|
13
|
+
rescue => e
|
14
|
+
warn "Can't run Riak::TestServer specs. Specify the location of your Riak installation in spec/support/test_server.yml. See Riak::TestServer docs for more info."
|
15
|
+
warn e.inspect
|
16
|
+
$test_server = nil
|
17
|
+
end
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,362 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: seomoz-ripple
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 961915988
|
5
|
+
prerelease: 6
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
- pre
|
11
|
+
version: 1.0.0.pre
|
12
|
+
platform: ruby
|
13
|
+
authors:
|
14
|
+
- Sean Cribbs
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2011-11-18 00:00:00 Z
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: rspec
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 23
|
30
|
+
segments:
|
31
|
+
- 2
|
32
|
+
- 6
|
33
|
+
- 0
|
34
|
+
version: 2.6.0
|
35
|
+
type: :development
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: rake
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 49
|
46
|
+
segments:
|
47
|
+
- 0
|
48
|
+
- 8
|
49
|
+
- 7
|
50
|
+
version: 0.8.7
|
51
|
+
type: :development
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: seomoz-riak-client
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 961915988
|
62
|
+
segments:
|
63
|
+
- 1
|
64
|
+
- 0
|
65
|
+
- 0
|
66
|
+
- pre
|
67
|
+
version: 1.0.0.pre
|
68
|
+
type: :runtime
|
69
|
+
version_requirements: *id003
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: activesupport
|
72
|
+
prerelease: false
|
73
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
hash: 7
|
79
|
+
segments:
|
80
|
+
- 3
|
81
|
+
- 0
|
82
|
+
- 0
|
83
|
+
version: 3.0.0
|
84
|
+
- - <
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
hash: 15
|
87
|
+
segments:
|
88
|
+
- 3
|
89
|
+
- 2
|
90
|
+
- 0
|
91
|
+
version: 3.2.0
|
92
|
+
type: :runtime
|
93
|
+
version_requirements: *id004
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: activemodel
|
96
|
+
prerelease: false
|
97
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
99
|
+
requirements:
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
hash: 7
|
103
|
+
segments:
|
104
|
+
- 3
|
105
|
+
- 0
|
106
|
+
- 0
|
107
|
+
version: 3.0.0
|
108
|
+
- - <
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
hash: 15
|
111
|
+
segments:
|
112
|
+
- 3
|
113
|
+
- 2
|
114
|
+
- 0
|
115
|
+
version: 3.2.0
|
116
|
+
type: :runtime
|
117
|
+
version_requirements: *id005
|
118
|
+
- !ruby/object:Gem::Dependency
|
119
|
+
name: tzinfo
|
120
|
+
prerelease: false
|
121
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
122
|
+
none: false
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
hash: 3
|
127
|
+
segments:
|
128
|
+
- 0
|
129
|
+
version: "0"
|
130
|
+
type: :runtime
|
131
|
+
version_requirements: *id006
|
132
|
+
description: ripple is an object-mapper library for Riak, the distributed database by Basho. It uses ActiveModel to provide an experience that integrates well with Rails 3 applications.
|
133
|
+
email: sean@basho.com
|
134
|
+
executables: []
|
135
|
+
|
136
|
+
extensions: []
|
137
|
+
|
138
|
+
extra_rdoc_files: []
|
139
|
+
|
140
|
+
files:
|
141
|
+
- Gemfile
|
142
|
+
- Guardfile
|
143
|
+
- lib/rails/generators/ripple/configuration/configuration_generator.rb
|
144
|
+
- lib/rails/generators/ripple/configuration/templates/ripple.yml
|
145
|
+
- lib/rails/generators/ripple/js/js_generator.rb
|
146
|
+
- lib/rails/generators/ripple/js/templates/js/contrib.js
|
147
|
+
- lib/rails/generators/ripple/js/templates/js/iso8601.js
|
148
|
+
- lib/rails/generators/ripple/js/templates/js/ripple.js
|
149
|
+
- lib/rails/generators/ripple/model/model_generator.rb
|
150
|
+
- lib/rails/generators/ripple/model/templates/model.rb
|
151
|
+
- lib/rails/generators/ripple/observer/observer_generator.rb
|
152
|
+
- lib/rails/generators/ripple/observer/templates/observer.rb
|
153
|
+
- lib/rails/generators/ripple/test/templates/test_server.rb
|
154
|
+
- lib/rails/generators/ripple/test/test_generator.rb
|
155
|
+
- lib/rails/generators/ripple_generator.rb
|
156
|
+
- lib/ripple/associations/embedded.rb
|
157
|
+
- lib/ripple/associations/instantiators.rb
|
158
|
+
- lib/ripple/associations/linked.rb
|
159
|
+
- lib/ripple/associations/many.rb
|
160
|
+
- lib/ripple/associations/many_embedded_proxy.rb
|
161
|
+
- lib/ripple/associations/many_linked_proxy.rb
|
162
|
+
- lib/ripple/associations/many_reference_proxy.rb
|
163
|
+
- lib/ripple/associations/many_stored_key_proxy.rb
|
164
|
+
- lib/ripple/associations/one.rb
|
165
|
+
- lib/ripple/associations/one_embedded_proxy.rb
|
166
|
+
- lib/ripple/associations/one_key_proxy.rb
|
167
|
+
- lib/ripple/associations/one_linked_proxy.rb
|
168
|
+
- lib/ripple/associations/one_stored_key_proxy.rb
|
169
|
+
- lib/ripple/associations/proxy.rb
|
170
|
+
- lib/ripple/associations.rb
|
171
|
+
- lib/ripple/attribute_methods/dirty.rb
|
172
|
+
- lib/ripple/attribute_methods/query.rb
|
173
|
+
- lib/ripple/attribute_methods/read.rb
|
174
|
+
- lib/ripple/attribute_methods/write.rb
|
175
|
+
- lib/ripple/attribute_methods.rb
|
176
|
+
- lib/ripple/callbacks.rb
|
177
|
+
- lib/ripple/conflict/basic_resolver.rb
|
178
|
+
- lib/ripple/conflict/document_hooks.rb
|
179
|
+
- lib/ripple/conflict/resolver.rb
|
180
|
+
- lib/ripple/conflict/test_helper.rb
|
181
|
+
- lib/ripple/conversion.rb
|
182
|
+
- lib/ripple/core_ext/casting.rb
|
183
|
+
- lib/ripple/core_ext/object.rb
|
184
|
+
- lib/ripple/core_ext.rb
|
185
|
+
- lib/ripple/document/bucket_access.rb
|
186
|
+
- lib/ripple/document/finders.rb
|
187
|
+
- lib/ripple/document/key.rb
|
188
|
+
- lib/ripple/document/link.rb
|
189
|
+
- lib/ripple/document/persistence.rb
|
190
|
+
- lib/ripple/document.rb
|
191
|
+
- lib/ripple/embedded_document/around_callbacks.rb
|
192
|
+
- lib/ripple/embedded_document/finders.rb
|
193
|
+
- lib/ripple/embedded_document/persistence.rb
|
194
|
+
- lib/ripple/embedded_document.rb
|
195
|
+
- lib/ripple/i18n.rb
|
196
|
+
- lib/ripple/inspection.rb
|
197
|
+
- lib/ripple/locale/en.yml
|
198
|
+
- lib/ripple/nested_attributes.rb
|
199
|
+
- lib/ripple/observable.rb
|
200
|
+
- lib/ripple/properties.rb
|
201
|
+
- lib/ripple/property_type_mismatch.rb
|
202
|
+
- lib/ripple/railtie.rb
|
203
|
+
- lib/ripple/serialization.rb
|
204
|
+
- lib/ripple/timestamps.rb
|
205
|
+
- lib/ripple/translation.rb
|
206
|
+
- lib/ripple/validations/associated_validator.rb
|
207
|
+
- lib/ripple/validations.rb
|
208
|
+
- lib/ripple.rb
|
209
|
+
- Rakefile
|
210
|
+
- ripple.gemspec
|
211
|
+
- seomoz-ripple.gemspec
|
212
|
+
- spec/fixtures/config.yml
|
213
|
+
- spec/integration/ripple/associations_spec.rb
|
214
|
+
- spec/integration/ripple/conflict_resolution_spec.rb
|
215
|
+
- spec/integration/ripple/nested_attributes_spec.rb
|
216
|
+
- spec/integration/ripple/persistence_spec.rb
|
217
|
+
- spec/integration/ripple/search_associations_spec.rb
|
218
|
+
- spec/ripple/associations/many_embedded_proxy_spec.rb
|
219
|
+
- spec/ripple/associations/many_linked_proxy_spec.rb
|
220
|
+
- spec/ripple/associations/many_reference_proxy_spec.rb
|
221
|
+
- spec/ripple/associations/many_stored_key_proxy_spec.rb
|
222
|
+
- spec/ripple/associations/one_embedded_proxy_spec.rb
|
223
|
+
- spec/ripple/associations/one_key_proxy_spec.rb
|
224
|
+
- spec/ripple/associations/one_linked_proxy_spec.rb
|
225
|
+
- spec/ripple/associations/one_stored_key_proxy_spec.rb
|
226
|
+
- spec/ripple/associations/proxy_spec.rb
|
227
|
+
- spec/ripple/associations_spec.rb
|
228
|
+
- spec/ripple/attribute_methods/dirty_spec.rb
|
229
|
+
- spec/ripple/attribute_methods_spec.rb
|
230
|
+
- spec/ripple/bucket_access_spec.rb
|
231
|
+
- spec/ripple/callbacks_spec.rb
|
232
|
+
- spec/ripple/conflict/resolver_spec.rb
|
233
|
+
- spec/ripple/conversion_spec.rb
|
234
|
+
- spec/ripple/core_ext_spec.rb
|
235
|
+
- spec/ripple/document/link_spec.rb
|
236
|
+
- spec/ripple/document_spec.rb
|
237
|
+
- spec/ripple/embedded_document/finders_spec.rb
|
238
|
+
- spec/ripple/embedded_document/persistence_spec.rb
|
239
|
+
- spec/ripple/embedded_document_spec.rb
|
240
|
+
- spec/ripple/finders_spec.rb
|
241
|
+
- spec/ripple/inspection_spec.rb
|
242
|
+
- spec/ripple/key_spec.rb
|
243
|
+
- spec/ripple/observable_spec.rb
|
244
|
+
- spec/ripple/persistence_spec.rb
|
245
|
+
- spec/ripple/properties_spec.rb
|
246
|
+
- spec/ripple/ripple_spec.rb
|
247
|
+
- spec/ripple/serialization_spec.rb
|
248
|
+
- spec/ripple/timestamps_spec.rb
|
249
|
+
- spec/ripple/validations/associated_validator_spec.rb
|
250
|
+
- spec/ripple/validations_spec.rb
|
251
|
+
- spec/spec_helper.rb
|
252
|
+
- spec/support/associations/proxies.rb
|
253
|
+
- spec/support/associations.rb
|
254
|
+
- spec/support/integration_setup.rb
|
255
|
+
- spec/support/mocks.rb
|
256
|
+
- spec/support/models/address.rb
|
257
|
+
- spec/support/models/box.rb
|
258
|
+
- spec/support/models/car.rb
|
259
|
+
- spec/support/models/cardboard_box.rb
|
260
|
+
- spec/support/models/clock.rb
|
261
|
+
- spec/support/models/clock_observer.rb
|
262
|
+
- spec/support/models/company.rb
|
263
|
+
- spec/support/models/customer.rb
|
264
|
+
- spec/support/models/driver.rb
|
265
|
+
- spec/support/models/email.rb
|
266
|
+
- spec/support/models/engine.rb
|
267
|
+
- spec/support/models/family.rb
|
268
|
+
- spec/support/models/favorite.rb
|
269
|
+
- spec/support/models/invoice.rb
|
270
|
+
- spec/support/models/late_invoice.rb
|
271
|
+
- spec/support/models/ninja.rb
|
272
|
+
- spec/support/models/note.rb
|
273
|
+
- spec/support/models/page.rb
|
274
|
+
- spec/support/models/paid_invoice.rb
|
275
|
+
- spec/support/models/passenger.rb
|
276
|
+
- spec/support/models/profile.rb
|
277
|
+
- spec/support/models/seat.rb
|
278
|
+
- spec/support/models/subscription.rb
|
279
|
+
- spec/support/models/tasks.rb
|
280
|
+
- spec/support/models/team.rb
|
281
|
+
- spec/support/models/transactions.rb
|
282
|
+
- spec/support/models/tree.rb
|
283
|
+
- spec/support/models/user.rb
|
284
|
+
- spec/support/models/wheel.rb
|
285
|
+
- spec/support/models/widget.rb
|
286
|
+
- spec/support/models.rb
|
287
|
+
- spec/support/test_server.rb
|
288
|
+
- spec/support/test_server.yml.example
|
289
|
+
homepage: http://seancribbs.github.com/ripple
|
290
|
+
licenses: []
|
291
|
+
|
292
|
+
post_install_message:
|
293
|
+
rdoc_options: []
|
294
|
+
|
295
|
+
require_paths:
|
296
|
+
- lib
|
297
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
298
|
+
none: false
|
299
|
+
requirements:
|
300
|
+
- - ">="
|
301
|
+
- !ruby/object:Gem::Version
|
302
|
+
hash: 3
|
303
|
+
segments:
|
304
|
+
- 0
|
305
|
+
version: "0"
|
306
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
307
|
+
none: false
|
308
|
+
requirements:
|
309
|
+
- - ">"
|
310
|
+
- !ruby/object:Gem::Version
|
311
|
+
hash: 25
|
312
|
+
segments:
|
313
|
+
- 1
|
314
|
+
- 3
|
315
|
+
- 1
|
316
|
+
version: 1.3.1
|
317
|
+
requirements: []
|
318
|
+
|
319
|
+
rubyforge_project:
|
320
|
+
rubygems_version: 1.8.6
|
321
|
+
signing_key:
|
322
|
+
specification_version: 3
|
323
|
+
summary: ripple is an object-mapper library for Riak, the distributed database by Basho.
|
324
|
+
test_files:
|
325
|
+
- spec/integration/ripple/associations_spec.rb
|
326
|
+
- spec/integration/ripple/conflict_resolution_spec.rb
|
327
|
+
- spec/integration/ripple/nested_attributes_spec.rb
|
328
|
+
- spec/integration/ripple/persistence_spec.rb
|
329
|
+
- spec/integration/ripple/search_associations_spec.rb
|
330
|
+
- spec/ripple/associations/many_embedded_proxy_spec.rb
|
331
|
+
- spec/ripple/associations/many_linked_proxy_spec.rb
|
332
|
+
- spec/ripple/associations/many_reference_proxy_spec.rb
|
333
|
+
- spec/ripple/associations/many_stored_key_proxy_spec.rb
|
334
|
+
- spec/ripple/associations/one_embedded_proxy_spec.rb
|
335
|
+
- spec/ripple/associations/one_key_proxy_spec.rb
|
336
|
+
- spec/ripple/associations/one_linked_proxy_spec.rb
|
337
|
+
- spec/ripple/associations/one_stored_key_proxy_spec.rb
|
338
|
+
- spec/ripple/associations/proxy_spec.rb
|
339
|
+
- spec/ripple/associations_spec.rb
|
340
|
+
- spec/ripple/attribute_methods/dirty_spec.rb
|
341
|
+
- spec/ripple/attribute_methods_spec.rb
|
342
|
+
- spec/ripple/bucket_access_spec.rb
|
343
|
+
- spec/ripple/callbacks_spec.rb
|
344
|
+
- spec/ripple/conflict/resolver_spec.rb
|
345
|
+
- spec/ripple/conversion_spec.rb
|
346
|
+
- spec/ripple/core_ext_spec.rb
|
347
|
+
- spec/ripple/document/link_spec.rb
|
348
|
+
- spec/ripple/document_spec.rb
|
349
|
+
- spec/ripple/embedded_document/finders_spec.rb
|
350
|
+
- spec/ripple/embedded_document/persistence_spec.rb
|
351
|
+
- spec/ripple/embedded_document_spec.rb
|
352
|
+
- spec/ripple/finders_spec.rb
|
353
|
+
- spec/ripple/inspection_spec.rb
|
354
|
+
- spec/ripple/key_spec.rb
|
355
|
+
- spec/ripple/observable_spec.rb
|
356
|
+
- spec/ripple/persistence_spec.rb
|
357
|
+
- spec/ripple/properties_spec.rb
|
358
|
+
- spec/ripple/ripple_spec.rb
|
359
|
+
- spec/ripple/serialization_spec.rb
|
360
|
+
- spec/ripple/timestamps_spec.rb
|
361
|
+
- spec/ripple/validations/associated_validator_spec.rb
|
362
|
+
- spec/ripple/validations_spec.rb
|