class Gearhead::Extensions::CustomActions::CustomAction

Attributes

block[R]
name[R]
verbs[R]

Public Class Methods

new(name, verbs, &block) click to toggle source
# File lib/gearhead/extensions/custom_actions.rb, line 11
def initialize(name, verbs, &block)
  @name = name
  @verbs = verbs
  @block = block
end