math_utils 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
+ SHA256:
3
+ metadata.gz: 91c78d9403c39468ed2b480762f2711fbcc0758d71f8cde451cc53f49cc03e2d
4
+ data.tar.gz: 5a18dc19c6f010f3ab6b272b007893f502d4abd388cfe08fa34cacfef1edc557
5
+ SHA512:
6
+ metadata.gz: c911fdb719cb71cf34d9789cb090cad1f52640b3c26cf2a9a94b3742ad708a5f9fc7e028ee1dffdc7d6852b518be8f3c5c08c693bf2ee110e1cf55aba30e91ee
7
+ data.tar.gz: f5800233f2b3b20f076a66e714eb7d2385f744c04ba12c1a7f3fbf74fdf37594b8b8b97b462171897c686dea35f70a6f1377370eac77507ef9d291b15b22d619
data/bin/math_utils ADDED
@@ -0,0 +1,4 @@
1
+ #! /usr/bin/env ruby
2
+
3
+ require 'math_utils'
4
+ puts MathUtils.hello
@@ -0,0 +1,5 @@
1
+ module LinearAlgebra
2
+ def hello
3
+ 'hello, world'
4
+ end
5
+ end
data/lib/math_utils.rb ADDED
@@ -0,0 +1,8 @@
1
+ require 'math_utils/linear_algebra'
2
+ class MathUtils
3
+ extend LinearAlgebra
4
+ # prepend hello to param str
5
+ # def self.hello(your_name)
6
+ # "hello #{your_name}"
7
+ # end
8
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: math_utils
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - tmoe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-12-31 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: math utils
14
+ email: iamtmoe@163.com
15
+ executables:
16
+ - math_utils
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - bin/math_utils
21
+ - lib/math_utils.rb
22
+ - lib/math_utils/linear_algebra.rb
23
+ homepage: https://rubygems.org/gems/math_utils
24
+ licenses:
25
+ - MIT
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.0.9
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: math utils
46
+ test_files: []