numeric_math 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.rdoc +2 -0
  3. data/README.rdoc +8 -1
  4. data/lib/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e89753ee64a6c30a52d65520ed1bd4d6187916d3
4
- data.tar.gz: 67028435a9179c2de08c2980e20d96d5f94469f9
3
+ metadata.gz: df0739f662157c9f675088e080b90a00b67743b1
4
+ data.tar.gz: c7c7c408ac29ccaa5bb240a2abd6e574802cadee
5
5
  SHA512:
6
- metadata.gz: 8fec71be7a601637bdc5e7efe8c9f8d3226e93950bf79e9a837da69b616be456274e58f0907af49f2f5a5d0d08a9f09c8c12d7ee0a218f139f8ab2bb59743e7f
7
- data.tar.gz: 41161d42823b43eca4f488dea39960257c5070c7bda0607742e6868fd5012cda5aeebf5e0a63110cf4c91e29db3532da07659996e1a838589573208c8d260898
6
+ metadata.gz: 2ec37fa3a55954f75d07654fdb696749dcce6bcef7641754a5668e6dbce2b9a26981dccdfff6669c5e47deed27890320a4461f62874cfe0ff3d86d8d7340b36e
7
+ data.tar.gz: bccffcde1343ebbaa7baeeeaca84344d10473d40774886df1c92023e76228a8557d79fa92c157db92b428b5256bf3e91f64a12cdbdae621598b53688cc8c09a4
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,5 @@
1
1
  = Version history
2
2
 
3
+ [0.0.2] More documention.
4
+
3
5
  [0.0.1] Initial version.
data/README.rdoc CHANGED
@@ -15,7 +15,7 @@ With NumericMath you do:
15
15
 
16
16
  1.5.sin
17
17
 
18
- Math module includes many single argument methods, which take the from
18
+ Math module includes many single argument methods, which take the form
19
19
  as above. Two argument methods are mapped, so that first argument is
20
20
  "self" and the second argument becomes the first and only parameter
21
21
  for the new form.
@@ -33,6 +33,13 @@ The mapped methods are also usable as class methods, e.g:
33
33
 
34
34
  Fixnum.sin( 2 )
35
35
 
36
+ The gem file name is "numeric_math", thus taking NumericMath into use requires:
37
+
38
+ require 'numeric_math'
39
+ ...
40
+ Fixnum.sin( 0.12 )
41
+ 2.cos
42
+
36
43
 
37
44
  == Mapped methods
38
45
 
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Numeric_Math
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  def Numeric_Math.version
4
4
  Numeric_Math::VERSION
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numeric_math
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tero Isannainen