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    
scrapbook / app / controllers / scrapbook / application_controller.rb
Size: Mime:
module Scrapbook
  class ApplicationController < ActionController::Base
    if Scrapbook.config.before_action
      before_action Scrapbook.config.before_action
    end

    def url_options
      { :context => params[:context] }.merge(super)
    end
  end
end