Sha256: d09f2dd387b9baf3272748e2baa70ba9dddda8a9ed1928a268cddc820946c14c

Contents?: true

Size: 555 Bytes

Versions: 1

Compression:

Stored size: 555 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'

%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.0 dev/setup.rb