Sha256: fce1751adcfd33466555564c6fab559277c16b8f70426a92bae2ebc213f79752

Contents?: true

Size: 350 Bytes

Versions: 84

Compression:

Stored size: 350 Bytes

Contents

module Xsys
  module Model
    class ProductCategory
      def self.attr_list
        [:id, :name]
      end

      attr_reader *attr_list

      def initialize(attributes={})
        attributes.each do |k, v|
          self.send("#{k}=", v) if self.respond_to?(k)
        end
      end

      private

      attr_writer *attr_list
    end
  end
end

Version data entries

84 entries across 84 versions & 1 rubygems

Version Path
xsys-0.14.0 lib/xsys/model/product_category.rb
xsys-0.13.1 lib/xsys/model/product_category.rb
xsys-0.13.0 lib/xsys/model/product_category.rb
xsys-0.12.0 lib/xsys/model/product_category.rb
xsys-0.11.1 lib/xsys/model/product_category.rb
xsys-0.10.4 lib/xsys/model/product_category.rb
xsys-0.10.3 lib/xsys/model/product_category.rb
xsys-0.10.2 lib/xsys/model/product_category.rb
xsys-0.10.1 lib/xsys/model/product_category.rb
xsys-0.10.0 lib/xsys/model/product_category.rb
xsys-0.9.2 lib/xsys/model/product_category.rb
xsys-0.9.1 lib/xsys/model/product_category.rb
xsys-0.9.0 lib/xsys/model/product_category.rb
xsys-0.8.7 lib/xsys/model/product_category.rb
xsys-0.8.6 lib/xsys/model/product_category.rb
xsys-0.8.5 lib/xsys/model/product_category.rb
xsys-0.8.4 lib/xsys/model/product_category.rb
xsys-0.8.3 lib/xsys/model/product_category.rb
xsys-0.8.2 lib/xsys/model/product_category.rb
xsys-0.8.1 lib/xsys/model/product_category.rb