interactive_brokers_2_tasty_works 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitattributes +2 -0
- data/.gitignore +14 -0
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +56 -0
- data/LICENSE.txt +21 -0
- data/README.md +49 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/interactive_brokers_2_tasty_works.gemspec +34 -0
- data/lib/interactive_brokers_2_tasty_works/version.rb +3 -0
- data/lib/interactive_brokers_2_tasty_works.rb +168 -0
- metadata +142 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6b245c8dbf681690ee8b3745c2022c3557d1d2778672c671eb544f14509c5d0c
|
4
|
+
data.tar.gz: c262fe44d913342bd1ed89bdf0105d80d1174d4f25b3ba755af068e69656de36
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1807f7d098975769600ba3e584abe3866015421b365792f87da87d20375371a6033d5c7440b8c1a44176fd2b709868191b00c8b03b98cf7ef931ddbe0735d5e1
|
7
|
+
data.tar.gz: f6f2eb90a239c8083ac4d52bcb2a9c26a6ef8c15a5c2bc8f1ecc9df086bb99bbbe7ddfefd25b63c2fa234096b355aab446eb0aaa0538fde8e9b05e08f41870b3
|
data/.gitattributes
ADDED
data/.gitignore
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.5.3
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at foss@carlmercier.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
interactive_brokers_2_tasty_works (0.1.0)
|
5
|
+
activesupport
|
6
|
+
xmlhasher
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
activesupport (5.2.1.1)
|
12
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
+
i18n (>= 0.7, < 2)
|
14
|
+
minitest (~> 5.1)
|
15
|
+
tzinfo (~> 1.1)
|
16
|
+
byebug (10.0.2)
|
17
|
+
concurrent-ruby (1.1.3)
|
18
|
+
diff-lcs (1.3)
|
19
|
+
escape_utils (1.2.1)
|
20
|
+
i18n (1.1.1)
|
21
|
+
concurrent-ruby (~> 1.0)
|
22
|
+
minitest (5.11.3)
|
23
|
+
ox (2.10.0)
|
24
|
+
rake (10.5.0)
|
25
|
+
rspec (3.7.0)
|
26
|
+
rspec-core (~> 3.7.0)
|
27
|
+
rspec-expectations (~> 3.7.0)
|
28
|
+
rspec-mocks (~> 3.7.0)
|
29
|
+
rspec-core (3.7.1)
|
30
|
+
rspec-support (~> 3.7.0)
|
31
|
+
rspec-expectations (3.7.0)
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
+
rspec-support (~> 3.7.0)
|
34
|
+
rspec-mocks (3.7.0)
|
35
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
36
|
+
rspec-support (~> 3.7.0)
|
37
|
+
rspec-support (3.7.1)
|
38
|
+
thread_safe (0.3.6)
|
39
|
+
tzinfo (1.2.5)
|
40
|
+
thread_safe (~> 0.1)
|
41
|
+
xmlhasher (1.0.4)
|
42
|
+
escape_utils (~> 1.2)
|
43
|
+
ox (~> 2.10.0)
|
44
|
+
|
45
|
+
PLATFORMS
|
46
|
+
ruby
|
47
|
+
|
48
|
+
DEPENDENCIES
|
49
|
+
bundler (~> 1.16)
|
50
|
+
byebug
|
51
|
+
interactive_brokers_2_tasty_works!
|
52
|
+
rake (~> 10.0)
|
53
|
+
rspec (~> 3.0)
|
54
|
+
|
55
|
+
BUNDLED WITH
|
56
|
+
1.16.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Carl Mercier
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# InteractiveBrokers2TastyWorks
|
2
|
+
|
3
|
+
This library converts the output of an Interactive Brokers Execution Flex Query to a TastyWorks-compatible CSV file.
|
4
|
+
|
5
|
+
### Flex Query Parameters in Interactive Brokers
|
6
|
+
|
7
|
+
- Leave all defaults
|
8
|
+
- Set time period to LAST 365 DAYS
|
9
|
+
- In Sections, select Trades
|
10
|
+
+ Select Executions
|
11
|
+
+ Select All
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
Add this line to your application's Gemfile:
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
gem 'interactive_brokers_2_tasty_works'
|
19
|
+
```
|
20
|
+
|
21
|
+
And then execute:
|
22
|
+
|
23
|
+
$ bundle
|
24
|
+
|
25
|
+
Or install it yourself as:
|
26
|
+
|
27
|
+
$ gem install interactive_brokers_2_tasty_works
|
28
|
+
|
29
|
+
## Usage
|
30
|
+
|
31
|
+
`InteractiveBrokers2TastyWorks.new(input_path: '~/trades.xml').save_as("/tmp/trades.csv")`
|
32
|
+
|
33
|
+
## Development
|
34
|
+
|
35
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
36
|
+
|
37
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/cmer/interactive_brokers_2_tasty_works. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
42
|
+
|
43
|
+
## License
|
44
|
+
|
45
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
46
|
+
|
47
|
+
## Code of Conduct
|
48
|
+
|
49
|
+
Everyone interacting in the InteractiveBrokers2TastyWorks project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/cmer/interactive_brokers_2_tasty_works/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "interactive_brokers_2_tasty_works"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "interactive_brokers_2_tasty_works/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "interactive_brokers_2_tasty_works"
|
8
|
+
spec.version = InteractiveBrokers2TastyWorks::VERSION
|
9
|
+
spec.authors = ["Carl Mercier"]
|
10
|
+
spec.email = ["foss@carlmercier.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Interactive Brokers to Tasty Works trade statement converter}
|
13
|
+
spec.description = %q{Interactive Brokers to Tasty Works trade statement converter}
|
14
|
+
spec.homepage = "https://www.github.com/cmer/interactive_brokers_2_tasty_works"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
|
18
|
+
# Specify which files should be added to the gem when it is released.
|
19
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
20
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
21
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
|
+
end
|
23
|
+
spec.bindir = "exe"
|
24
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
+
spec.require_paths = ["lib"]
|
26
|
+
|
27
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
28
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
29
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
30
|
+
spec.add_development_dependency "byebug"
|
31
|
+
|
32
|
+
spec.add_dependency "xmlhasher"
|
33
|
+
spec.add_dependency "activesupport"
|
34
|
+
end
|
@@ -0,0 +1,168 @@
|
|
1
|
+
require "interactive_brokers_2_tasty_works/version"
|
2
|
+
|
3
|
+
require 'csv'
|
4
|
+
require 'json'
|
5
|
+
require 'xmlhasher'
|
6
|
+
require 'bigdecimal'
|
7
|
+
require 'active_support/core_ext/time/zones'
|
8
|
+
|
9
|
+
unless NilClass.method_defined?(:empty?)
|
10
|
+
class NilClass
|
11
|
+
def empty?; true; end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
class InteractiveBrokers2TastyWorks
|
16
|
+
attr_reader :input_path, :file_format
|
17
|
+
|
18
|
+
OUTPUT_HEADER = ['Date', 'Type', 'Action', 'Symbol', 'Instrument Type', 'Description', 'Value', 'Quantity',
|
19
|
+
'Average Price', 'Commissions', 'Fees', 'Multiplier', 'Underlying Symbol', 'Expiration Date',
|
20
|
+
'Strike Price', 'Call or Put']
|
21
|
+
|
22
|
+
def initialize(data_hash: nil, input_path: nil, file_format: :xml)
|
23
|
+
@data_hash = data_hash
|
24
|
+
@input_path = input_path
|
25
|
+
@file_format = file_format
|
26
|
+
|
27
|
+
raise ArgumenrError.new("Must specify `data_hash` or `input_path`.") if data_hash.empty? && input_path.empty?
|
28
|
+
|
29
|
+
if !input_path.empty?
|
30
|
+
file_format = input_path.split(".").last.to_sym if file_format.empty?
|
31
|
+
file_format = file_format.to_s.to_sym unless file_format.is_a?(Symbol)
|
32
|
+
raise ArgumentError.new("Unknown file format: #{file_format}") unless %i(xml json).include?(file_format)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def save_as(output_path)
|
37
|
+
File.open(File.expand_path(output_path), 'w') do |f|
|
38
|
+
output.each { |o| f.write(o.to_csv) }
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def output
|
43
|
+
@output ||= convert!
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def convert!
|
49
|
+
output = [OUTPUT_HEADER]
|
50
|
+
|
51
|
+
trades = if data_hash[:FlexQueryResponse].is_a?(Array)
|
52
|
+
data_hash[:FlexQueryResponse][1][:FlexStatements][1][:FlexStatement][1][:Trades][:Trade]
|
53
|
+
else
|
54
|
+
data_hash[:FlexQueryResponse][:FlexStatements][:FlexStatement][:Trades][:Trade]
|
55
|
+
end
|
56
|
+
|
57
|
+
trades.each do |trade|
|
58
|
+
trade = trade.first if trade.is_a?(Array)
|
59
|
+
|
60
|
+
output << [
|
61
|
+
Utils.build_date_time_str(trade),
|
62
|
+
'Trade',
|
63
|
+
Utils.build_action(trade),
|
64
|
+
trade[:symbol],
|
65
|
+
Utils.build_instrument_type(trade),
|
66
|
+
Utils.build_description(trade),
|
67
|
+
Utils.build_value(trade),
|
68
|
+
trade[:quantity],
|
69
|
+
trade[:tradePrice],
|
70
|
+
Utils.build_commission(trade),
|
71
|
+
'',
|
72
|
+
trade[:multiplier],
|
73
|
+
trade[:underlyingSymbol],
|
74
|
+
Utils.build_date(trade[:expiry]),
|
75
|
+
trade[:strike],
|
76
|
+
Utils.put_or_call(trade)
|
77
|
+
]
|
78
|
+
end
|
79
|
+
|
80
|
+
output
|
81
|
+
end
|
82
|
+
|
83
|
+
def data_hash
|
84
|
+
@data_hash ||= case @file_format
|
85
|
+
when :json
|
86
|
+
file = File.read(File.expand_path(@input_path))
|
87
|
+
JSON.parse(file, symbolize_names: true)
|
88
|
+
when :xml
|
89
|
+
XmlHasher::Parser.new(
|
90
|
+
:snakecase => false,
|
91
|
+
:ignore_namespaces => true,
|
92
|
+
:string_keys => false
|
93
|
+
).parse(File.new(@input_path))
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
module Utils
|
98
|
+
class << self
|
99
|
+
def build_date_time_str(trade)
|
100
|
+
d, t = trade[:tradeDate], trade[:tradeTime]
|
101
|
+
year = d[0..3]
|
102
|
+
month = d[4..5]
|
103
|
+
day = d[6..7]
|
104
|
+
hour = t[0..1]
|
105
|
+
min = t[2..3]
|
106
|
+
sec = t[4..5]
|
107
|
+
Time.zone.local(year,month,day,hour,min,sec).strftime('%FT%T%z')
|
108
|
+
end
|
109
|
+
|
110
|
+
def build_date(str)
|
111
|
+
return nil if str.to_s.strip == ''
|
112
|
+
day = str[6..7]
|
113
|
+
month = str[4..5]
|
114
|
+
year = str[2..3]
|
115
|
+
"#{month}/#{day}/#{year}"
|
116
|
+
end
|
117
|
+
|
118
|
+
def build_action(trade)
|
119
|
+
"#{trade[:buySell]}_TO_#{trade[:openCloseIndicator] == 'O' ? 'OPEN' : 'CLOSE'}"
|
120
|
+
end
|
121
|
+
|
122
|
+
def build_instrument_type(trade)
|
123
|
+
case (ac = trade[:assetCategory])
|
124
|
+
when 'OPT'; 'Equity Option'
|
125
|
+
when 'STK'; 'Equity'
|
126
|
+
else
|
127
|
+
raise ArgumentError.new("Unknown asset category: #{ac}")
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
def build_description(trade)
|
132
|
+
case trade[:buySell]
|
133
|
+
when 'SELL'; str = 'Sold'
|
134
|
+
when 'BUY'; str = 'Bought'
|
135
|
+
end
|
136
|
+
|
137
|
+
str += " #{trade[:quantity].to_i.abs} "
|
138
|
+
|
139
|
+
str += case (ac = trade[:assetCategory])
|
140
|
+
when 'OPT'
|
141
|
+
exp = build_date(trade[:expiry])
|
142
|
+
"#{trade[:symbol]} #{exp} #{put_or_call(trade)} #{trade[:strike]} @ #{trade[:tradePrice]}"
|
143
|
+
when 'STK'
|
144
|
+
"#{trade[:symbol]} @ #{trade[:tradePrice]}"
|
145
|
+
else
|
146
|
+
raise ArgumentError.new("Unknown asset category: #{ac}")
|
147
|
+
end
|
148
|
+
|
149
|
+
str
|
150
|
+
end
|
151
|
+
|
152
|
+
def build_value(trade)
|
153
|
+
v = trade[:proceeds]
|
154
|
+
v.to_f == -0.0 ? '0' : v
|
155
|
+
end
|
156
|
+
|
157
|
+
def build_commission(trade)
|
158
|
+
c = trade[:ibCommission]
|
159
|
+
c.to_f == -0.0 ? '0' : c
|
160
|
+
end
|
161
|
+
|
162
|
+
def put_or_call(trade)
|
163
|
+
return nil unless trade[:assetCategory] == 'OPT'
|
164
|
+
trade[:putCall] == 'P' ? 'PUT' : 'CALL'
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
168
|
+
end
|
metadata
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: interactive_brokers_2_tasty_works
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Carl Mercier
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-11-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: byebug
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: xmlhasher
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: activesupport
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Interactive Brokers to Tasty Works trade statement converter
|
98
|
+
email:
|
99
|
+
- foss@carlmercier.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitattributes"
|
105
|
+
- ".gitignore"
|
106
|
+
- ".ruby-version"
|
107
|
+
- CODE_OF_CONDUCT.md
|
108
|
+
- Gemfile
|
109
|
+
- Gemfile.lock
|
110
|
+
- LICENSE.txt
|
111
|
+
- README.md
|
112
|
+
- Rakefile
|
113
|
+
- bin/console
|
114
|
+
- bin/setup
|
115
|
+
- interactive_brokers_2_tasty_works.gemspec
|
116
|
+
- lib/interactive_brokers_2_tasty_works.rb
|
117
|
+
- lib/interactive_brokers_2_tasty_works/version.rb
|
118
|
+
homepage: https://www.github.com/cmer/interactive_brokers_2_tasty_works
|
119
|
+
licenses:
|
120
|
+
- MIT
|
121
|
+
metadata: {}
|
122
|
+
post_install_message:
|
123
|
+
rdoc_options: []
|
124
|
+
require_paths:
|
125
|
+
- lib
|
126
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - ">="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '0'
|
131
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
requirements: []
|
137
|
+
rubyforge_project:
|
138
|
+
rubygems_version: 2.7.6
|
139
|
+
signing_key:
|
140
|
+
specification_version: 4
|
141
|
+
summary: Interactive Brokers to Tasty Works trade statement converter
|
142
|
+
test_files: []
|