Sha256: 34b73973f32acdfbd83ade13197d028749b76c49d5d908f177060a22289aa85e

Contents?: true

Size: 295 Bytes

Versions: 2

Compression:

Stored size: 295 Bytes

Contents

# encoding: utf-8

module Loaf
  # Basic crumb container
  class Crumb
    attr_reader :name

    attr_reader :url

    attr_reader :force

    def initialize(name, url, options = {})
      @name  = name
      @url   = url
      @force = options.fetch(:force) { false }
    end
  end
end # Loaf

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
loaf-0.5.0 lib/loaf/crumb.rb
loaf-0.4.0 lib/loaf/crumb.rb