Sha256: f8c688638bdcb06d37002df59d76bb8d92d6da173ac730e1a73a0cbdd0e4b1b1

Contents?: true

Size: 824 Bytes

Versions: 20

Compression:

Stored size: 824 Bytes

Contents

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require "capistrano/all"
require "rspec"
require "mocha/api"
require "time"

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir['#{File.dirname(__FILE__)}/support/**/*.rb'].each { |f| require f }

RSpec.configure do |config|
  config.raise_errors_for_deprecations!
  config.mock_framework = :mocha
  config.order = "random"

  config.around(:example, capture_io: true) do |example|
    begin
      Rake.application.options.trace_output = StringIO.new
      $stdout = StringIO.new
      $stderr = StringIO.new
      example.run
    ensure
      Rake.application.options.trace_output = STDERR
      $stdout = STDOUT
      $stderr = STDERR
    end
  end
end

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
capistrano-3.19.2 spec/spec_helper.rb
capistrano-3.19.1 spec/spec_helper.rb
capistrano-3.19.0 spec/spec_helper.rb
capistrano-3.18.1 spec/spec_helper.rb
honeybadger-5.4.0 vendor/bundle/ruby/3.2.0/gems/capistrano-3.18.0/spec/spec_helper.rb
honeybadger-5.3.0 vendor/bundle/ruby/3.2.0/gems/capistrano-3.18.0/spec/spec_helper.rb
capistrano-3.18.0 spec/spec_helper.rb
capistrano-3.17.3 spec/spec_helper.rb
capistrano-3.17.2 spec/spec_helper.rb
capistrano-3.17.1 spec/spec_helper.rb
capistrano-3.17.0 spec/spec_helper.rb
capistrano-3.16.0 spec/spec_helper.rb
capistrano-3.15.0 spec/spec_helper.rb
capistrano-3.14.1 spec/spec_helper.rb
capistrano-3.14.0 spec/spec_helper.rb
capistrano-3.13.0 spec/spec_helper.rb
capistrano-3.12.1 spec/spec_helper.rb
capistrano-3.12.0 spec/spec_helper.rb
capistrano-3.11.2 spec/spec_helper.rb
capistrano-3.11.1 spec/spec_helper.rb