binarylogic-shippinglogic 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +4 -0
- data/VERSION.yml +1 -1
- data/lib/shippinglogic/fedex/attributes.rb +2 -2
- data/lib/shippinglogic/fedex/rate.rb +1 -1
- data/lib/shippinglogic/fedex/ship.rb +2 -2
- data/shippinglogic.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG.rdoc
CHANGED
data/VERSION.yml
CHANGED
@@ -119,7 +119,7 @@ module Shippinglogic
|
|
119
119
|
|
120
120
|
# monetary options
|
121
121
|
attribute :currency_type, :string
|
122
|
-
attribute :insured_value, :
|
122
|
+
attribute :insured_value, :decimal
|
123
123
|
attribute :payment_type, :string, :default => "SENDER"
|
124
124
|
attribute :payor_account_number, :string, :default => lambda { |shipment| shipment.base.account }
|
125
125
|
attribute :payor_country, :string
|
@@ -84,7 +84,7 @@ module Shippinglogic
|
|
84
84
|
# )
|
85
85
|
#
|
86
86
|
# shipment.inspect
|
87
|
-
# #<Shippinglogic::FedEx::Ship::Shipment rate:
|
87
|
+
# #<Shippinglogic::FedEx::Ship::Shipment rate:decimal, currency:string, delivery_date:date, tracking_number:string,
|
88
88
|
# label:string(base64 decoded), barcode:string(base64 decoded) >
|
89
89
|
#
|
90
90
|
# # to show accessor methods
|
@@ -136,7 +136,7 @@ module Shippinglogic
|
|
136
136
|
|
137
137
|
# monetary options
|
138
138
|
attribute :currency_type, :string
|
139
|
-
attribute :insured_value, :
|
139
|
+
attribute :insured_value, :decimal
|
140
140
|
attribute :payment_type, :string, :default => "SENDER"
|
141
141
|
attribute :payor_account_number, :string, :default => lambda { |shipment| shipment.base.account }
|
142
142
|
attribute :payor_country, :string
|
data/shippinglogic.gemspec
CHANGED