doughnut 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0dcdc95522dc60f4014b3d243542e9312b09521
4
- data.tar.gz: 5b25a23ebadd05e66344b8d1ed110d62ba15a87b
3
+ metadata.gz: 8fd4ad905fa3399a80b480cd02b10ea37e953ad6
4
+ data.tar.gz: d9441648e97fd0d9e5be754386389dec8d73d889
5
5
  SHA512:
6
- metadata.gz: 23b34df6870d38f36362481b8543b6773700c2dd1710dcef05f73d29c8db10944d0474db4efc2356a6f3004cbd997736084b80735a807c63d25261467c289116
7
- data.tar.gz: d80e2c1cff77910bca4634d8d5e5979fdfb2fdd73b3bcb75fe24f4272f02fa4b2eaf9186357e83a09038eca7e455ce573d088fb6e1bf81f0decaf650b8d70535
6
+ metadata.gz: 6aab4871e8a7466e7a728236870436f24e36c0039432dc7cb236a797c24b4c85a59e9eed5ab7de369318f7456e28cc60674c82e7eabb2ca16514e4efd17665a7
7
+ data.tar.gz: 4862cd9b795997c61b3922f65699c77aeb54e23e1b74c3ab3fa76062c845d98110e96867ef66aebea0c34a2d3fa77fae4c0ff065c4aaf067fd4411a2d6c16def
data/README.md CHANGED
@@ -1,31 +1,3 @@
1
1
  # Doughnut
2
2
 
3
- TODO: Write a gem description
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!
@@ -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{Generate statistics for a personal portfolio.}
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 "doughnut/retirement_calculator/expenses"
2
- require "doughnut/retirement_calculator/income"
3
- require "doughnut/retirement_calculator/retirement_calculator"
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
@@ -1,3 +1,3 @@
1
1
  module Doughnut
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+
3
+ module Valuation
4
+
5
+ describe "present_value (PV)" do
6
+ end
7
+
8
+ end
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
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-06-01 00:00:00.000000000 Z
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: Generate statistics for a personal portfolio.
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