Sha256: 2037408b94ff06d5a9324b18569197fbfc9a17727b673660e604c919489c39c1

Contents?: true

Size: 811 Bytes

Versions: 6

Compression:

Stored size: 811 Bytes

Contents

unless %w(jruby rbx).include? RUBY_ENGINE
  require 'simplecov'
  require 'coveralls'

  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
    Coveralls::SimpleCov::Formatter
  ]
  SimpleCov.start
end

# Internal
require 'capistrano-ec2_role_tag'

# Require this file using `require "spec_helper"` within each of your specs
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  config.order = 'random' # Run specs in random order to surface order dependencies.
  config.expect_with :rspec do |c|
    c.syntax = :expect  # disable `should` syntax  http://goo.gl/BGxqP
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
capistrano-ec2_role_tag-0.0.6 spec/spec_helper.rb
capistrano-ec2_role_tag-0.1.4 spec/spec_helper.rb
capistrano-ec2_role_tag-0.1.2 spec/spec_helper.rb
capistrano-ec2_role_tag-0.1.0 spec/spec_helper.rb
capistrano-ec2_role_tag-0.0.4 spec/spec_helper.rb
capistrano-ec2_role_tag-0.0.2 spec/spec_helper.rb