Sha256: bb5fa50cfda0fa4cb32e4f32d9207faba3a4cb07e4b2688a86511f0bebdd2554

Contents?: true

Size: 896 Bytes

Versions: 6

Compression:

Stored size: 896 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
alias :examples_directory :examples_dir 


require 'fedux_org/stdlib/filesystem'
include FeduxOrg::Stdlib::Filesystem

def root_directory
  FeduxOrg::Stdlib.root_directory 
end

RSpec.configure do |c|
  c.before( :each ) do
    cleanup_working_directory
  end
end

require 'active_support/core_ext/kernel/reporting'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fedux_org-stdlib-0.1.3 spec/spec_helper.rb
fedux_org-stdlib-0.1.2 spec/spec_helper.rb
fedux_org-stdlib-0.1.1 spec/spec_helper.rb
fedux_org-stdlib-0.1.0 spec/spec_helper.rb
fedux_org-stdlib-0.0.39 spec/spec_helper.rb
fedux_org-stdlib-0.0.38 spec/spec_helper.rb