Sha256: 86208ea26268c6b596c266aeb416ea66cb84d138dab5b63f6060a9ec4f62af92

Contents?: true

Size: 547 Bytes

Versions: 1

Compression:

Stored size: 547 Bytes

Contents

module It
  # A class for links
  class Link < Tag
    include ActionView::Helpers::UrlHelper

    attr_reader :href

    # See It.link for details. You can do everything there and save 6 characters.
    def initialize(href, options = {})
      raise TypeError, 'Invalid href given' unless [Hash, String].include?(href.class)

      super(:a, options)
      @href = href
    end

    # Will be called from inside the helper to return the tag with the given content.
    def process(content)
      link_to(content, href, options)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
it-1.0.0 lib/it/link.rb