budgetcrmod 0.4.1 → 0.4.2
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/budgetcrmod.gemspec +2 -2
- data/lib/budgetcrmod/account_choices.rb +4 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1088beb81a32f908f24914baf7a311ebc3e98187
|
|
4
|
+
data.tar.gz: 4aa0a76c1f5624493f3390da85b3fca1d372d65e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82d373ee8e7f62a09ecc4c18ba9ec95928d00452b6c50a08eb23f55353be3ed572dc670b113d648be9a7010c218e52fd30e63d4e8c15ee7b898723e44161feee
|
|
7
|
+
data.tar.gz: 9cfa7851cef16cf5771b89b5c1f99a2b195b928aee9a4b6c3743ee0f991002878a3812612cd7b28a734bc1c013fac9ba549ccbf35381424db8c7798d4e48a5c2
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.2
|
data/budgetcrmod.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: budgetcrmod 0.4.
|
|
5
|
+
# stub: budgetcrmod 0.4.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "budgetcrmod".freeze
|
|
9
|
-
s.version = "0.4.
|
|
9
|
+
s.version = "0.4.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
@@ -149,8 +149,10 @@ class CodeRunner::Budget
|
|
|
149
149
|
puts "SIGNATURE ", signature.inspect
|
|
150
150
|
Dir.chdir(@runner.root_folder) do
|
|
151
151
|
external_account until (
|
|
152
|
-
choices =
|
|
153
|
-
|
|
152
|
+
choices = nil
|
|
153
|
+
Hash.phoenix('account_choices.rb'){|choices_hash| choices = choices_hash[signature]}
|
|
154
|
+
#p [choices, data_line]
|
|
155
|
+
choices
|
|
154
156
|
) and choices[:sub_account]
|
|
155
157
|
@sub_account = choices[:sub_account]
|
|
156
158
|
end
|