Sha256: c9bf3ea7bb42bcf00adfb87e744dc6b03faf7a7ccc248e4cfe2cddaacf866091

Contents?: true

Size: 632 Bytes

Versions: 7

Compression:

Stored size: 632 Bytes

Contents

#encoding: utf-8
$LOAD_PATH << File.expand_path( '../../lib', __FILE__ )

unless ENV['TRAVIS_CI'] == 'true'
  require 'pry'
  require 'debugger'
  require 'ap'
  require 'benchmark'
end

unless ENV['TRAVIS_CI'] == 'true'
  require 'simplecov'
  SimpleCov.start
  SimpleCov.command_name 'rspec'
end

require 'fedux_org/stdlib'
include FeduxOrg::Stdlib

RSpec.configure do |c|
  c.treat_symbols_as_metadata_keys_with_true_values = true
  c.filter_run :focus => true
  c.run_all_when_everything_filtered = true
end

def examples_dir
  File.expand_path( '../examples', __FILE__ )
end

require 'active_support/core_ext/kernel/reporting'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fedux_org-stdlib-0.0.33 spec/spec_helper.rb
fedux_org-stdlib-0.0.32 spec/spec_helper.rb
fedux_org-stdlib-0.0.31 spec/spec_helper.rb
fedux_org-stdlib-0.0.30 spec/spec_helper.rb
fedux_org-stdlib-0.0.29 spec/spec_helper.rb
fedux_org-stdlib-0.0.28 spec/spec_helper.rb
fedux_org-stdlib-0.0.26 spec/spec_helper.rb