Sha256: 39786a9077ff7a725f2781fa93e5b1822ebe1b7c3add99aa4f12bfe40377f704

Contents?: true

Size: 1.02 KB

Versions: 55

Compression:

Stored size: 1.02 KB

Contents

require 'travis/cli'

module Travis
  module CLI
    class Console < ApiCommand
      description "interactive shell; requires `pry`"
      on '-x', '--eval LINE', 'run line of ruby' do |c, line|
        c.instance_eval(line)
        exit
      end

      def run
        ensure_pry

        Object.send(:include, Client::Namespace.new(session))
        hooks = defined?(Pry::Hooks) ? Pry::Hooks.new : {}
        opts = {quiet: true, output: $stdout, hooks: hooks }
        opts.merge!({prompt: prompt}) if prompt
        binding.pry(opts)
      end

      private

      def ensure_pry
        require 'pry'
      rescue LoadError
        msg = [
          'You need to install pry to use Travis CLI console. Try',
          nil,
          '$ (sudo) gem install pry'
        ].join("\n")
        error msg
      end

      def prompt
        if Pry.const_defined? :SIMPLE_PROMPT
          Pry::SIMPLE_PROMPT
        elsif defined?(Pry::Prompt)
          Pry::Prompt[:simple]
        else
          nil
        end
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
travis-1.8.14.travis.1178.9 lib/travis/cli/console.rb
travis-1.8.14.travis.1175.9 lib/travis/cli/console.rb
travis-1.8.14.travis.1172.9 lib/travis/cli/console.rb
travis-1.8.14.travis.1164.9 lib/travis/cli/console.rb
travis-1.8.14.travis.1163.9 lib/travis/cli/console.rb
travis-1.8.14.travis.1162.9 lib/travis/cli/console.rb
travis-1.8.14.travis.1160.9 lib/travis/cli/console.rb
travis-1.8.13 lib/travis/cli/console.rb
travis-1.8.14.travis.1156.9 lib/travis/cli/console.rb
travis-1.8.14.travis.1155.9 lib/travis/cli/console.rb
travis-1.8.13.travis.1152.9 lib/travis/cli/console.rb
travis-1.8.13.travis.1148.9 lib/travis/cli/console.rb
travis-1.8.12 lib/travis/cli/console.rb
travis-1.8.13.travis.1141.9 lib/travis/cli/console.rb
travis-1.8.12.travis.1136.9 lib/travis/cli/console.rb