Sha256: f0042f086a8b661396bf213fc63980b2df68a618c18490eeff41bad55ec0776d
Contents?: true
Size: 734 Bytes
Versions: 2
Compression:
Stored size: 734 Bytes
Contents
# frozen_string_literal: true require "active_support/concern" require "active_support/core_ext/module/attribute_accessors" require "active_support/core_ext/module/delegation" require "fixtury/version" require "fixtury/schema" require "fixtury/locator" require "fixtury/store" # Top level namespace of the gem module Fixtury # Shortcut for opening the top level schema. def self.define(&block) schema.define(&block) schema end # The default top level schema. Fixtury::Schema instances can be completely self-contained but most # usage would be through this shared definition. def self.schema @schema ||= ::Fixtury::Schema.new(parent: nil, name: "") end end require "fixtury/railtie" if defined?(Rails)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fixtury-0.3.5 | lib/fixtury.rb |
fixtury-0.3.4 | lib/fixtury.rb |