lib/api-client/errors.rb in api-client-1.5.0 vs lib/api-client/errors.rb in api-client-1.5.1

- old
+ new

@@ -1,17 +1,26 @@ require "active_model" # ApiClient::Errors provide extra functionality to ActiveModel::Errors. class ApiClient::Errors < ActiveModel::Errors + # Add serveral errors from a hash to the object. + # + # @return [ApiClient::Errors] The Error object. + def add_errors(errors = {}) + errors.each do |key, value| + self.set(key, value) + end + self + end + # Create a hash of attributes with unique validation error messages. # # Example: # user.errors.unique_messages #=> { :name => [ can't be empty and is invalid ]} # # @return [Hash] The hash of attributes with a unique error message. - # def unique_messages errors = {} to_hash.each do |attribute, messages| errors[attribute] = messages.join(" and ") end errors end -end \ No newline at end of file +end