Sha256: 7fae1aded0f3bfbd480929e6cff731ff1288b0589e33ca6b4599f89d63664a38

Contents?: true

Size: 368 Bytes

Versions: 1

Compression:

Stored size: 368 Bytes

Contents

module FantasyFaker
  VERSION = '0.0.2'

  require 'fantasy_faker/utils/array_utils'
  require 'fantasy_faker/utils/base_module'

  extend BaseModule

  BASE_LIB_PATH = File.expand_path('..', __FILE__)

  # Load all constants.
  Dir["#{BASE_LIB_PATH}/fantasy_faker/*.rb"].sort.each do |filename|
    require "fantasy_faker/#{File.basename(filename, '.rb')}"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fantasy_faker-0.0.2 lib/fantasy_faker.rb