finfast 0.0.1 → 0.0.3

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.
@@ -0,0 +1,4 @@
1
+ finfast
2
+ =======
3
+
4
+ Fast Ruby financial math operations
@@ -1,6 +1,6 @@
1
1
  module Finfast
2
2
  VERSION_MAJOR = 0
3
3
  VERSION_MINOR = 0
4
- VERSION_PATCH = 1
4
+ VERSION_PATCH = 3
5
5
  VERSION = [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH].join('.')
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: finfast
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-11-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
16
- requirement: &70281528856020 !ruby/object:Gem::Requirement
16
+ requirement: &70204428820160 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70281528856020
24
+ version_requirements: *70204428820160
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rspec
27
- requirement: &70281528855500 !ruby/object:Gem::Requirement
27
+ requirement: &70204428819740 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70281528855500
35
+ version_requirements: *70204428819740
36
36
  description: Fast Ruby financial math operations, using native code
37
37
  email:
38
38
  - mike.grant@jhu.edu
@@ -40,22 +40,21 @@ executables: []
40
40
  extensions:
41
41
  - ext/finfast/extconf.rb
42
42
  extra_rdoc_files:
43
- - README.rdoc
43
+ - README.md
44
44
  files:
45
45
  - lib/finfast/version.rb
46
46
  - lib/finfast.rb
47
47
  - ext/finfast/finfast.c
48
48
  - ext/finfast/extconf.rb
49
- - README.rdoc
50
- - test/finfast/finfast_test.rb
51
- homepage: http://79mg.com/
49
+ - README.md
50
+ homepage: https://github.com/mgrant79/finfast
52
51
  licenses: []
53
52
  post_install_message:
54
53
  rdoc_options:
55
54
  - --main
56
- - README.rdoc
55
+ - README.md
57
56
  - --title
58
- - finfast-0.0.1 Documentation
57
+ - finfast-0.0.3 Documentation
59
58
  require_paths:
60
59
  - lib
61
60
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -76,6 +75,5 @@ rubygems_version: 1.8.17
76
75
  signing_key:
77
76
  specification_version: 3
78
77
  summary: Fast Ruby financial math operations
79
- test_files:
80
- - test/finfast/finfast_test.rb
78
+ test_files: []
81
79
  has_rdoc:
@@ -1,49 +0,0 @@
1
- = finfast
2
-
3
- * TODO url
4
-
5
- == SYNOPSIS
6
-
7
- TODO description
8
-
9
- === Usage
10
-
11
- TODO (code sample of usage)
12
-
13
- == REQUIREMENTS
14
-
15
- * TODO (list of requirements)
16
-
17
- == INSTALLATION
18
-
19
- sudo gem install finfast
20
-
21
- == DEVELOPMENT
22
-
23
- TODO developer advice
24
-
25
- == LICENSE
26
-
27
- (The MIT License)
28
-
29
- Copyright (c) 2012 TODO
30
-
31
- Permission is hereby granted, free of charge, to any person obtaining
32
- a copy of this software and associated documentation files (the
33
- 'Software'), to deal in the Software without restriction, including
34
- without limitation the rights to use, copy, modify, merge, publish,
35
- distribute, sublicense, and/or sell copies of the Software, and to
36
- permit persons to whom the Software is furnished to do so, subject to
37
- the following conditions:
38
-
39
- The above copyright notice and this permission notice shall be
40
- included in all copies or substantial portions of the Software.
41
-
42
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
43
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
44
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
45
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
46
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
47
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
48
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
49
-
@@ -1,9 +0,0 @@
1
- require 'finfast'
2
- require 'test/unit'
3
-
4
- class TestFinfast < Test::Unit::TestCase
5
- def test_finfast
6
- assert_equal 3, 1 + 1, "TODO write tests"
7
- end
8
- end
9
-