jchris-couchrest 0.2.2 → 0.7.99

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/README +39 -0
  2. data/Rakefile +3 -54
  3. data/lib/couchrest.rb +39 -161
  4. data/lib/database.rb +83 -0
  5. data/script/couchdir +58 -0
  6. data/script/couchview +158 -0
  7. data/spec/couchrest_spec.rb +86 -0
  8. data/spec/database_spec.rb +407 -0
  9. metadata +15 -138
  10. data/LICENSE +0 -176
  11. data/README.md +0 -93
  12. data/THANKS.md +0 -18
  13. data/examples/model/example.rb +0 -144
  14. data/examples/word_count/markov +0 -38
  15. data/examples/word_count/views/books/chunked-map.js +0 -3
  16. data/examples/word_count/views/books/united-map.js +0 -1
  17. data/examples/word_count/views/markov/chain-map.js +0 -6
  18. data/examples/word_count/views/markov/chain-reduce.js +0 -7
  19. data/examples/word_count/views/word_count/count-map.js +0 -6
  20. data/examples/word_count/views/word_count/count-reduce.js +0 -3
  21. data/examples/word_count/word_count.rb +0 -46
  22. data/examples/word_count/word_count_query.rb +0 -40
  23. data/examples/word_count/word_count_views.rb +0 -26
  24. data/lib/couchrest/commands/generate.rb +0 -71
  25. data/lib/couchrest/commands/push.rb +0 -103
  26. data/lib/couchrest/core/database.rb +0 -318
  27. data/lib/couchrest/core/design.rb +0 -89
  28. data/lib/couchrest/core/document.rb +0 -96
  29. data/lib/couchrest/core/response.rb +0 -16
  30. data/lib/couchrest/core/server.rb +0 -88
  31. data/lib/couchrest/core/view.rb +0 -4
  32. data/lib/couchrest/helper/pager.rb +0 -103
  33. data/lib/couchrest/helper/streamer.rb +0 -44
  34. data/lib/couchrest/helper/upgrade.rb +0 -51
  35. data/lib/couchrest/mixins.rb +0 -4
  36. data/lib/couchrest/mixins/attachments.rb +0 -31
  37. data/lib/couchrest/mixins/callbacks.rb +0 -483
  38. data/lib/couchrest/mixins/design_doc.rb +0 -64
  39. data/lib/couchrest/mixins/document_queries.rb +0 -48
  40. data/lib/couchrest/mixins/extended_attachments.rb +0 -68
  41. data/lib/couchrest/mixins/extended_document_mixins.rb +0 -6
  42. data/lib/couchrest/mixins/properties.rb +0 -125
  43. data/lib/couchrest/mixins/validation.rb +0 -234
  44. data/lib/couchrest/mixins/views.rb +0 -168
  45. data/lib/couchrest/monkeypatches.rb +0 -119
  46. data/lib/couchrest/more/casted_model.rb +0 -28
  47. data/lib/couchrest/more/extended_document.rb +0 -217
  48. data/lib/couchrest/more/property.rb +0 -40
  49. data/lib/couchrest/support/blank.rb +0 -42
  50. data/lib/couchrest/support/class.rb +0 -191
  51. data/lib/couchrest/validation/auto_validate.rb +0 -163
  52. data/lib/couchrest/validation/contextual_validators.rb +0 -78
  53. data/lib/couchrest/validation/validation_errors.rb +0 -118
  54. data/lib/couchrest/validation/validators/absent_field_validator.rb +0 -74
  55. data/lib/couchrest/validation/validators/confirmation_validator.rb +0 -99
  56. data/lib/couchrest/validation/validators/format_validator.rb +0 -117
  57. data/lib/couchrest/validation/validators/formats/email.rb +0 -66
  58. data/lib/couchrest/validation/validators/formats/url.rb +0 -43
  59. data/lib/couchrest/validation/validators/generic_validator.rb +0 -120
  60. data/lib/couchrest/validation/validators/length_validator.rb +0 -134
  61. data/lib/couchrest/validation/validators/method_validator.rb +0 -89
  62. data/lib/couchrest/validation/validators/numeric_validator.rb +0 -104
  63. data/lib/couchrest/validation/validators/required_field_validator.rb +0 -109
  64. data/spec/couchrest/core/couchrest_spec.rb +0 -201
  65. data/spec/couchrest/core/database_spec.rb +0 -745
  66. data/spec/couchrest/core/design_spec.rb +0 -131
  67. data/spec/couchrest/core/document_spec.rb +0 -311
  68. data/spec/couchrest/core/server_spec.rb +0 -35
  69. data/spec/couchrest/helpers/pager_spec.rb +0 -122
  70. data/spec/couchrest/helpers/streamer_spec.rb +0 -23
  71. data/spec/couchrest/more/casted_extended_doc_spec.rb +0 -40
  72. data/spec/couchrest/more/casted_model_spec.rb +0 -98
  73. data/spec/couchrest/more/extended_doc_attachment_spec.rb +0 -130
  74. data/spec/couchrest/more/extended_doc_spec.rb +0 -509
  75. data/spec/couchrest/more/extended_doc_view_spec.rb +0 -207
  76. data/spec/couchrest/more/property_spec.rb +0 -130
  77. data/spec/couchrest/support/class_spec.rb +0 -59
  78. data/spec/fixtures/attachments/README +0 -3
  79. data/spec/fixtures/attachments/couchdb.png +0 -0
  80. data/spec/fixtures/attachments/test.html +0 -11
  81. data/spec/fixtures/more/article.rb +0 -34
  82. data/spec/fixtures/more/card.rb +0 -20
  83. data/spec/fixtures/more/course.rb +0 -14
  84. data/spec/fixtures/more/event.rb +0 -6
  85. data/spec/fixtures/more/invoice.rb +0 -17
  86. data/spec/fixtures/more/person.rb +0 -8
  87. data/spec/fixtures/more/question.rb +0 -6
  88. data/spec/fixtures/more/service.rb +0 -12
  89. data/spec/fixtures/views/lib.js +0 -3
  90. data/spec/fixtures/views/test_view/lib.js +0 -3
  91. data/spec/fixtures/views/test_view/only-map.js +0 -4
  92. data/spec/fixtures/views/test_view/test-map.js +0 -3
  93. data/spec/fixtures/views/test_view/test-reduce.js +0 -3
  94. data/spec/spec.opts +0 -6
  95. data/spec/spec_helper.rb +0 -26
  96. data/utils/remap.rb +0 -27
  97. data/utils/subset.rb +0 -30
