Sha256: 0eafe86cb1d557b0e8519799e5d9b47bca94ae282b9567012176a64449db20c5
Contents?: true
Size: 943 Bytes
Versions: 1
Compression:
Stored size: 943 Bytes
Contents
require 'active_support' module Easy module ReferenceData def self.refresh(clazz, unique_attribute_symbol, unique_attribute_value, attributes) self.update_or_create(clazz, attributes.merge(unique_attribute_symbol => unique_attribute_value), keys: [unique_attribute_symbol]) end def self.update_or_create(clazz, attributes, options) unique_attribute_keys = options.fetch(:keys) record = clazz.where(attributes.slice(*unique_attribute_keys)).first_or_initialize if record.new_record? $stderr.puts "..creating #{clazz}(#{attributes.slice(*unique_attribute_keys)})" else $stderr.puts "..updating #{clazz}(#{attributes.slice(*unique_attribute_keys)})" end begin record.update_attributes!(attributes) rescue $stderr.puts "Save failed for #{record.class} with attributes #{attributes.inspect}" raise end record end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
easy_reference_data-1.0.0 | lib/easy/reference_data/refresh.rb |