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

Repository URL to install this package:

Details    
mappyland / lib / mappyland / popup_html.rb
Size: Mime:
module Mappyland
  class PopupHtml
    attr_reader :object, :title, :url

    def initialize(object, title, url)
      @object, @title, @url = object, title, url
    end

    def output
      output = "<a href='#{url}'>"
      output << "<h3>#{title}</h3>"
      output << '</a>'
    end
  end
end