xeroizer-float 2.15.3.4 → 2.15.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +4 -4
- data/VERSION +1 -1
- data/lib/xeroizer/models/bank_transaction.rb +2 -0
- data/xeroizer-float.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
@@ -57,10 +57,10 @@ end
|
|
57
57
|
|
58
58
|
namespace :gem do
|
59
59
|
task :publish do
|
60
|
-
`rm *.gem`
|
61
|
-
`rake gemspec`
|
62
|
-
`gem build xeroizer-float.gemspec`
|
63
|
-
`gem push *.gem`
|
60
|
+
puts `rm *.gem`
|
61
|
+
puts `rake gemspec`
|
62
|
+
puts `gem build xeroizer-float.gemspec`
|
63
|
+
puts `gem push *.gem`
|
64
64
|
end
|
65
65
|
|
66
66
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.15.3.
|
1
|
+
2.15.3.5
|
@@ -15,6 +15,7 @@ module Xeroizer
|
|
15
15
|
} unless defined?(BANK_TRANSACTION_STATUS)
|
16
16
|
BANK_TRANSACTION_STATUSES = BANK_TRANSACTION_STATUS.keys.sort
|
17
17
|
|
18
|
+
list_contains_summary_only true
|
18
19
|
|
19
20
|
def initialize(parent)
|
20
21
|
super parent
|
@@ -53,6 +54,7 @@ module Xeroizer
|
|
53
54
|
self.line_items.size > 0
|
54
55
|
end
|
55
56
|
|
57
|
+
|
56
58
|
def sub_total=(value); raise SettingTotalDirectlyNotSupported.new(:sub_total); end
|
57
59
|
def total_tax=(value); raise SettingTotalDirectlyNotSupported.new(:total_tax); end
|
58
60
|
def total=(value); raise SettingTotalDirectlyNotSupported.new(:total); end
|
data/xeroizer-float.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "xeroizer-float"
|
8
|
-
s.version = "2.15.3.
|
8
|
+
s.version = "2.15.3.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Wayne Robinson", "Philip Roberts"]
|