Sha256: 4052bc9fbf49d3daa0ebfe72d13bd8e10e783456a82510f70396edb4cf16adbc

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

$:.unshift File.dirname(__FILE__)

require 'route/path'
require 'route/variable'
require 'route/request_method'

class Usher
  class Route
    attr_reader :paths, :original_path, :requirements, :conditions, :params, :primary_path
    
    def initialize(original_path, router, options = nil) # :nodoc:
      @original_path = original_path
      @router = router
      @requirements = options && options.delete(:requirements)
      @conditions = options && options.delete(:conditions)
      @paths = @router.splitter.split(@original_path, @requirements).collect {|path| Path.new(self, path)}
      @primary_path = @paths.first
      #FIXME params is poorly named. this shouldn't be an array
      @params = []
    end
    
    
    # Sets +options+ on a route. Returns +self+.
    #   
    #   Request = Struct.new(:path)
    #   set = Usher.new
    #   route = set.add_route('/test')
    #   route.to(:controller => 'testing', :action => 'index')
    #   set.recognize(Request.new('/test')).first.params => {:controller => 'testing', :action => 'index'}
    def to(options = nil, &block)
      @params << (block_given? ? block : options)
      self
    end

    # Sets route as referenceable from +name+. Returns +self+.
    #   
    #   set = Usher.new
    #   route = set.add_route('/test').name(:route)
    #   set.generate_url(:route) => '/test'
    def name(name)
      @router.name(name, self)
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
joshbuddy-usher-0.4.3 lib/usher/route.rb