trading_formulas 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,18 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/trading_formulas/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Matt Osentoski"]
6
+ gem.email = ["matt.osentoski@gmail.com"]
7
+ gem.description = %q{Technical Analysis and Option trading formulas for financial instruments}
8
+ gem.summary = %q{This Gem contains a number of trading formulas.}
9
+ gem.homepage = ""
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "trading_formulas"
15
+ gem.require_paths = ["lib"]
16
+
17
+ gem.version = TradingFormulas::VERSION
18
+ end
metadata ADDED
@@ -0,0 +1,62 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: trading_formulas
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Matt Osentoski
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-09-23 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Technical Analysis and Option trading formulas for financial instruments
15
+ email:
16
+ - matt.osentoski@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - LICENSE
24
+ - README.md
25
+ - Rakefile
26
+ - lib/trading_formulas.rb
27
+ - lib/trading_formulas/bermudan_options.rb
28
+ - lib/trading_formulas/binomial_options.rb
29
+ - lib/trading_formulas/black_scholes.rb
30
+ - lib/trading_formulas/version.rb
31
+ - test/test_bermudan_options.rb
32
+ - test/test_binomial_options.rb
33
+ - test/test_black_scholes.rb
34
+ - trading_formulas.gemspec
35
+ homepage: ''
36
+ licenses: []
37
+ post_install_message:
38
+ rdoc_options: []
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ none: false
49
+ requirements:
50
+ - - ! '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ requirements: []
54
+ rubyforge_project:
55
+ rubygems_version: 1.8.16
56
+ signing_key:
57
+ specification_version: 3
58
+ summary: This Gem contains a number of trading formulas.
59
+ test_files:
60
+ - test/test_bermudan_options.rb
61
+ - test/test_binomial_options.rb
62
+ - test/test_black_scholes.rb