Sha256: a6bbf395e94e7100ba50e0b5dc174073226d0dd475939312d9e837ceb0a7040f

Contents?: true

Size: 738 Bytes

Versions: 1

Compression:

Stored size: 738 Bytes

Contents

# frozen_string_literal: true

# Sets up environment for running specs and via irb e.g. `$ irb -r ./dev/setup`
require 'delegate'
require "pathname"

require 'rspec/core'
require 'colorize'
require 'stackprof'

require 'active_support/core_ext/hash/keys'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/object/blank'
require 'active_support/core_ext/enumerable'
require 'active_support/hash_with_indifferent_access'
require 'mime-types'
require 'faker'
require 'oj'
require 'rudash'
require 'dottie'
require 'addressable'
require 'rack/utils'
require 'measured'

%w[../../lib/rordash ../../spec/spec_helper].each do |rel_path|
  require File.expand_path(rel_path, Pathname.new(__FILE__).realpath)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rordash-0.1.2 dev/setup.rb