doughnut 0.0.4 → 0.0.5
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/README.md +1 -29
- data/doughnut.gemspec +2 -2
- data/lib/doughnut/tasks/retirement.rake +3 -3
- data/lib/doughnut/version.rb +1 -1
- data/spec/valuation/valuation_spec.rb +8 -0
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8fd4ad905fa3399a80b480cd02b10ea37e953ad6
|
4
|
+
data.tar.gz: d9441648e97fd0d9e5be754386389dec8d73d889
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6aab4871e8a7466e7a728236870436f24e36c0039432dc7cb236a797c24b4c85a59e9eed5ab7de369318f7456e28cc60674c82e7eabb2ca16514e4efd17665a7
|
7
|
+
data.tar.gz: 4862cd9b795997c61b3922f65699c77aeb54e23e1b74c3ab3fa76062c845d98110e96867ef66aebea0c34a2d3fa77fae4c0ff065c4aaf067fd4411a2d6c16def
|
data/README.md
CHANGED
@@ -1,31 +1,3 @@
|
|
1
1
|
# Doughnut
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
Add this line to your application's Gemfile:
|
8
|
-
|
9
|
-
```ruby
|
10
|
-
gem 'doughnut'
|
11
|
-
```
|
12
|
-
|
13
|
-
And then execute:
|
14
|
-
|
15
|
-
$ bundle
|
16
|
-
|
17
|
-
Or install it yourself as:
|
18
|
-
|
19
|
-
$ gem install doughnut
|
20
|
-
|
21
|
-
## Usage
|
22
|
-
|
23
|
-
TODO: Write usage instructions here
|
24
|
-
|
25
|
-
## Contributing
|
26
|
-
|
27
|
-
1. Fork it ( https://github.com/[my-github-username]/doughnut/fork )
|
28
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
29
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
30
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
-
5. Create a new Pull Request
|
3
|
+
This is some exploratory code for a retirement calculator and monte carlo simulation in finance. This is not guaranteed to be accurate! Use it at your own risk!
|
data/doughnut.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Doughnut::VERSION
|
9
9
|
spec.authors = ["Cyrus Vandrevala"]
|
10
10
|
spec.email = ["cyrus.vandrevala@gmail.com"]
|
11
|
-
spec.summary = %q{
|
12
|
-
spec.description = ""
|
11
|
+
spec.summary = %q{This is some exploratory code for a retirement calculator and monte carlo simulation in finance.}
|
12
|
+
spec.description = "This is some exploratory code for a retirement calculator and monte carlo simulation in finance. This is not guaranteed to be accurate! Use it at your own risk!"
|
13
13
|
spec.homepage = ""
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
require "
|
2
|
-
require "
|
3
|
-
require "
|
1
|
+
require "expenses"
|
2
|
+
require "retirement_calculator/income"
|
3
|
+
require "retirement_calculator/retirement_calculator"
|
4
4
|
|
5
5
|
task :calculate_retirement do
|
6
6
|
e = Expenses.new
|
data/lib/doughnut/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: doughnut
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cyrus Vandrevala
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -80,7 +80,9 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
description:
|
83
|
+
description: This is some exploratory code for a retirement calculator and monte carlo
|
84
|
+
simulation in finance. This is not guaranteed to be accurate! Use it at your own
|
85
|
+
risk!
|
84
86
|
email:
|
85
87
|
- cyrus.vandrevala@gmail.com
|
86
88
|
executables: []
|
@@ -109,6 +111,7 @@ files:
|
|
109
111
|
- spec/retirement_calculator/income_spec.rb
|
110
112
|
- spec/retirement_calculator/retirement_calculator_spec.rb
|
111
113
|
- spec/spec_helper.rb
|
114
|
+
- spec/valuation/valuation_spec.rb
|
112
115
|
homepage: ''
|
113
116
|
licenses:
|
114
117
|
- MIT
|
@@ -132,7 +135,8 @@ rubyforge_project:
|
|
132
135
|
rubygems_version: 2.4.5
|
133
136
|
signing_key:
|
134
137
|
specification_version: 4
|
135
|
-
summary:
|
138
|
+
summary: This is some exploratory code for a retirement calculator and monte carlo
|
139
|
+
simulation in finance.
|
136
140
|
test_files:
|
137
141
|
- spec/monte_carlo/population_factory_spec.rb
|
138
142
|
- spec/monte_carlo/population_tester.rb
|
@@ -141,3 +145,4 @@ test_files:
|
|
141
145
|
- spec/retirement_calculator/income_spec.rb
|
142
146
|
- spec/retirement_calculator/retirement_calculator_spec.rb
|
143
147
|
- spec/spec_helper.rb
|
148
|
+
- spec/valuation/valuation_spec.rb
|