Sha256: e39213d524b3861935a91f4abf9efd5d9e1f39e0a6af678518e23fa88a81701c

Contents?: true

Size: 568 Bytes

Versions: 37

Compression:

Stored size: 568 Bytes

Contents

require "factory_girl/declaration/static"
require "factory_girl/declaration/dynamic"
require "factory_girl/declaration/association"
require "factory_girl/declaration/implicit"

module FactoryGirl
  class Declaration
    attr_reader :name

    def initialize(name, ignored = false)
      @name    = name
      @ignored = ignored
    end

    def ignore
      $stderr.puts "DEPRECATION WARNING: Use ignore block syntax instead of calling #ignore"
      @ignored = true
    end

    def to_attributes
      build
    end

    protected
    attr_reader :ignored
  end
end

Version data entries

37 entries across 32 versions & 3 rubygems

Version Path
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/factory_girl-2.6.4/lib/factory_girl/declaration.rb
challah-0.6.2 vendor/bundle/gems/factory_girl-2.6.1/lib/factory_girl/declaration.rb
challah-0.6.1 vendor/bundle/gems/factory_girl-2.6.1/lib/factory_girl/declaration.rb
challah-0.6.1 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration.rb
challah-0.6.0 vendor/bundle/gems/factory_girl-2.6.1/lib/factory_girl/declaration.rb
challah-0.6.0 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration.rb
challah-0.5.4 vendor/bundle/gems/factory_girl-2.6.1/lib/factory_girl/declaration.rb
challah-0.5.4 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration.rb
challah-0.5.3 vendor/bundle/gems/factory_girl-2.6.1/lib/factory_girl/declaration.rb
challah-0.5.3 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration.rb
challah-0.5.2 vendor/bundle/gems/factory_girl-2.6.1/lib/factory_girl/declaration.rb
challah-0.5.2 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration.rb
factory_girl-2.6.4 lib/factory_girl/declaration.rb
factory_girl-2.6.3 lib/factory_girl/declaration.rb
factory_girl-2.6.2 lib/factory_girl/declaration.rb
challah-0.5.1 vendor/bundle/gems/factory_girl-2.6.1/lib/factory_girl/declaration.rb
factory_girl-2.6.1 lib/factory_girl/declaration.rb
challah-0.5.0 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/declaration.rb
factory_girl-2.6.0 lib/factory_girl/declaration.rb
factory_girl-2.5.2 lib/factory_girl/declaration.rb