Sha256: 3b0900e9dbd22cf72e3eca033e6b8325df3dd659023c1d631ed423379a58672e

Contents?: true

Size: 301 Bytes

Versions: 12

Compression:

Stored size: 301 Bytes

Contents

module EgovUtils
  class PersonSchema < AzaharaSchema::ModelSchema

    def main_attribute_name
      'fullname'
    end

    def initialize_available_attributes
      @available_attributes ||= []
      @available_attributes << Fullname.new(model, 'fullname', 'string')
      super
    end

  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
egov_utils-0.1.15 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.14 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.13 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.12 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.11 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.10 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.9 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.8 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.7 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.6 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.5 app/schemas/egov_utils/person_schema.rb
egov_utils-0.1.4 app/schemas/egov_utils/person_schema.rb