finexclub 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/finexclub.gemspec +1 -1
- data/lib/finexclub/signals/prognosis.rb +1 -1
- data/spec/finexclub/prognosis_spec.rb +3 -3
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.2
|
data/finexclub.gemspec
CHANGED
@@ -11,9 +11,9 @@ describe 'Finexclub::Signals::Prognosis' do
|
|
11
11
|
:updated => :timestamp,
|
12
12
|
:symbol => :symbol,
|
13
13
|
:action => :trade_action,
|
14
|
+
:acceleration => :string,
|
14
15
|
:take_profit => :float,
|
15
16
|
:profit => :integer,
|
16
|
-
:acceleration => :integer,
|
17
17
|
:screenshot => :image
|
18
18
|
}
|
19
19
|
end
|
@@ -26,7 +26,7 @@ describe 'Finexclub::Signals::Prognosis' do
|
|
26
26
|
"sell",
|
27
27
|
"take_profit" => 1.5,
|
28
28
|
"profit" => 10,
|
29
|
-
"acceleration" =>
|
29
|
+
"acceleration" => "undefined",
|
30
30
|
"screenshot_filename"=>"whatever.png")
|
31
31
|
|
32
32
|
@prognosis.to_doc.should == {
|
@@ -34,7 +34,7 @@ describe 'Finexclub::Signals::Prognosis' do
|
|
34
34
|
:action => "sell",
|
35
35
|
:take_profit => 1.5,
|
36
36
|
:profit => 10,
|
37
|
-
:acceleration =>
|
37
|
+
:acceleration => "undefined",
|
38
38
|
:screenshot => "image_uid"
|
39
39
|
}
|
40
40
|
end
|