@@ -1,64 +0,0 @@
1
- require 'digest/md5'
2
-
3
- module CouchRest
4
- module Mixins
5
- module DesignDoc
6
-
7
- def self.included(base)
8
- base.extend(ClassMethods)
9
- end
10
-
11
- module ClassMethods
12
- def design_doc_id
13
- "_design/#{design_doc_slug}"
14
- end
15
-
16
- def design_doc_slug
17
- return design_doc_slug_cache if (design_doc_slug_cache && design_doc_fresh)
18
- funcs = []
19
- design_doc ||= Design.new(default_design_doc)
20
- design_doc['views'].each do |name, view|
21
- funcs << "#{name}/#{view['map']}#{view['reduce']}"
22
- end
23
- md5 = Digest::MD5.hexdigest(funcs.sort.join(''))
24
- self.design_doc_slug_cache = "#{self.to_s}-#{md5}"
25
- end
26
-
27
- def default_design_doc
28
- {
29
- "language" => "javascript",
30
- "views" => {
31
- 'all' => {
32
- 'map' => "function(doc) {
33
- if (doc['couchrest-type'] == '#{self.to_s}') {
34
- emit(null,null);
35
- }
36
- }"
37
- }
38
- }
39
- }
40
- end
41
-
42
- def refresh_design_doc
43
- did = design_doc_id
44
- saved = database.get(did) rescue nil
45
- if saved
46
- design_doc['views'].each do |name, view|
47
- saved['views'][name] = view
48
- end
49
- database.save_doc(saved)
50
- self.design_doc = saved
51
- else
52
- design_doc['_id'] = did
53
- design_doc.delete('_rev')
54
- design_doc.database = database
55
- design_doc.save
56
- end
57
- self.design_doc_fresh = true
58
- end
59
-
60
- end # module ClassMethods
61
-
62
- end
63
- end
64
- end
@@ -1,48 +0,0 @@
1
- module CouchRest
2
- module Mixins
3
- module DocumentQueries
4
-
5
- def self.included(base)
6
- base.extend(ClassMethods)
7
- end
8
-
9
- module ClassMethods
10
-
11
- # Load all documents that have the "couchrest-type" field equal to the
12
- # name of the current class. Take the standard set of
13
- # CouchRest::Database#view options.
14
- def all(opts = {}, &block)
15
- self.design_doc ||= Design.new(default_design_doc)
16
- unless design_doc_fresh
17
- refresh_design_doc
18
- end
19
- view(:all, opts, &block)
20
- end
21
-
22
- # Load the first document that have the "couchrest-type" field equal to
23
- # the name of the current class.
24
- #
25
- # ==== Returns
26
- # Object:: The first object instance available
27
- # or
28
- # Nil:: if no instances available
29
- #
30
- # ==== Parameters
31
- # opts<Hash>::
32
- # View options, see <tt>CouchRest::Database#view</tt> options for more info.
33
- def first(opts = {})
34
- first_instance = self.all(opts.merge!(:limit => 1))
35
- first_instance.empty? ? nil : first_instance.first
36
- end
37
-
38
- # Load a document from the database by id
39
- def get(id)
40
- doc = database.get id
41
- new(doc)
42
- end
43
-
44
- end
45
-
46
- end
47
- end
48
- end
@@ -1,68 +0,0 @@
1
- module CouchRest
2
- module Mixins
3
- module ExtendedAttachments
4
-
5
- # creates a file attachment to the current doc
6
- def create_attachment(args={})
7
- raise ArgumentError unless args[:file] && args[:name]
8
- return if has_attachment?(args[:name])
9
- self['_attachments'] ||= {}
10
- set_attachment_attr(args)
11
- rescue ArgumentError => e
12
- raise ArgumentError, 'You must specify :file and :name'
13
- end
14
-
15
- # reads the data from an attachment
16
- def read_attachment(attachment_name)
17
- Base64.decode64(database.fetch_attachment(self, attachment_name))
18
- end
19
-
20
- # modifies a file attachment on the current doc
21
- def update_attachment(args={})
22
- raise ArgumentError unless args[:file] && args[:name]
23
- return unless has_attachment?(args[:name])
24
- delete_attachment(args[:name])
25
- set_attachment_attr(args)
26
- rescue ArgumentError => e
27
- raise ArgumentError, 'You must specify :file and :name'
28
- end
29
-
30
- # deletes a file attachment from the current doc
31
- def delete_attachment(attachment_name)
32
- return unless self['_attachments']
33
- self['_attachments'].delete attachment_name
34
- end
35
-
36
- # returns true if attachment_name exists
37
- def has_attachment?(attachment_name)
38
- !!(self['_attachments'] && self['_attachments'][attachment_name] && !self['_attachments'][attachment_name].empty?)
39
- end
40
-
41
- # returns URL to fetch the attachment from
42
- def attachment_url(attachment_name)
43
- return unless has_attachment?(attachment_name)
44
- "#{database.root}/#{self.id}/#{attachment_name}"
45
- end
46
-
47
- private
48
-
49
- def encode_attachment(data)
50
- ::Base64.encode64(data).gsub(/\r|\n/,'')
51
- end
52
-
53
- def get_mime_type(file)
54
- ::MIME::Types.type_for(file.path).empty? ?
55
- 'text\/plain' : MIME::Types.type_for(file.path).first.content_type.gsub(/\//,'\/')
56
- end
57
-
58
- def set_attachment_attr(args)
59
- content_type = args[:content_type] ? args[:content_type] : get_mime_type(args[:file])
60
- self['_attachments'][args[:name]] = {
61
- 'content-type' => content_type,
62
- 'data' => encode_attachment(args[:file].read)
63
- }
64
- end
65
-
66
- end # module ExtendedAttachments
67
- end
68
- end
@@ -1,6 +0,0 @@
1
- require File.join(File.dirname(__FILE__), 'properties')
2
- require File.join(File.dirname(__FILE__), 'document_queries')
3
- require File.join(File.dirname(__FILE__), 'views')
4
- require File.join(File.dirname(__FILE__), 'design_doc')
5
- require File.join(File.dirname(__FILE__), 'validation')
6
- require File.join(File.dirname(__FILE__), 'extended_attachments')
@@ -1,125 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'more', 'property')
2
-
3
- module CouchRest
4
- module Mixins
5
- module Properties
6
-
7
- class IncludeError < StandardError; end
8
-
9
- def self.included(base)
10
- base.cattr_accessor(:properties)
11
- base.class_eval <<-EOS, __FILE__, __LINE__
12
- @@properties = []
13
- EOS
14
- base.extend(ClassMethods)
15
- raise CouchRest::Mixins::Properties::IncludeError, "You can only mixin Properties in a class responding to [] and []=, if you tried to mixin CastedModel, make sure your class inherits from Hash or responds to the proper methods" unless (base.new.respond_to?(:[]) && base.new.respond_to?(:[]=))
16
- end
17
-
18
- def apply_defaults
19
- return unless self.respond_to?(:new_document?) && new_document?
20
- return unless self.class.respond_to?(:properties)
21
- return if self.class.properties.empty?
22
- # TODO: cache the default object
23
- self.class.properties.each do |property|
24
- key = property.name.to_s
25
- # let's make sure we have a default and we can assign the value
26
- if property.default && (self.respond_to?("#{key}=") || self.key?(key))
27
- if property.default.class == Proc
28
- self[key] = property.default.call
29
- else
30
- self[key] = Marshal.load(Marshal.dump(property.default))
31
- end
32
- end
33
- end
34
- end
35
-
36
- def cast_keys
37
- return unless self.class.properties
38
- self.class.properties.each do |property|
39
- next unless property.casted
40
- key = self.has_key?(property.name) ? property.name : property.name.to_sym
41
- target = property.type
42
- if target.is_a?(Array)
43
- next unless self[key]
44
- klass = ::CouchRest.constantize(target[0])
45
- self[property.name] = self[key].collect do |value|
46
- # Auto parse Time objects
47
- obj = ( (property.init_method == 'new') && klass == Time) ? Time.parse(value) : klass.send(property.init_method, value)
48
- obj.casted_by = self if obj.respond_to?(:casted_by)
49
- obj
50
- end
51
- else
52
- # Auto parse Time objects
53
- self[property.name] = if ((property.init_method == 'new') && target == 'Time')
54
- self[key].is_a?(String) ? Time.parse(self[key].dup) : self[key]
55
- else
56
- # Let people use :send as a Time parse arg
57
- klass = ::CouchRest.constantize(target)
58
- # I'm not convince we should or should not create a new instance if we are casting a doc/extended doc without default value and nothing was passed
59
- # unless (property.casted &&
60
- # (klass.superclass == CouchRest::ExtendedDocument || klass.superclass == CouchRest::Document) &&
61
- # (self[key].nil? || property.default.nil?))
62
- klass.send(property.init_method, self[key])
63
- #end
64
- end
65
- self[property.name].casted_by = self if self[property.name].respond_to?(:casted_by)
66
- end
67
- end
68
- end
69
-
70
- module ClassMethods
71
-
72
- def property(name, options={})
73
- define_property(name, options) unless self.properties.map{|p| p.name}.include?(name.to_s)
74
- end
75
-
76
- protected
77
-
78
- # This is not a thread safe operation, if you have to set new properties at runtime
79
- # make sure to use a mutex.
80
- def define_property(name, options={})
81
- # check if this property is going to casted
82
- options[:casted] = options[:cast_as] ? options[:cast_as] : false
83
- property = CouchRest::Property.new(name, (options.delete(:cast_as) || options.delete(:type)), options)
84
- create_property_getter(property)
85
- create_property_setter(property) unless property.read_only == true
86
- properties << property
87
- end
88
-
89
- # defines the getter for the property (and optional aliases)
90
- def create_property_getter(property)
91
- # meth = property.name
92
- class_eval <<-EOS, __FILE__, __LINE__
93
- def #{property.name}
94
- self['#{property.name}']
95
- end
96
- EOS
97
-
98
- if property.alias
99
- class_eval <<-EOS, __FILE__, __LINE__
100
- alias #{property.alias.to_sym} #{property.name.to_sym}
101
- EOS
102
- end
103
- end
104
-
105
- # defines the setter for the property (and optional aliases)
106
- def create_property_setter(property)
107
- meth = property.name
108
- class_eval <<-EOS
109
- def #{meth}=(value)
110
- self['#{meth}'] = value
111
- end
112
- EOS
113
-
114
- if property.alias
115
- class_eval <<-EOS
116
- alias #{property.alias.to_sym}= #{meth.to_sym}=
117
- EOS
118
- end
119
- end
120
-
121
- end # module ClassMethods
122
-
123
- end
124
- end
125
- end
@@ -1,234 +0,0 @@
1
- # Extracted from dm-validations 0.9.10
2
- #
3
- # Copyright (c) 2007 Guy van den Berg
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining
6
- # a copy of this software and associated documentation files (the
7
- # "Software"), to deal in the Software without restriction, including
8
- # without limitation the rights to use, copy, modify, merge, publish,
9
- # distribute, sublicense, and/or sell copies of the Software, and to
10
- # permit persons to whom the Software is furnished to do so, subject to
11
- # the following conditions:
12
- #
13
- # The above copyright notice and this permission notice shall be
14
- # included in all copies or substantial portions of the Software.
15
- #
16
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
-
24
- class Object
25
- def validatable?
26
- false
27
- end
28
- end
29
-
30
- require 'pathname'
31
- require File.join(File.dirname(__FILE__), '..', 'support', 'class')
32
-
33
- dir = File.join(Pathname(__FILE__).dirname.expand_path, '..', 'validation')
34
-
35
- require File.join(dir, 'validation_errors')
36
- require File.join(dir, 'contextual_validators')
37
- require File.join(dir, 'auto_validate')
38
-
39
- require File.join(dir, 'validators', 'generic_validator')
40
- require File.join(dir, 'validators', 'required_field_validator')
41
- require File.join(dir, 'validators', 'absent_field_validator')
42
- require File.join(dir, 'validators', 'format_validator')
43
- require File.join(dir, 'validators', 'length_validator')
44
- require File.join(dir, 'validators', 'numeric_validator')
45
- require File.join(dir, 'validators', 'method_validator')
46
- require File.join(dir, 'validators', 'confirmation_validator')
47
-
48
- module CouchRest
49
- module Validation
50
-
51
- def self.included(base)
52
- base.cattr_accessor(:auto_validation)
53
- base.class_eval <<-EOS, __FILE__, __LINE__
54
- # Turn off auto validation by default
55
- @@auto_validation = false
56
-
57
- # Force the auto validation for the class properties
58
- # This feature is still not fully ported over,
59
- # test are lacking, so please use with caution
60
- def self.auto_validate!
61
- self.auto_validation = true
62
- end
63
- EOS
64
-
65
- base.extend(ClassMethods)
66
- base.class_eval <<-EOS, __FILE__, __LINE__
67
- if method_defined?(:_run_save_callbacks)
68
- save_callback :before, :check_validations
69
- end
70
- EOS
71
- base.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
72
- def self.define_property(name, options={})
73
- super
74
- auto_generate_validations(properties.last)
75
- autovalidation_check = true
76
- end
77
- RUBY_EVAL
78
- end
79
-
80
- # Ensures the object is valid for the context provided, and otherwise
81
- # throws :halt and returns false.
82
- #
83
- def check_validations(context = :default)
84
- throw(:halt, false) unless context.nil? || valid?(context)
85
- end
86
-
87
- # Return the ValidationErrors
88
- #
89
- def errors
90
- @errors ||= ValidationErrors.new
91
- end
92
-
93
- # Mark this resource as validatable. When we validate associations of a
94
- # resource we can check if they respond to validatable? before trying to
95
- # recursivly validate them
96
- #
97
- def validatable?
98
- true
99
- end
100
-
101
- # Alias for valid?(:default)
102
- #
103
- def valid_for_default?
104
- valid?(:default)
105
- end
106
-
107
- # Check if a resource is valid in a given context
108
- #
109
- def valid?(context = :default)
110
- self.class.validators.execute(context, self)
111
- end
112
-
113
- # Begin a recursive walk of the model checking validity
114
- #
115
- def all_valid?(context = :default)
116
- recursive_valid?(self, context, true)
117
- end
118
-
119
- # Do recursive validity checking
120
- #
121
- def recursive_valid?(target, context, state)
122
- valid = state
123
- target.instance_variables.each do |ivar|
124
- ivar_value = target.instance_variable_get(ivar)
125
- if ivar_value.validatable?
126
- valid = valid && recursive_valid?(ivar_value, context, valid)
127
- elsif ivar_value.respond_to?(:each)
128
- ivar_value.each do |item|
129
- if item.validatable?
130
- valid = valid && recursive_valid?(item, context, valid)
131
- end
132
- end
133
- end
134
- end
135
- return valid && target.valid?
136
- end
137
-
138
-
139
- def validation_property_value(name)
140
- self.respond_to?(name, true) ? self.send(name) : nil
141
- end
142
-
143
- # Get the corresponding Object property, if it exists.
144
- def validation_property(field_name)
145
- properties.find{|p| p.name == field_name}
146
- end
147
-
148
- module ClassMethods
149
- include CouchRest::Validation::ValidatesPresent
150
- include CouchRest::Validation::ValidatesAbsent
151
- include CouchRest::Validation::ValidatesIsConfirmed
152
- # include CouchRest::Validation::ValidatesIsPrimitive
153
- # include CouchRest::Validation::ValidatesIsAccepted
154
- include CouchRest::Validation::ValidatesFormat
155
- include CouchRest::Validation::ValidatesLength
156
- # include CouchRest::Validation::ValidatesWithin
157
- include CouchRest::Validation::ValidatesIsNumber
158
- include CouchRest::Validation::ValidatesWithMethod
159
- # include CouchRest::Validation::ValidatesWithBlock
160
- # include CouchRest::Validation::ValidatesIsUnique
161
- include CouchRest::Validation::AutoValidate
162
-
163
- # Return the set of contextual validators or create a new one
164
- #
165
- def validators
166
- @validations ||= ContextualValidators.new
167
- end
168
-
169
- # Clean up the argument list and return a opts hash, including the
170
- # merging of any default opts. Set the context to default if none is
171
- # provided. Also allow :context to be aliased to :on, :when & group
172
- #
173
- def opts_from_validator_args(args, defaults = nil)
174
- opts = args.last.kind_of?(Hash) ? args.pop : {}
175
- context = :default
176
- context = opts[:context] if opts.has_key?(:context)
177
- context = opts.delete(:on) if opts.has_key?(:on)
178
- context = opts.delete(:when) if opts.has_key?(:when)
179
- context = opts.delete(:group) if opts.has_key?(:group)
180
- opts[:context] = context
181
- opts.merge!(defaults) unless defaults.nil?
182
- opts
183
- end
184
-
185
- # Given a new context create an instance method of
186
- # valid_for_<context>? which simply calls valid?(context)
187
- # if it does not already exist
188
- #
189
- def create_context_instance_methods(context)
190
- name = "valid_for_#{context.to_s}?" # valid_for_signup?
191
- if !self.instance_methods.include?(name)
192
- class_eval <<-EOS, __FILE__, __LINE__
193
- def #{name} # def valid_for_signup?
194
- valid?('#{context.to_s}'.to_sym) # valid?('signup'.to_sym)
195
- end # end
196
- EOS
197
- end
198
-
199
- all = "all_valid_for_#{context.to_s}?" # all_valid_for_signup?
200
- if !self.instance_methods.include?(all)
201
- class_eval <<-EOS, __FILE__, __LINE__
202
- def #{all} # def all_valid_for_signup?
203
- all_valid?('#{context.to_s}'.to_sym) # all_valid?('signup'.to_sym)
204
- end # end
205
- EOS
206
- end
207
- end
208
-
209
- # Create a new validator of the given klazz and push it onto the
210
- # requested context for each of the attributes in the fields list
211
- #
212
- def add_validator_to_context(opts, fields, klazz)
213
- fields.each do |field|
214
- validator = klazz.new(field.to_sym, opts)
215
- if opts[:context].is_a?(Symbol)
216
- unless validators.context(opts[:context]).include?(validator)
217
- validators.context(opts[:context]) << validator
218
- create_context_instance_methods(opts[:context])
219
- end
220
- elsif opts[:context].is_a?(Array)
221
- opts[:context].each do |c|
222
- unless validators.context(c).include?(validator)
223
- validators.context(c) << validator
224
- create_context_instance_methods(c)
225
- end
226
- end
227
- end
228
- end
229
- end
230
-
231
- end # module ClassMethods
232
- end # module Validation
233
-
234
- end # module CouchRest