Class: Utopia::Controller::Rewrite::Rule

Inherits:
Object
  • Object
show all
Defined in:
lib/utopia/controller/rewrite.rb

Direct Known Subclasses

ExtractPrefixRule

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arguments, block) ⇒ Rule

Returns a new instance of Rule.



38
39
40
41
42
43
# File 'lib/utopia/controller/rewrite.rb', line 38

def initialize(arguments, block)
  @arguments = arguments
  @block = block
  
  self.freeze
end

Instance Attribute Details

#argumentsObject (readonly)

Returns the value of attribute arguments.



52
53
54
# File 'lib/utopia/controller/rewrite.rb', line 52

def arguments
  @arguments
end

#blockObject (readonly)

Returns the value of attribute block.



53
54
55
# File 'lib/utopia/controller/rewrite.rb', line 53

def block
  @block
end

Instance Method Details

#apply_match_to_context(match_data, context) ⇒ Object



55
56
57
58
59
# File 'lib/utopia/controller/rewrite.rb', line 55

def apply_match_to_context(match_data, context)
  match_data.names.each do |name|
    context.instance_variable_set("@#{name}", match_data[name])
  end
end

#freezeObject



45
46
47
48
49
50
# File 'lib/utopia/controller/rewrite.rb', line 45

def freeze
  @arguments.freeze
  @block.freeze
  
  super
end