bitsy-bitcoin 0.5.4 → 0.5.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a929189bd6ca0990b264517f99635373d520a72
|
4
|
+
data.tar.gz: 93b12d8201a82218ae354bfe918bd62eeb932644
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a6dc21d13c337a11d0ec657358d8adb7a8f9cca131c68f328c857885780f5baacbaf70007a2d9885e504f4551b594c01f33f7d92dc567509ee9f7091a4f291b
|
7
|
+
data.tar.gz: f289f398fa63b50b7d30857263fd25366981c28e11247f309e10a8344b99c73755947a0bf476e7828e5e718f400c0555da88e76fdd1c23c38e8dd5e9ec8afa94
|
@@ -0,0 +1,9 @@
|
|
1
|
+
class ChangeTotalReceivedAmountCacheToDecimal < ActiveRecord::Migration
|
2
|
+
def up
|
3
|
+
change_column :bitsy_payment_depots, :total_received_amount_cache, :decimal, default: 0.0, null: false
|
4
|
+
end
|
5
|
+
|
6
|
+
def down
|
7
|
+
change_column :bitsy_payment_depots, :total_received_amount_cache, :float, default: 0.0, null: false
|
8
|
+
end
|
9
|
+
end
|
data/lib/bitsy/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bitsy-bitcoin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ramon Tayag
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -337,6 +337,7 @@ files:
|
|
337
337
|
- db/migrate/20141108002656_drop_occurred_at_and_received_at_from_payment_transactions.rb
|
338
338
|
- db/migrate/20141109072242_change_payment_depot_balance_cache_default.rb
|
339
339
|
- db/migrate/20141115001846_add_total_received_amount_cache_to_payment_depots.rb
|
340
|
+
- db/migrate/20141129064958_change_total_received_amount_cache_to_decimal.rb
|
340
341
|
- lib/bitsy-bitcoin.rb
|
341
342
|
- lib/bitsy.rb
|
342
343
|
- lib/bitsy/config.rb
|