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 / web_link.rb

module CommonCartridge
  module Elements
    module Resources
      class WebLink
        attr_accessor :identifier

        include SAXMachine

        element :title
        element :url
        element :url, value: :href, as: :href
        element :url, value: :target, as: :target
        element :url, value: :windoFeatures, as: :window_features

        def self.type
          :weblink
        end

        def self.pattern
          /wl/
        end
      end
    end
  end
end