Sha256: 21a698d0373f61e8f431574fe39d1f17c322c599be018798139feaab3ffb3903

Contents?: true

Size: 572 Bytes

Versions: 1

Compression:

Stored size: 572 Bytes

Contents

# frozen_string_literal: true

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

require 'rspec/core'

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/object/json'
require 'active_support/core_ext/enumerable'
require 'active_support/configurable'
require 'rudash'

%w[../../lib/attributes-mapper ../../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
attributes-mapper-0.1.4 dev/setup.rb