Sha256: 39d40758ea553a2c0bc4d2d380a68bf0cecb2ec58b8844065c622432813fbb20
Contents?: true
Size: 855 Bytes
Versions: 3
Compression:
Stored size: 855 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 '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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fedux_org-stdlib-0.0.37 | spec/spec_helper.rb |
fedux_org-stdlib-0.0.36 | spec/spec_helper.rb |
fedux_org-stdlib-0.0.35 | spec/spec_helper.rb |