Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
activeadmin / lib / active_admin / controller_action.rb
Size: Mime:
module ActiveAdmin
  class ControllerAction
    attr_reader :name
    def initialize(name, options = {})
      @name, @options = name, options
    end

    def http_verb
      @options[:method] ||= :get
    end
  end
end