fquant 0.1

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,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fb8c2fce3695bef4fd6bc9e4fc444e933f3da911
4
+ data.tar.gz: 84a0a61c055d365a0ab8d57f99aa9f33fe063118
5
+ SHA512:
6
+ metadata.gz: 137d4f27a162fe3b9cf46ee6bedb1e28a33db056598c084ca1163ed98275fe921761579bdc193b326dabdcc40dc6e64f3b0f68fb36334ad4a205f0d0e5c29dda
7
+ data.tar.gz: 1e626e8bfafdef24df0195bd41d40677603086570c988cf9861014f59e03b1ef31ebd89c33c06ecb808f911cb8f8df5d39d6bb4c937496bc301f528f8a3a926d
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source = "http://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ gem "guard"
7
+ gem "guard-rspec"
8
+
9
+ if RUBY_PLATFORM.downcase.include?("darwin")
10
+ gem 'rb-fsevent'
11
+ gem 'growl_notify'
12
+ end
13
+ end
@@ -0,0 +1,6 @@
1
+ guard 'rspec', :version => 2, :cli => "--color" do
2
+ watch(%r{^spec/.+_spec\.rb$})
3
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
4
+ watch('spec/spec_helper.rb') { "spec" }
5
+ end
6
+
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 sourav sarkar
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ 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, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ fquant
2
+ ======
3
+
4
+ Install
5
+ -------
6
+
7
+ gem install fquant
8
+
9
+ Usage
10
+ -----
11
+
12
+ require 'fquant'
13
+
14
+ Author
15
+ ------
16
+
17
+ sourav sarkar <souravsarkar AT icloud DOT com>
18
+
19
+ Bugs
20
+ ----
21
+
22
+ Report bugs to http://github.com/amsourav/fquant/issues
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1 @@
1
+ #!/usr/bin/env ruby
@@ -0,0 +1,22 @@
1
+ # encoding: utf-8
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "fquant/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "fquant"
7
+ s.version =Fquant::VERSION
8
+ s.author = "Sourav Sarkar"
9
+ s.email = ["souravssarkar@icloud.com"]
10
+ s.homepage = "https://github.com/amsourav/fquant"
11
+ s.license = "MIT"
12
+ s.summary = %q{Quantitative Finance in ruby}
13
+ s.description = %q{A library for Quants in ruby}
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- spec/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+
20
+ s.required_ruby_version = '>= 1.9.2'
21
+ s.add_development_dependency "rspec"
22
+ end
@@ -0,0 +1,4 @@
1
+ require 'fquant/version'
2
+
3
+ module Fquant
4
+ end
@@ -0,0 +1,3 @@
1
+ module Fquant
2
+ VERSION = "0.1"
3
+ end
File without changes
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fquant
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - Sourav Sarkar
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: A library for Quants in ruby
28
+ email:
29
+ - souravssarkar@icloud.com
30
+ executables:
31
+ - fquant
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - .gitignore
36
+ - Gemfile
37
+ - Guardfile
38
+ - LICENSE
39
+ - README.md
40
+ - Rakefile
41
+ - bin/fquant
42
+ - fquant.gemspec
43
+ - lib/fquant.rb
44
+ - lib/fquant/version.rb
45
+ - spec/spec_helper.rb
46
+ homepage: https://github.com/amsourav/fquant
47
+ licenses:
48
+ - MIT
49
+ metadata: {}
50
+ post_install_message:
51
+ rdoc_options: []
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - '>='
57
+ - !ruby/object:Gem::Version
58
+ version: 1.9.2
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirements: []
65
+ rubyforge_project:
66
+ rubygems_version: 2.0.3
67
+ signing_key:
68
+ specification_version: 4
69
+ summary: Quantitative Finance in ruby
70
+ test_files:
71
+ - spec/spec_helper.rb