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.47.0 lib/xsys/model/product_category.rb
xsys-0.46.0 lib/xsys/model/product_category.rb
xsys-0.45.0 lib/xsys/model/product_category.rb
xsys-0.44.0 lib/xsys/model/product_category.rb
xsys-0.43.0 lib/xsys/model/product_category.rb
xsys-0.42.0 lib/xsys/model/product_category.rb
xsys-0.41.0 lib/xsys/model/product_category.rb
xsys-0.40.0 lib/xsys/model/product_category.rb
xsys-0.39.0 lib/xsys/model/product_category.rb
xsys-0.38.0 lib/xsys/model/product_category.rb
xsys-0.37.0 lib/xsys/model/product_category.rb
xsys-0.36.0 lib/xsys/model/product_category.rb
xsys-0.35.0 lib/xsys/model/product_category.rb
xsys-0.34.0 lib/xsys/model/product_category.rb
xsys-0.33.0 lib/xsys/model/product_category.rb
xsys-0.32.0 lib/xsys/model/product_category.rb
xsys-0.31.0 lib/xsys/model/product_category.rb
xsys-0.30.0 lib/xsys/model/product_category.rb
xsys-0.28.0 lib/xsys/model/product_category.rb
xsys-0.27.0 lib/xsys/model/product_category.rb