ruby-units 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.txt +3 -1
- data/README.txt +1 -1
- data/lib/ruby-units.rb +2 -2
- data/lib/units.rb +3 -3
- metadata +3 -3
data/CHANGELOG.txt
CHANGED
@@ -166,4 +166,6 @@ Change Log for Ruby-units
|
|
166
166
|
units or it will assert. Units will be converted to a common base
|
167
167
|
before use.
|
168
168
|
* Can now specify units in rational numbers, i.e., '1/4 cup'.unit
|
169
|
-
* Seems like a good time to move to 1.0 status
|
169
|
+
* Seems like a good time to move to 1.0 status
|
170
|
+
|
171
|
+
2007-01-17 1.0.1 * Force units are now defined correctly.
|
data/README.txt
CHANGED
data/lib/ruby-units.rb
CHANGED
@@ -2,7 +2,7 @@ require 'mathn'
|
|
2
2
|
require 'rational'
|
3
3
|
require 'date'
|
4
4
|
require 'parsedate'
|
5
|
-
# = Ruby Units 1.0.
|
5
|
+
# = Ruby Units 1.0.1
|
6
6
|
#
|
7
7
|
# Copyright 2006 by Kevin C. Olbrich, Ph.D.
|
8
8
|
#
|
@@ -40,7 +40,7 @@ require 'parsedate'
|
|
40
40
|
class Unit < Numeric
|
41
41
|
require 'units'
|
42
42
|
# pre-generate hashes from unit definitions for performance.
|
43
|
-
VERSION = '1.0.
|
43
|
+
VERSION = '1.0.1'
|
44
44
|
@@USER_DEFINITIONS = {}
|
45
45
|
@@PREFIX_VALUES = {}
|
46
46
|
@@PREFIX_MAP = {}
|
data/lib/units.rb
CHANGED
@@ -175,9 +175,9 @@ UNIT_DEFINITIONS = {
|
|
175
175
|
'<therm-US>' => [%w{th therm therms Therm}, 105480400, :energy,%w{<meter> <meter> <kilogram>}, %w{<second> <second>}],
|
176
176
|
|
177
177
|
#force
|
178
|
-
'<newton>' => [%w{N Newton newton}, 1.0, :force, %w{<kilogram> <meter>}, %w{<second>}],
|
179
|
-
'<dyne>' => [%w{dyn dyne}, 1e-5, :force, %w{<kilogram> <meter>}, %w{<second>}],
|
180
|
-
'<pound-force>' => [%w{lbf pound-force}, 4.448222, :force, %w{<kilogram> <meter>}, %w{<second>}],
|
178
|
+
'<newton>' => [%w{N Newton newton}, 1.0, :force, %w{<kilogram> <meter>}, %w{<second> <second>}],
|
179
|
+
'<dyne>' => [%w{dyn dyne}, 1e-5, :force, %w{<kilogram> <meter>}, %w{<second> <second>}],
|
180
|
+
'<pound-force>' => [%w{lbf pound-force}, 4.448222, :force, %w{<kilogram> <meter>}, %w{<second> <second>}],
|
181
181
|
|
182
182
|
#frequency
|
183
183
|
'<hertz>' => [%w{Hz hertz Hertz}, 1.0, :frequency, %w{<1>}, %{<second>}],
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: ruby-units
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.0.
|
7
|
-
date: 2007-01-
|
6
|
+
version: 1.0.1
|
7
|
+
date: 2007-01-17 00:00:00 -05:00
|
8
8
|
summary: A model that performs unit conversions and unit math
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -58,5 +58,5 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.1.
|
61
|
+
version: 1.1.7
|
62
62
|
version:
|