Sha256: 781eac2c2ac13949c2b34260337c544e6abe59aebab2480cda72e169ec702674

Contents?: true

Size: 420 Bytes

Versions: 3

Compression:

Stored size: 420 Bytes

Contents

module Eaco
  module Cucumber
    module ActiveRecord

      ##
      # A Position is occupied by an {User} in a {Department}.
      #
      # For the background story, see {Eaco::Cucumber::World}.
      #
      # @see User
      # @see Department
      # @see Eaco::Cucumber::World
      #
      class Position < ::ActiveRecord::Base
        belongs_to :user
        belongs_to :department
      end

    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
eaco-0.6.1 lib/eaco/cucumber/active_record/position.rb
eaco-0.6.0 lib/eaco/cucumber/active_record/position.rb
eaco-0.5.0 lib/eaco/cucumber/active_record/position.rb