class Capistrano::Doctor::EnvironmentDoctor

Public Instance Methods

call() click to toggle source
# File lib/capistrano/doctor/environment_doctor.rb, line 8
      def call
        title("Environment")
        puts "          Ruby     #{RUBY_DESCRIPTION}
          Rubygems #{Gem::VERSION}
          Bundler  #{defined?(Bundler::VERSION) ? Bundler::VERSION : 'N/A'}
          Command  #{$PROGRAM_NAME} #{ARGV.join(' ')}
".gsub(/^\s+/, "")
      end