Sha256: 2d95d494dfda3bf79d9d9ed93311b2a7862afab098bd70d61cdcb1b88a45b456

Contents?: true

Size: 321 Bytes

Versions: 64

Compression:

Stored size: 321 Bytes

Contents

class ProductWithFloatPrice < ActiveRecord::Base
  acts_as_purchasable

  structure do
    price               :decimal, :default => 0.0
    title               :string
    tax_exempt          :boolean

    timestamps
  end

  after_purchase do |order, order_item|
  end

  after_decline do |order, order_item|
  end
end

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
effective_orders-1.1.2 spec/dummy/app/models/product_with_float_price.rb
effective_orders-1.1.1 spec/dummy/app/models/product_with_float_price.rb
effective_orders-1.1.0 spec/dummy/app/models/product_with_float_price.rb
effective_orders-1.0.0 spec/dummy/app/models/product_with_float_price.rb