Sha256: 1972bf5830e9ff756a2e2c9ff33692f1c1d5c8b781594dca5663f9c2bccfa76b

Contents?: true

Size: 1.7 KB

Versions: 3

Compression:

Stored size: 1.7 KB

Contents

module Intercom
  module Generators
    class ConfigGenerator < ::Rails::Generators::Base

      def self.source_root
        File.dirname(__FILE__)
      end

      argument :app_id, :desc => "Your Intercom app-id, which can be found here: https://app.intercom.io/apps/api_keys"
      argument :api_secret, :desc => "Your Intercom api-secret, used for secure mode", :optional => true
      argument :api_key, :desc => "An Intercom API key, for various rake tasks", :optional => true
      argument :session_duration, :desc => "user session duration, this should match your app", :optional => true

      FALSEY_RESPONSES = ['n', 'no']
      def create_config_file
        @app_id = app_id
        @api_secret = api_secret
        @api_key = api_key
        @session_duration = session_duration
        @include_for_logged_out_users = false

        introduction = <<-desc
Intercom will automatically insert its javascript before the closing '</body>'
tag on every page where it can find a logged-in user. Intercom by default
looks for logged-in users, in the controller, via 'current_user' and '@user'.

Is the logged-in user accessible via either 'current_user' or '@user'? [Yn]
        desc

        print "#{introduction.strip} "
        default_ok = $stdin.gets.strip.downcase

        if FALSEY_RESPONSES.include?(default_ok)
          custom_current_user_question = <<-desc

How do you access the logged-in user in your controllers? This can be
any Ruby code, e.g. 'current_customer', '@admin', etc.:
          desc

          print "#{custom_current_user_question.rstrip} "
          @current_user = $stdin.gets.strip
        end

        template("intercom.rb.erb", "config/initializers/intercom.rb")
      end

    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
intercom-rails-0.2.35 lib/rails/generators/intercom/config/config_generator.rb
intercom-rails-0.2.34 lib/rails/generators/intercom/config/config_generator.rb
intercom-rails-0.2.33 lib/rails/generators/intercom/config/config_generator.rb