chris_lib 0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e2e4cc4937a74e64331de5b7eae42fde969af752
4
+ data.tar.gz: c556265b8abf00727717506cc4588b05f0541813
5
+ SHA512:
6
+ metadata.gz: 271b426509b3a6009868cf5515055cd0c24a862219723c16ed27b034102eda49949903592b99ad1ab3b8452eb7d22617c94e961b780189df1d84ab804696ea8f
7
+ data.tar.gz: d2cd1d750488604c25e353b26f5462e83a3b5e9e735545f4523a56164a55fd0d7adbd49b7932852c4a6fb815888867aa91a5ba9a9b62479c60d46a916ed5b180
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2014 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,21 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'ChrisLib'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+
18
+
19
+
20
+ Bundler::GemHelper.install_tasks
21
+
@@ -0,0 +1,79 @@
1
+ Integer.class_eval do
2
+ def factorial
3
+ n=self
4
+ if n > 20
5
+ raise "Number too large"
6
+ else
7
+ (1..n).inject {|prod, i| prod * i}
8
+ end
9
+ end
10
+ end
11
+ Array.class_eval do
12
+ def mean
13
+ raise "Length must be greater than 1" if count < 2
14
+ sum = self.inject { |s,v| s + v}
15
+ sum/count
16
+ end
17
+ def var
18
+ raise "Length must be greater than 1" if count < 2
19
+ m = self.mean
20
+ sum = self.inject { |s,v| s + (v**2 - m**2)}
21
+ m=count-1
22
+ sum.to_f/m
23
+ end
24
+ end
25
+
26
+ module ChrisMath
27
+
28
+ include Math
29
+
30
+ def bi_gaussian_rand
31
+ u1 = rand()
32
+ u2 = rand()
33
+ z0 = sqrt(-2*log(u1))*cos(2*PI*u2)
34
+ z1 = sqrt(-2*log(u1))*sin(2*PI*u2)
35
+ return [z0,z1]
36
+ end
37
+
38
+ def gaussian_rand(mean,std)
39
+ u1 = rand()
40
+ u2 = rand()
41
+ z0 = sqrt(-2*log(u1))*cos(2*PI*u2)
42
+ z0*std + mean
43
+ end
44
+
45
+
46
+ def std(values)
47
+ n = values.count
48
+ raise "n = #{n} but must be greater than 1" if n < 2
49
+ m = mean(values)
50
+ sum = values.inject { |s,v| s + (v**2 - m**2)}
51
+ sqrt(sum.to_f/(n -1))
52
+ end
53
+
54
+
55
+ def combinatorial_distribution(n,r,p)
56
+ # probability that r out n or greater hits with the
57
+ # probability of one hit is p.
58
+ if r <= n && r >= 0
59
+ sum = 0
60
+ (r..n).each do |k|
61
+ sum += combinatorial(n,k)*(p)**(k)*(1-p)**(n -k)
62
+ end
63
+ sum
64
+ else
65
+ raise "Error, #{r} must be >= 0 and <= #{n}"
66
+ end
67
+ end
68
+
69
+ def factorial(n)
70
+ #from rosetta code
71
+ (1..n).inject {|prod, i| prod * i}
72
+ end
73
+
74
+ def combinatorial(n, k)
75
+ #from rosetta code
76
+ (0...k).inject(1) do |m,i| (m * (n - i)) / (i + 1) end
77
+ end
78
+
79
+ end
@@ -0,0 +1,32 @@
1
+ Date.class_eval do
2
+ def us_format
3
+ "#{strftime('%B')} #{day.to_s}, #{year.to_s}"
4
+ end
5
+ def us_format_with_weekday
6
+ "#{strftime('%A')}, #{strftime('%B')} #{day.to_s}, #{year.to_s}"
7
+ end
8
+ def charmians_format
9
+ d=cardinalation(day)
10
+ "#{strftime('%A')}, #{d} #{strftime('%B')}, #{year.to_s}"
11
+ end
12
+ def charmians_format_sup
13
+ d=cardinalation(day,true)
14
+ "#{strftime('%A')}, #{d} #{strftime('%B')}, #{year.to_s}"
15
+ end
16
+ def cardinalation(day,html_sup=false)
17
+ s=case day
18
+ when 1,21,31
19
+ 'st'
20
+ when 2,22
21
+ 'nd'
22
+ when 3,23
23
+ 'rd'
24
+ else
25
+ 'th'
26
+ end
27
+ s="<sup>#{s}</sup>" if html_sup
28
+ "#{day}#{s}"
29
+ end
30
+ end
31
+
32
+
@@ -0,0 +1,18 @@
1
+ module TestAccess
2
+ module ExampleMethods
3
+ end
4
+ module ExampleGroupMethods
5
+ def it_should_route_to(path,actions)
6
+ actions.each do |a|
7
+ it "should deny access to #{a}" do
8
+ get a, id: 1
9
+ response.should redirect_to send(path)
10
+ end
11
+ end
12
+ end
13
+ end
14
+ def self.included(receiver)
15
+ receiver.extend ExampleGroupMethods
16
+ receiver.send :include, ExampleMethods
17
+ end
18
+ end
@@ -0,0 +1,3 @@
1
+ module ChrisLib
2
+ VERSION = "0.0.1"
3
+ end
data/lib/chris_lib.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "chris_lib/version"
2
+ require "chris_lib/date_ext"
3
+ require "chris_lib/test_access"
4
+ require "chris_lib/chris_math"
5
+ module ChrisLib
6
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :chris_lib do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chris_lib
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Chris
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.1.5
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.5
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: This library is for personal use only at this stage
84
+ email:
85
+ - obromois@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - MIT-LICENSE
91
+ - Rakefile
92
+ - lib/chris_lib.rb
93
+ - lib/chris_lib/chris_math.rb
94
+ - lib/chris_lib/date_ext.rb
95
+ - lib/chris_lib/test_access.rb
96
+ - lib/chris_lib/version.rb
97
+ - lib/tasks/chris_lib_tasks.rake
98
+ homepage: https://github.com/obromios
99
+ licenses:
100
+ - MIT
101
+ metadata: {}
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubyforge_project:
118
+ rubygems_version: 2.2.1
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: This is a library of shared classes and methods for Chris
122
+ test_files: []