appflux/appflux-ruby

View on GitHub
lib/generators/appflux_ruby/install_generator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module AppfluxRuby
  class InstallGenerator < ::Rails::Generators::Base
    source_root File.expand_path("../", __FILE__)

    def create_bugflux_initializer
      copy_file 'appflux.rb', 'config/initializers/appflux.rb'
    end

  end
end