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 CHANGED
@@ -1 +1 @@
1
- 0.3.1
1
+ 0.3.2
data/finexclub.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{finexclub}
8
- s.version = "0.3.1"
8
+ s.version = "0.3.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Alex Levin"]
@@ -5,7 +5,7 @@ module Finexclub
5
5
  field :symbol, :symbol
6
6
  field :updated, :timestamp
7
7
  field :action, :trade_action
8
- field :acceleration, :integer
8
+ field :acceleration, :string
9
9
  field :take_profit, :float
10
10
  field :profit, :integer
11
11
  field :screenshot, :image
@@ -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" => 1,
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 => 1,
37
+ :acceleration => "undefined",
38
38
  :screenshot => "image_uid"
39
39
  }
40
40
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 1
9
- version: 0.3.1
8
+ - 2
9
+ version: 0.3.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Alex Levin