Sha256: 758a70454808ff1831e7de6ac3de4895ea6d603812ca297cad84eaea3a69e0ad

Contents?: true

Size: 710 Bytes

Versions: 15

Compression:

Stored size: 710 Bytes

Contents

module DataMapper
  module TypesFixtures

    class SoftwarePackage
      #
      # Behaviors
      #

      include ::DataMapper::Resource

      #
      # Properties
      #

      property :id, Serial
      without_auto_validations do
        property :node_number, Integer, :index => true

        property :source_path,      FilePath
        property :destination_path, FilePath

        property :product,     String
        property :version,     String
        property :released_at, DateTime

        property :security_update,  Boolean

        property :installed_at,     DateTime
        property :installed_by,     String
      end
    end # SoftwarePackage
  end # TypesFixtures
end # DataMapper

Version data entries

15 entries across 15 versions & 3 rubygems

Version Path
sbf-dm-types-1.3.0 spec/fixtures/software_package.rb
sbf-dm-types-1.3.0.beta spec/fixtures/software_package.rb
ardm-types-1.2.3 spec/fixtures/software_package.rb
ardm-types-1.2.2 spec/fixtures/software_package.rb
dm-types-1.2.2 spec/fixtures/software_package.rb
dm-types-1.2.1 spec/fixtures/software_package.rb
dm-types-1.2.0 spec/fixtures/software_package.rb
dm-types-1.2.0.rc2 spec/fixtures/software_package.rb
dm-types-1.2.0.rc1 spec/fixtures/software_package.rb
dm-types-1.1.0 spec/fixtures/software_package.rb
dm-types-1.1.0.rc3 spec/fixtures/software_package.rb
dm-types-1.1.0.rc2 spec/fixtures/software_package.rb
dm-types-1.1.0.rc1 spec/fixtures/software_package.rb
dm-types-1.0.2 spec/fixtures/software_package.rb
dm-types-1.0.1 spec/fixtures/software_package.rb