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    
neoteric-deploy / app / controllers / neoteric_deploy / notification_controller.rb
Size: Mime:
module NeotericDeploy
  class NotificationController < ApplicationController
    def fire
      mailer.notify(recipients).deliver
      render :nothing => true
    end

    private
    def recipients
      NeotericDeploy.email_recipients
    end

    def mailer
      Mailer
    end
  end
end