Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / common_cartridge   ruby

Repository URL to install this package:

Version: 1.0.1 

/ lib / common_cartridge / elements / resources / attachments.rb

module CommonCartridge
  module Elements
    module Resources
      module Attachments
        class Attachment
          include SAXMachine

          attribute :href
          attribute :role
        end

        class RootAttachment
          include SAXMachine

          elements :attachment, class: Attachment, as: :attachments
        end
      end
    end
  end
end