unit_measurements 5.17.0 → 5.19.0
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 +4 -4
- data/CHANGELOG.md +23 -0
- data/Gemfile.lock +1 -1
- data/lib/unit_measurements/unit.rb +8 -0
- data/lib/unit_measurements/unit_group_builder.rb +1 -1
- data/lib/unit_measurements/unit_groups/all.rb +2 -0
- data/lib/unit_measurements/unit_groups/area.rb +5 -1
- data/lib/unit_measurements/unit_groups/length.rb +3 -3
- data/lib/unit_measurements/unit_groups/mass_flow_rate.rb +49 -0
- data/lib/unit_measurements/unit_groups/power.rb +1 -1
- data/lib/unit_measurements/unit_groups/volumetric_flow_rate.rb +35 -0
- data/lib/unit_measurements/unit_groups/weight.rb +2 -2
- data/lib/unit_measurements/version.rb +1 -1
- data/units.md +118 -56
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b62b251d76f21d5e5fbde4d7868c06d20139aa9a1b919fa41d5f7c292313701c
|
4
|
+
data.tar.gz: 70eb805f83a66060c0b5143621827195c731567169aeeaa5c0f4a05537b65a67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06aee82005c8d47f7d981da3a952c1196e95749f20d51636aa79f980a85730b89d4dcbb81a10ff0a6c2249408b8892715ea631325fa64059f42cf7a96cad0193
|
7
|
+
data.tar.gz: ad904cbf99b964c071cd1f715e0d8ce313a174e3d48a66eb60892bcb90ec4a9a72c0d5cb8535b0e4edbd3486c0768b36ecbcb28c13cbce4a2d0bdd0c7548bf5c
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,26 @@
|
|
1
|
+
## [5.19.0](https://github.com/shivam091/unit_measurements/compare/v5.18.0...v5.19.0) - 2025-01-12
|
2
|
+
|
3
|
+
### What's new
|
4
|
+
|
5
|
+
- Added US Customary units for square foot (`sq_ft`), square mile (`sq_mi`), and square chain (`sq_ch`).
|
6
|
+
|
7
|
+
### What's changed
|
8
|
+
|
9
|
+
- Changed symbol of units `cb (M)` and `cb (US)` to `metric_cb` and `us_cb` in `length`.
|
10
|
+
- Changed symbol of unit `hp (M)` to `metric_hp` in `power`.
|
11
|
+
- Changed symbol of unit `cwt (US)` to `us_cwt` in `weight`.
|
12
|
+
|
13
|
+
----------
|
14
|
+
|
15
|
+
## [5.18.0](https://github.com/shivam091/unit_measurements/compare/v5.17.0...v5.18.0) - 2023-12-16
|
16
|
+
|
17
|
+
### What's new
|
18
|
+
|
19
|
+
- Added unit group for `mass flow rate` units.
|
20
|
+
- Added unit group for `volumetric flow rate` units.
|
21
|
+
|
22
|
+
----------
|
23
|
+
|
1
24
|
## [5.17.0](https://github.com/shivam091/unit_measurements/compare/v5.16.0...v5.17.0) - 2023-12-15
|
2
25
|
|
3
26
|
### What's new
|
data/Gemfile.lock
CHANGED
@@ -202,6 +202,14 @@ module UnitMeasurements
|
|
202
202
|
["Q", %w[quetta], 1e+30]
|
203
203
|
].map(&:freeze).freeze
|
204
204
|
|
205
|
+
# Prefixes for SI binary units and SI decimal units.
|
206
|
+
#
|
207
|
+
# @see SI_BINARY_PREFIXES
|
208
|
+
# @see SI_DECIMAL_PREFIXES
|
209
|
+
# @author {Harshal V. Ladhe}[https://shivam091.github.io/]
|
210
|
+
# @since 5.19.0
|
211
|
+
SI_PREFIXES = SI_BINARY_PREFIXES + SI_DECIMAL_PREFIXES
|
212
|
+
|
205
213
|
# Parses tokens and returns a +conversion value+ and the +unit+.
|
206
214
|
#
|
207
215
|
# This method is used internally to parse the conversion value of the unit
|
@@ -165,7 +165,7 @@ module UnitMeasurements
|
|
165
165
|
def build_si_units(name, value:, add_binary_prefixes:, aliases:)
|
166
166
|
si_units = [build_unit(name, value: value, aliases: aliases)]
|
167
167
|
|
168
|
-
si_prefixes = add_binary_prefixes ?
|
168
|
+
si_prefixes = add_binary_prefixes ? Unit::SI_PREFIXES : Unit::SI_DECIMAL_PREFIXES
|
169
169
|
|
170
170
|
si_prefixes.each do |short_prefix, long_prefix, multiplier|
|
171
171
|
si_aliases = long_prefix.product(aliases.to_a).flat_map do |prefix, unit|
|
@@ -47,6 +47,8 @@ require_relative "radiation_exposure"
|
|
47
47
|
require_relative "radiation_absorbed_dose"
|
48
48
|
require_relative "radiation_equivalent_dose"
|
49
49
|
require_relative "information_entropy"
|
50
|
+
require_relative "mass_flow_rate"
|
51
|
+
require_relative "volumetric_flow_rate"
|
50
52
|
|
51
53
|
require_relative "sound_level"
|
52
54
|
require_relative "plane_angle"
|
@@ -34,10 +34,14 @@ UnitMeasurements::Area = UnitMeasurements.build do
|
|
34
34
|
unit "sec", value: "640 ac", aliases: ["sect", "section", "sections"]
|
35
35
|
unit "twp", value: "36 sec", aliases: ["survey township", "survey townships"]
|
36
36
|
|
37
|
-
unit "
|
37
|
+
unit "us_ac", value: "4046.873 m²", aliases: ["us acre", "us acres"]
|
38
38
|
unit "ft² (US)", value: "0.09290341161327482 m²", aliases: ["ft^2 (US)", "sq ft (US)", "square foot (US)", "square feet (US)"]
|
39
39
|
unit "mi² (US)", value: "2.58999847e+6 m²", aliases: ["mi^2 (US)", "sq mi (US)", "square mile (US)", "square miles (US)"]
|
40
40
|
unit "ch² (US)", value: "404.6873 m²", aliases: ["ch^2 (US)", "sq ch (US)", "square chain (US)", "square chains (US)"]
|
41
|
+
|
42
|
+
unit "sq_ft", value: "0.09290341161327482 m²", aliases: ["us square foot", "us square feet"]
|
43
|
+
unit "sq_mi", value: "2.58999847e+6 m²", aliases: ["us square mile", "us square miles"]
|
44
|
+
unit "sq_ch", value: "404.6873 m²", aliases: ["us square chain", "us square chains"]
|
41
45
|
end
|
42
46
|
|
43
47
|
system :planck_units do
|
@@ -11,7 +11,7 @@ UnitMeasurements::Length = UnitMeasurements.build do
|
|
11
11
|
unit "Å", value: "1e-10 m", aliases: ["angstrom", "angstroms", "ångström"]
|
12
12
|
unit "μ", value: "1 μm", aliases: ["micron", "microns"]
|
13
13
|
|
14
|
-
unit "
|
14
|
+
unit "metric_cb", value: "185.2 m", aliases: ["metric cable length"]
|
15
15
|
end
|
16
16
|
|
17
17
|
system :imperial do
|
@@ -25,7 +25,7 @@ UnitMeasurements::Length = UnitMeasurements.build do
|
|
25
25
|
unit "th", value: "1/1000 in", aliases: ["thou", "thousandth of an inch", "mil", "mils"]
|
26
26
|
unit "nl", value: "3 nmi", aliases: ["NL", "nleague", "nleagues", "nautical league", "nautical leagues"]
|
27
27
|
unit "rd", value: "16 1/2 ft", aliases: ["rod", "rods", "perch", "pole", "lug"]
|
28
|
-
unit "cb", value: "608 ft", aliases: ["
|
28
|
+
unit "cb", value: "608 ft", aliases: ["cable length"]
|
29
29
|
unit "qr", value: "1/4 yd", aliases: ["quarter", "quarters"]
|
30
30
|
unit "bc", value: "1/3 in", aliases: ["b.c.", "barleycorn", "barleycorns"]
|
31
31
|
|
@@ -41,7 +41,7 @@ UnitMeasurements::Length = UnitMeasurements.build do
|
|
41
41
|
unit "U", value: "1.75 in", aliases: ["RU", "rack unit", "rack units"]
|
42
42
|
unit "sft", value: "1200/3937 m", aliases: ["sfoot", "sfeet", "survey-foot", "survey-feet"]
|
43
43
|
|
44
|
-
unit "
|
44
|
+
unit "us_cb", value: "720 ft", aliases: ["us cable length"]
|
45
45
|
end
|
46
46
|
|
47
47
|
system :astronomical do
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# -*- frozen_string_literal: true -*-
|
3
|
+
# -*- warn_indent: true -*-
|
4
|
+
|
5
|
+
UnitMeasurements::MassFlowRate = UnitMeasurements.build do
|
6
|
+
primitive "kg/s"
|
7
|
+
|
8
|
+
system :metric do
|
9
|
+
unit "kg/s", aliases: ["kilogramme per second", "kilogrammes per second", "kilogram per second", "kilograms per second"]
|
10
|
+
unit "kg/min", value: "1/60 kg/s", aliases: ["kilogramme per minute", "kilogrammes per minute", "kilogram per minute", "kilograms per minute"]
|
11
|
+
unit "kg/h", value: "1/60 kg/min", aliases: ["kilogramme per hour", "kilogrammes per hour", "kilogram per hour", "kilograms per hour"]
|
12
|
+
|
13
|
+
unit "g/s", value: "1/1000 kg/s", aliases: ["gramme per second", "grammes per second", "gram per second", "grams per second"]
|
14
|
+
unit "g/min", value: "1/60 g/s", aliases: ["gramme per minute", "grammes per minute", "gram per minute", "grams per minute"]
|
15
|
+
unit "g/h", value: "1/60 g/min", aliases: ["gramme per hour", "grammes per hour", "gram per hour", "grams per hour"]
|
16
|
+
|
17
|
+
unit "t/s", value: "1000 kg/s", aliases: ["tonne per second", "tonnes per second", "metric tonne per second", "metric tonnes per second"]
|
18
|
+
unit "t/min", value: "1/60 t/s", aliases: ["tonne per minute", "tonnes per minute", "metric tonne per minute", "metric tonnes per minute"]
|
19
|
+
unit "t/h", value: "1/60 t/min", aliases: ["tonne per hour", "tonnes per hour", "metric tonne per hour", "metric tonnes per hour"]
|
20
|
+
end
|
21
|
+
|
22
|
+
system :us_customary do
|
23
|
+
unit "lb/s", value: "0.45359237 kg/s", aliases: ["pound per second", "pounds per second"]
|
24
|
+
unit "lb/min", value: "1/60 lb/s", aliases: ["pound per minute", "pounds per minute"]
|
25
|
+
unit "lb/h", value: "1/60 lb/min", aliases: ["pound per hour", "pounds per hour"]
|
26
|
+
|
27
|
+
unit "tn/s", value: "2000 lb/s", aliases: ["ton per second", "tons per second", "short ton per second", "short tons per second"]
|
28
|
+
unit "tn/min", value: "1/60 tn/s", aliases: ["ton per minute", "tons per minute", "short ton per minute", "short tons per minute"]
|
29
|
+
unit "tn/h", value: "1/60 tn/min", aliases: ["ton per hour", "tons per hour", "short ton per hour", "short tons per hour"]
|
30
|
+
|
31
|
+
unit "slug/s", value: "14.5939 kg/s", aliases: ["slug per second", "slugs per second"]
|
32
|
+
unit "slug/min", value: "1/60 slug/s", aliases: ["slug per minute", "slugs per minute"]
|
33
|
+
unit "slug/h", value: "1/60 slug/min", aliases: ["slug per hour", "slugs per hour"]
|
34
|
+
end
|
35
|
+
|
36
|
+
system :imperial do
|
37
|
+
unit "oz/s", value: "1/16 lb/s", aliases: ["ounce per second", "ounces per second"]
|
38
|
+
unit "oz/min", value: "1/60 oz/s", aliases: ["ounce per minute", "ounces per minute"]
|
39
|
+
unit "oz/h", value: "1/60 oz/min", aliases: ["ounce per hour", "ounces per hour"]
|
40
|
+
|
41
|
+
unit "gr/s", value: "1/7000 lb/s", aliases: ["grain per second", "grains per second"]
|
42
|
+
unit "gr/min", value: "1/60 gr/s", aliases: ["grain per minute", "grains per minute"]
|
43
|
+
unit "gr/h", value: "1/60 gr/min", aliases: ["grain per hour", "grains per hour"]
|
44
|
+
|
45
|
+
unit "LT/s", value: "2240 lb/s", aliases: ["long ton per second", "long tons per second"]
|
46
|
+
unit "LT/min", value: "1/60 LT/s", aliases: ["long ton per minute", "long tons per minute"]
|
47
|
+
unit "LT/h", value: "1/60 LT/min", aliases: ["long ton per hour", "long tons per hour"]
|
48
|
+
end
|
49
|
+
end
|
@@ -10,7 +10,7 @@ UnitMeasurements::Power = UnitMeasurements.build do
|
|
10
10
|
|
11
11
|
unit "p", value: "980.665 W", aliases: ["poncelet", "poncelets"]
|
12
12
|
|
13
|
-
unit "
|
13
|
+
unit "metric_hp", value: "735.49875 W", aliases: ["PS", "metric horsepower"]
|
14
14
|
|
15
15
|
unit "kgf⋅m", value: "9.80665 W", aliases: ["kgf*m", "kilogramme-force meter", "kilogram-force meter"]
|
16
16
|
unit "erg/s", value: "1e-7 W", aliases: ["erg per second", "ergs per second"]
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
# -*- frozen_string_literal: true -*-
|
3
|
+
# -*- warn_indent: true -*-
|
4
|
+
|
5
|
+
UnitMeasurements::VolumetricFlowRate = UnitMeasurements.build do
|
6
|
+
primitive "m³/s"
|
7
|
+
|
8
|
+
system :metric do
|
9
|
+
unit "m³/s", aliases: ["m^3/s", "cubic metre per second", "cubic metres per second", "cubic meter per second", "cubic meters per second"]
|
10
|
+
unit "m³/min", value: "1/60 m³/s", aliases: ["m^3/min", "cubic metre per minute", "cubic metres per minute", "cubic meter per minute", "cubic meters per minute"]
|
11
|
+
unit "m³/h", value: "1/60 m³/min", aliases: ["m^3/h", "cubic metre per hour", "cubic metres per hour", "cubic meter per hour", "cubic meters per hour"]
|
12
|
+
|
13
|
+
unit "l/s", value: "1/1000 m³/s", aliases: ["L/s", "litre per second", "litres per second", "liter per second", "liters per second"]
|
14
|
+
unit "l/min", value: "1/60 l/s", aliases: ["L/min", "litre per minute", "litres per minute", "liter per minute", "liters per minute"]
|
15
|
+
unit "l/h", value: "1/60 l/min", aliases: ["L/h", "litre per hour", "litres per hour", "liter per hour", "liters per hour"]
|
16
|
+
end
|
17
|
+
|
18
|
+
system :imperial do
|
19
|
+
unit "ft³/s", value: "0.028316846592 m³/s", aliases: ["ft^3/s", "cubic foot per second", "cubic feet per second"]
|
20
|
+
unit "ft³/min", value: "1/60 ft³/s", aliases: ["ft^3/min", "cubic foot per minute", "cubic feet per minute"]
|
21
|
+
unit "ft³/h", value: "1/60 ft³/min", aliases: ["ft^3/h", "cubic foot per hour", "cubic feet per hour"]
|
22
|
+
|
23
|
+
unit "in³/s", value: "1.6387064e-5 m³/s", aliases: ["in^3/s", "cubic inch per second", "cubic inches per second"]
|
24
|
+
unit "in³/min", value: "1/60 in³/s", aliases: ["in^3/min", "cubic inch per minute", "cubic inches per minute"]
|
25
|
+
unit "in³/h", value: "1/60 in³/min", aliases: ["in^3/h", "cubic inch per hour", "cubic inches per hour"]
|
26
|
+
|
27
|
+
unit "yd³/s", value: "0.764554857984 m³/s", aliases: ["yd^3/s", "cubic yard per second", "cubic yards per second"]
|
28
|
+
unit "yd³/min", value: "1/60 yd³/s", aliases: ["yd^3/min", "cubic yard per minute", "cubic yards per minute"]
|
29
|
+
unit "yd³/h", value: "1/60 yd³/min", aliases: ["yd^3/h", "cubic yard per hour", "cubic yards per hour"]
|
30
|
+
|
31
|
+
unit "gal/s", value: "0.00454609 m³/s", aliases: ["gallon per second", "gallons per second"]
|
32
|
+
unit "gal/min", value: "1/60 gal/s", aliases: ["gallon per minute", "gallons per minute"]
|
33
|
+
unit "gal/h", value: "1/60 gal/min", aliases: ["gallon per hour", "gallons per hour"]
|
34
|
+
end
|
35
|
+
end
|
@@ -37,8 +37,8 @@ UnitMeasurements::Weight = UnitMeasurements.build do
|
|
37
37
|
|
38
38
|
system :us_customary do
|
39
39
|
unit "tn", value: "2000 lb", aliases: ["ton", "tons", "short ton", "short tons"]
|
40
|
-
unit "
|
41
|
-
unit "
|
40
|
+
unit "us_qr", value: "1/4 us_cwt", aliases: ["us qtr", "us quarter", "us quarters"]
|
41
|
+
unit "us_cwt", value: "100 lb", aliases: ["us hundredweight", "short hundredweight"]
|
42
42
|
end
|
43
43
|
|
44
44
|
system :gravitational_metric do
|
data/units.md
CHANGED
@@ -32,7 +32,7 @@ These units are defined in `UnitMeasurements::Length`.
|
|
32
32
|
| 13 | pc | parsec, parsecs |
|
33
33
|
| 14 | nl | NL, nleague, nleagues, nautical league, nautical leagues |
|
34
34
|
| 15 | rd | rod, rods, perch, pole, lug |
|
35
|
-
| 16 | cb |
|
35
|
+
| 16 | cb | cable length |
|
36
36
|
| 17 | ls | light-second, light-seconds |
|
37
37
|
| 18 | lh | light-hour, light-hours |
|
38
38
|
| 19 | ld | light-day, light-days |
|
@@ -47,8 +47,8 @@ These units are defined in `UnitMeasurements::Length`.
|
|
47
47
|
| 28 | sft | sfoot, sfeet, survey-foot, survey-feet |
|
48
48
|
| 29 | bc | b.c., barleycorn, barleycorns |
|
49
49
|
| 30 | lmin | light-minute, light-minutes |
|
50
|
-
| 31 |
|
51
|
-
| 32 |
|
50
|
+
| 31 | metric_cb | metric cable length |
|
51
|
+
| 32 | us_cb | us cable length |
|
52
52
|
| 33 | lₚ | planck length, quantum length |
|
53
53
|
| 34 | qr | quarter, quarters |
|
54
54
|
| 35 | U | RU, rack unit, rack units |
|
@@ -81,11 +81,11 @@ These units are defined in `UnitMeasurements::Weight`.
|
|
81
81
|
| 19 | hyl | mug, metric slug, metric slugs, hyls |
|
82
82
|
| 20 | cwt | hundredweight, long hundredweight, imperial hundredweight |
|
83
83
|
| 21 | slug | slugs |
|
84
|
-
| 22 |
|
84
|
+
| 22 | us_cwt | us hundredweight, short hundredweight |
|
85
85
|
| 23 | mₚ | planck mass, quantum mass |
|
86
86
|
| 24 | qr | qtr, quarter, quarters |
|
87
87
|
| 25 | fir | firkin, firkins |
|
88
|
-
| 26 |
|
88
|
+
| 26 | us_qr | us qtr, us quarter, us quarters |
|
89
89
|
|
90
90
|
## 3. Time or duration
|
91
91
|
|
@@ -168,7 +168,7 @@ These units are defined in `UnitMeasurements::Area`.
|
|
168
168
|
| 14 | fur² | fur^2, sq fur, square furlong, square furlongs |
|
169
169
|
| 15 | rd² | rd^2, sq rd, square rod, square rods |
|
170
170
|
| 16 | lnk² | link^2, sq lnk, square link, square links |
|
171
|
-
| 17 |
|
171
|
+
| 17 | us_ac | us acre, us acres |
|
172
172
|
| 18 | ft² (US) | ft^2 (US), sq ft (US), square foot (US), square feet (US) |
|
173
173
|
| 19 | mi² (US) | mi^2 (US), sq mi (US), square mile (US), square miles (US) |
|
174
174
|
| 20 | ch² (US) | ch^2 (US), sq ch (US), square chain (US), square chains (US) |
|
@@ -176,6 +176,9 @@ These units are defined in `UnitMeasurements::Area`.
|
|
176
176
|
| 22 | dun | ḍn, dunam, dunams |
|
177
177
|
| 23 | sec | sect, section, sections |
|
178
178
|
| 24 | twp | survey township, survey townships |
|
179
|
+
| 25 | sq_ft | us square foot, us square feet |
|
180
|
+
| 26 | sq_mi | us square mile, us square miles |
|
181
|
+
| 27 | sq_ch | us square chain, us square chains |
|
179
182
|
|
180
183
|
## 9. Volume & capacity
|
181
184
|
|
@@ -244,19 +247,66 @@ These units are defined in `UnitMeasurements::Density`.
|
|
244
247
|
| 13 | slug/in³ | slug/in^3, slug per cubic inch, slugs per cubic inch |
|
245
248
|
| 14 | ρₚ | planck density, quantum density |
|
246
249
|
|
247
|
-
## 11.
|
248
|
-
|
249
|
-
These units are defined in `UnitMeasurements::
|
250
|
-
|
251
|
-
| # | Name | Aliases |
|
252
|
-
|:--|:--|:--|
|
253
|
-
|
|
254
|
-
| 2 |
|
255
|
-
| 3 |
|
256
|
-
| 4 |
|
257
|
-
| 5 |
|
258
|
-
|
259
|
-
|
250
|
+
## 11. Mass flow rate, mass flow, mass flux, or mass current
|
251
|
+
|
252
|
+
These units are defined in `UnitMeasurements::MassFlowRate`.
|
253
|
+
|
254
|
+
| # | Name | Aliases |
|
255
|
+
|:--|:--|:--|
|
256
|
+
| _1_ | _kg/s_ | _kilogramme per second, kilogrammes per second, kilogram per second, kilograms per second_ |
|
257
|
+
| 2 | kg/min | kilogramme per minute, kilogrammes per minute, kilogram per minute, kilograms per minute |
|
258
|
+
| 3 | kg/h | kilogramme per hour, kilogrammes per hour, kilogram per hour, kilograms per hour |
|
259
|
+
| 4 | g/s | gramme per second, grammes per second, gram per second, grams per second |
|
260
|
+
| 5 | g/min | gramme per minute, grammes per minute, gram per minute, grams per minute |
|
261
|
+
| 6 | g/h | gramme per hour, grammes per hour, gram per hour, grams per hour |
|
262
|
+
| 7 | t/s | tonne per second, tonnes per second, metric tonne per second, metric tonnes per second |
|
263
|
+
| 8 | t/min | tonne per minute, tonnes per minute, metric tonne per minute, metric tonnes per minute |
|
264
|
+
| 9 | t/h | tonne per hour, tonnes per hour, metric tonne per hour, metric tonnes per hour |
|
265
|
+
| 10 | lb/s | pound per second, pounds per second |
|
266
|
+
| 11 | lb/min | pound per minute, pounds per minute |
|
267
|
+
| 12 | lb/h | pound per hour, pounds per hour |
|
268
|
+
| 13 | tn/s | ton per second, tons per second, short ton per second, short tons per second |
|
269
|
+
| 14 | tn/min | ton per minute, tons per minute, short ton per minute, short tons per minute |
|
270
|
+
| 15 | tn/h | ton per hour, tons per hour, short ton per hour, short tons per hour |
|
271
|
+
| 16 | slug/s | slug per second, slugs per second |
|
272
|
+
| 17 | slug/min | slug per minute, slugs per minute |
|
273
|
+
| 18 | slug/h | slug per hour, slugs per hour |
|
274
|
+
| 19 | oz/s | ounce per second, ounces per second |
|
275
|
+
| 10 | oz/min | ounce per minute, ounces per minute |
|
276
|
+
| 21 | oz/h | ounce per hour, ounces per hour |
|
277
|
+
| 22 | gr/s | grain per second, grains per second |
|
278
|
+
| 23 | gr/min | grain per minute, grains per minute |
|
279
|
+
| 24 | gr/h | grain per hour, grains per hour |
|
280
|
+
| 25 | LT/s | long ton per second, long tons per second |
|
281
|
+
| 26 | LT/min | long ton per minute, long tons per minute |
|
282
|
+
| 27 | LT/h | long ton per hour, long tons per hour |
|
283
|
+
|
284
|
+
## 12. Volumetric flow rate, volume flow rate or volume velocity
|
285
|
+
|
286
|
+
These units are defined in `UnitMeasurements::VolumetricFlowRate`.
|
287
|
+
|
288
|
+
| # | Name | Aliases |
|
289
|
+
|:--|:--|:--|
|
290
|
+
| _1_ | _m³/s_ | _m^3/s, cubic metre per second, cubic metres per second, cubic meter per second, cubic meters per second_ |
|
291
|
+
| 2 | m³/min | m^3/min, cubic metre per minute, cubic metres per minute, cubic meter per minute, cubic meters per minute |
|
292
|
+
| 3 | m³/h | m^3/h, cubic metre per hour, cubic metres per hour, cubic meter per hour, cubic meters per hour |
|
293
|
+
| 4 | l/s | L/s, litre per second, litres per second, liter per second, liters per second |
|
294
|
+
| 5 | l/min | L/min, litre per minute, litres per minute, liter per minute, liters per minute |
|
295
|
+
| 6 | l/h | L/h, litre per hour, litres per hour, liter per hour, liters per hour |
|
296
|
+
| 7 | ft³/s | ft^3/s, cubic foot per second, cubic feet per second |
|
297
|
+
| 8 | ft³/min | ft^3/min, cubic foot per minute, cubic feet per minute |
|
298
|
+
| 9 | ft³/h | ft^3/h, cubic foot per hour, cubic feet per hour |
|
299
|
+
| 10 | in³/s | in^3/s, cubic inch per second, cubic inches per second |
|
300
|
+
| 11 | in³/min | in^3/min, cubic inch per minute, cubic inches per minute |
|
301
|
+
| 12 | in³/h | in^3/h, cubic inch per hour, cubic inches per hour |
|
302
|
+
| 13 | yd³/s | yd^3/s, cubic yard per second, cubic yards per second |
|
303
|
+
| 14 | yd³/min | yd^3/min, cubic yard per minute, cubic yards per minute |
|
304
|
+
| 15 | yd³/h | yd^3/h, cubic yard per hour, cubic yards per hour |
|
305
|
+
| 16 | gal/s | gallon per second, gallons per second |
|
306
|
+
| 17 | gal/min | gallon per minute, gallons per minute |
|
307
|
+
| 18 | gal/h | gallon per hour, gallons per hour |
|
308
|
+
|
309
|
+
## 13. Sound level
|
260
310
|
|
261
311
|
These units are defined in `UnitMeasurements::SoundLevel`.
|
262
312
|
|
@@ -266,7 +316,7 @@ These units are defined in `UnitMeasurements::SoundLevel`.
|
|
266
316
|
| _2_ | _dB_ | _decibel, decibels_ |
|
267
317
|
| 3 | Np | neper, nepers |
|
268
318
|
|
269
|
-
##
|
319
|
+
## 14. Plane angle
|
270
320
|
|
271
321
|
These units are defined in `UnitMeasurements::PlaneAngle`.
|
272
322
|
|
@@ -288,7 +338,7 @@ These units are defined in `UnitMeasurements::PlaneAngle`.
|
|
288
338
|
| 14 | sextant | sextants |
|
289
339
|
| 15 | quadrant | quadrants |
|
290
340
|
|
291
|
-
##
|
341
|
+
## 15. Solid angle or 3D angle
|
292
342
|
|
293
343
|
These units are defined in `UnitMeasurements::SolidAngle`.
|
294
344
|
|
@@ -300,7 +350,7 @@ These units are defined in `UnitMeasurements::SolidAngle`.
|
|
300
350
|
| 4 | arcmin² | (′)², sq ′, square arcminute, square arcminutes |
|
301
351
|
| 5 | arcsec² | (″)², sq ″, square arcsecond, square arcseconds |
|
302
352
|
|
303
|
-
##
|
353
|
+
## 16. Force
|
304
354
|
|
305
355
|
These units are defined in `UnitMeasurements::Force`.
|
306
356
|
|
@@ -325,7 +375,7 @@ These units are defined in `UnitMeasurements::Force`.
|
|
325
375
|
| 17 | (lb⋅in)/s² | (lb\*in)/s^2, pound inch per second squared |
|
326
376
|
| 18 | Fₚ | planck force, quantum force |
|
327
377
|
|
328
|
-
##
|
378
|
+
## 17. Velocity or speed
|
329
379
|
|
330
380
|
These units are defined in `UnitMeasurements::Velocity`.
|
331
381
|
|
@@ -346,7 +396,7 @@ These units are defined in `UnitMeasurements::Velocity`.
|
|
346
396
|
| 13 | mi/h | mph, mile per hour, miles per hour |
|
347
397
|
| 14 | fur/ftn | furlong per fortnight, furlongs per fortnight |
|
348
398
|
|
349
|
-
##
|
399
|
+
## 18. Acceleration
|
350
400
|
|
351
401
|
These units are defined in `UnitMeasurements::Acceleration`.
|
352
402
|
|
@@ -366,7 +416,7 @@ These units are defined in `UnitMeasurements::Acceleration`.
|
|
366
416
|
| 12 | Kn/s | knot per second, knots per second |
|
367
417
|
| 13 | aₚ | planck acceleration, quantum acceleration |
|
368
418
|
|
369
|
-
##
|
419
|
+
## 19. Angular velocity or rotational speed
|
370
420
|
|
371
421
|
These units are defined in `UnitMeasurements::AngularVelocity`.
|
372
422
|
|
@@ -385,7 +435,7 @@ These units are defined in `UnitMeasurements::AngularVelocity`.
|
|
385
435
|
| 11 | gon/min | ᵍ/min, gradian per minute, gradians per minute |
|
386
436
|
| 12 | gon/h | ᵍ/h, gradian per hour, gradians per hour |
|
387
437
|
|
388
|
-
##
|
438
|
+
## 20. Angular acceleration
|
389
439
|
|
390
440
|
These units are defined in `UnitMeasurements::AngularAcceleration`.
|
391
441
|
|
@@ -395,7 +445,19 @@ These units are defined in `UnitMeasurements::AngularAcceleration`.
|
|
395
445
|
| 2 | deg/s² | °/s², deg/s^2, degree per second squared, degrees per second squared |
|
396
446
|
| 3 | gon/s² | ᵍ/s², gon/s^2, gradian per second squared, gradians per second squared |
|
397
447
|
|
398
|
-
##
|
448
|
+
## 21. Quantity
|
449
|
+
|
450
|
+
These units are defined in `UnitMeasurements::Quantity`.
|
451
|
+
|
452
|
+
| # | Name | Aliases |
|
453
|
+
|:--|:--|:--|
|
454
|
+
| 1 | pc | pcs, piece, pieces |
|
455
|
+
| 2 | pr | pair, pairs |
|
456
|
+
| 3 | gr | gross, grosses |
|
457
|
+
| 4 | dz | doz, dozen, dozens |
|
458
|
+
| 5 | gg | great gross, great grosses, grand gross, grand grosses, dozen gross, dozen grosses |
|
459
|
+
|
460
|
+
## 22. Electric potential or electromotive force
|
399
461
|
|
400
462
|
These units are defined in `UnitMeasurements::ElectricPotential`.
|
401
463
|
|
@@ -407,7 +469,7 @@ These units are defined in `UnitMeasurements::ElectricPotential`.
|
|
407
469
|
| 4 | W/A | watt per ampere, watts per ampere |
|
408
470
|
| 5 | J/C | joule per coulomb, joules per coulomb |
|
409
471
|
|
410
|
-
##
|
472
|
+
## 23. Electric charge
|
411
473
|
|
412
474
|
These units are defined in `UnitMeasurements::ElectricCharge`.
|
413
475
|
|
@@ -420,7 +482,7 @@ These units are defined in `UnitMeasurements::ElectricCharge`.
|
|
420
482
|
| 5 | Fd | faraday, faradays |
|
421
483
|
| 6 | qₚ | planck charge, quantum charge |
|
422
484
|
|
423
|
-
##
|
485
|
+
## 24. Electrical capacitance
|
424
486
|
|
425
487
|
These units are defined in `UnitMeasurements::ElectricalCapacitance`.
|
426
488
|
|
@@ -431,7 +493,7 @@ These units are defined in `UnitMeasurements::ElectricalCapacitance`.
|
|
431
493
|
| 3 | statF | statfarad, statfarads |
|
432
494
|
| 4 | C/V | coulomb/volt, coulombs/volt, coulomb per volt, coulombs per volt |
|
433
495
|
|
434
|
-
##
|
496
|
+
## 25. Electrical elastance
|
435
497
|
|
436
498
|
These units are defined in `UnitMeasurements::ElectricalElastance`.
|
437
499
|
|
@@ -440,7 +502,7 @@ These units are defined in `UnitMeasurements::ElectricalElastance`.
|
|
440
502
|
| _1_ | _D*_ | _F⁻¹, daraf, darafs, reciprocal farad, reciprocal farads_ |
|
441
503
|
| 2 | V/C | volt/coulomb, volts/coulomb, volt per coulomb, volts per coulomb |
|
442
504
|
|
443
|
-
##
|
505
|
+
## 26. Electrical resistance or impedance
|
444
506
|
|
445
507
|
These units are defined in `UnitMeasurements::ElectricalResistance`.
|
446
508
|
|
@@ -452,7 +514,7 @@ These units are defined in `UnitMeasurements::ElectricalResistance`.
|
|
452
514
|
| 4 | S | siemens, mho, mhos |
|
453
515
|
| 5 | V/A | volt/amp, volts/amp, volt/ampere, volts/ampere, volt per ampere, volts per ampere |
|
454
516
|
|
455
|
-
##
|
517
|
+
## 27. Electric conductance
|
456
518
|
|
457
519
|
These units are defined in `UnitMeasurements::ElectricConductance`.
|
458
520
|
|
@@ -463,7 +525,7 @@ These units are defined in `UnitMeasurements::ElectricConductance`.
|
|
463
525
|
| 3 | statS | stat℧, statsiemens, statmho, statmhos |
|
464
526
|
| 3 | A/V | amp/volt, amps/volt, ampere/volt, amperes/volt, ampere per volt, amperes per volt |
|
465
527
|
|
466
|
-
##
|
528
|
+
## 28. Electrical inductance
|
467
529
|
|
468
530
|
These units are defined in `UnitMeasurements::ElectricalInductance`.
|
469
531
|
|
@@ -474,7 +536,7 @@ These units are defined in `UnitMeasurements::ElectricalInductance`.
|
|
474
536
|
| 3 | statH | stathenry, stathenries |
|
475
537
|
| 4 | Wb/A | weber per ampere, webers per ampere |
|
476
538
|
|
477
|
-
##
|
539
|
+
## 29. Magnetic flux
|
478
540
|
|
479
541
|
These units are defined in `UnitMeasurements::MagneticFlux`.
|
480
542
|
|
@@ -485,7 +547,7 @@ These units are defined in `UnitMeasurements::MagneticFlux`.
|
|
485
547
|
| 3 | T·m² | T*m^2, tesla-square meter, tesla-square metre |
|
486
548
|
| 4 | G·cm² | G*cm^2, gauss-square centimeter, gauss-square centimetre |
|
487
549
|
|
488
|
-
##
|
550
|
+
## 30. Magnetic induction
|
489
551
|
|
490
552
|
These units are defined in `UnitMeasurements::MagneticInduction`.
|
491
553
|
|
@@ -494,7 +556,7 @@ These units are defined in `UnitMeasurements::MagneticInduction`.
|
|
494
556
|
| _1_ | _T*_ | _tesla, teslas_ |
|
495
557
|
| 2 | G | Gs, gauss |
|
496
558
|
|
497
|
-
##
|
559
|
+
## 31. Magnetic field
|
498
560
|
|
499
561
|
These units are defined in `UnitMeasurements::MagneticField`.
|
500
562
|
|
@@ -503,7 +565,7 @@ These units are defined in `UnitMeasurements::MagneticField`.
|
|
503
565
|
| _1_ | _Oe*_ | _oersted, oersteds_ |
|
504
566
|
| 2 | A/m | ampere/meter, ampere/metre, amperes/meter, amperes/metre, ampere per meter, ampere per metre, amperes per meter, amperes per metre |
|
505
567
|
|
506
|
-
##
|
568
|
+
## 32. Catalytic activity
|
507
569
|
|
508
570
|
These units are defined in `UnitMeasurements::CatalyticActivity`.
|
509
571
|
|
@@ -512,7 +574,7 @@ These units are defined in `UnitMeasurements::CatalyticActivity`.
|
|
512
574
|
| _1_ | _kat*_ | _katal, katals_ |
|
513
575
|
| 2 | U | unit, units, enzUnit |
|
514
576
|
|
515
|
-
##
|
577
|
+
## 33. Electric dipole moment
|
516
578
|
|
517
579
|
These units are defined in `UnitMeasurements::ElectricDipoleMoment`.
|
518
580
|
|
@@ -521,7 +583,7 @@ These units are defined in `UnitMeasurements::ElectricDipoleMoment`.
|
|
521
583
|
| _1_ | _C⋅m*_ | _C*m, coulomb-meter, coulomb-metre_ |
|
522
584
|
| 2 | D | debye, debyes |
|
523
585
|
|
524
|
-
##
|
586
|
+
## 34. Electric quadrupole moment
|
525
587
|
|
526
588
|
These units are defined in `UnitMeasurements::ElectricQuadrupoleMoment`.
|
527
589
|
|
@@ -531,7 +593,7 @@ These units are defined in `UnitMeasurements::ElectricQuadrupoleMoment`.
|
|
531
593
|
| 2 | statC·cm² | statC*m^2, statcoulomb square meter, statcoulomb square metre |
|
532
594
|
| 3 | B | buckingham, buckinghams |
|
533
595
|
|
534
|
-
##
|
596
|
+
## 35. Pressure or mechanical stress
|
535
597
|
|
536
598
|
These units are defined in `UnitMeasurements::Pressure`.
|
537
599
|
|
@@ -566,7 +628,7 @@ These units are defined in `UnitMeasurements::Pressure`.
|
|
566
628
|
| 27 | kgf/dm² | kgf/dm^2, kilogram-force per square decimetre, kilogramme-force per square decimetre |
|
567
629
|
| 28 | Pₚ | planck pressure, quantum pressure |
|
568
630
|
|
569
|
-
##
|
631
|
+
## 36. Torque or moment of force
|
570
632
|
|
571
633
|
These units are defined in `UnitMeasurements::Torque`.
|
572
634
|
|
@@ -590,7 +652,7 @@ These units are defined in `UnitMeasurements::Torque`.
|
|
590
652
|
| 16 | lbf⋅in | lb⋅in, lbf\*in, lb\*in, pound-force inch, pound-inch |
|
591
653
|
| 17 | lbf⋅ft | lb⋅ft, lbf\*ft, lb\*ft, pound-force foot, pound-foot |
|
592
654
|
|
593
|
-
##
|
655
|
+
## 37. Luminous flux
|
594
656
|
|
595
657
|
These units are defined in `UnitMeasurements::LuminousFlux`.
|
596
658
|
|
@@ -598,7 +660,7 @@ These units are defined in `UnitMeasurements::LuminousFlux`.
|
|
598
660
|
|:--|:--|:--|
|
599
661
|
| _1_ | _lm*_ | _lumen, lumens_ |
|
600
662
|
|
601
|
-
##
|
663
|
+
## 38. Illuminance
|
602
664
|
|
603
665
|
These units are defined in `UnitMeasurements::Illuminance`.
|
604
666
|
|
@@ -609,7 +671,7 @@ These units are defined in `UnitMeasurements::Illuminance`.
|
|
609
671
|
| 3 | fc | footcandle, lm/ft², lm/ft^2, lumen per square foot |
|
610
672
|
| 4 | nx | nox |
|
611
673
|
|
612
|
-
##
|
674
|
+
## 39. Luminance
|
613
675
|
|
614
676
|
These units are defined in `UnitMeasurements::Luminance`.
|
615
677
|
|
@@ -622,7 +684,7 @@ These units are defined in `UnitMeasurements::Luminance`.
|
|
622
684
|
| 5 | L | lambert, lamberts |
|
623
685
|
| 6 | sb | stlib |
|
624
686
|
|
625
|
-
##
|
687
|
+
## 40. Frequency
|
626
688
|
|
627
689
|
These units are defined in `UnitMeasurements::Frequency`.
|
628
690
|
|
@@ -633,7 +695,7 @@ These units are defined in `UnitMeasurements::Frequency`.
|
|
633
695
|
| 3 | deg/s | °/s, degree per second, degrees per second |
|
634
696
|
| 4 | rev/s | rps, revolution per second, revolutions per second |
|
635
697
|
|
636
|
-
##
|
698
|
+
## 41. Power or heat flow rate
|
637
699
|
|
638
700
|
These units are defined in `UnitMeasurements::Power`.
|
639
701
|
|
@@ -641,7 +703,7 @@ These units are defined in `UnitMeasurements::Power`.
|
|
641
703
|
|:--|:--|:--|
|
642
704
|
| _1_ | _W*_ | _watt, watts_ |
|
643
705
|
| 2 | p | poncelet, poncelets |
|
644
|
-
| 3 |
|
706
|
+
| 3 | metric_hp | PS, metric horsepower |
|
645
707
|
| 4 | kgf⋅m | kgf*m, kilogramme-force meter, kilogram-force meter |
|
646
708
|
| 5 | cal/s | calorie per second, calories per second |
|
647
709
|
| 6 | cal/min | calorie per minute, calories per minute |
|
@@ -666,7 +728,7 @@ These units are defined in `UnitMeasurements::Power`.
|
|
666
728
|
| 25 | atm⋅ft³/h | atm\*ft^3/h, atmosphere-cubic foot per hour |
|
667
729
|
| 26 | Pₚ | planck power, quantum power |
|
668
730
|
|
669
|
-
##
|
731
|
+
## 42. Energy
|
670
732
|
|
671
733
|
These units are defined in `UnitMeasurements::Energy`.
|
672
734
|
|
@@ -698,7 +760,7 @@ These units are defined in `UnitMeasurements::Energy`.
|
|
698
760
|
| 24 | gal⋅atm | gal*atm, gallon-atmosphere |
|
699
761
|
| 25 | Eₚ | planck energy, quantum energy |
|
700
762
|
|
701
|
-
##
|
763
|
+
## 43. Dynamic viscosity
|
702
764
|
|
703
765
|
These units are defined in `UnitMeasurements::DynamicViscosity`.
|
704
766
|
|
@@ -712,7 +774,7 @@ These units are defined in `UnitMeasurements::DynamicViscosity`.
|
|
712
774
|
| 6 | (lbf⋅s)/in² | (lb⋅s)/in², (lbf\*s)/in^2, (lb\*s)/in^2, pound-force second per square inch |
|
713
775
|
| 7 | Pl | poiseuille |
|
714
776
|
|
715
|
-
##
|
777
|
+
## 44. Kinetic viscosity
|
716
778
|
|
717
779
|
These units are defined in `UnitMeasurements::KineticViscosity`.
|
718
780
|
|
@@ -723,7 +785,7 @@ These units are defined in `UnitMeasurements::KineticViscosity`.
|
|
723
785
|
| 3 | ft²/s | ft^2/s, square foot per second, square feet per second |
|
724
786
|
| 4 | in²/s | in^2/s, square inch per second, square inches per second |
|
725
787
|
|
726
|
-
##
|
788
|
+
## 45. Magnetomotive force
|
727
789
|
|
728
790
|
These units are defined in `UnitMeasurements::MagnetomotiveForce`.
|
729
791
|
|
@@ -732,7 +794,7 @@ These units are defined in `UnitMeasurements::MagnetomotiveForce`.
|
|
732
794
|
| _1_ | _A⋅t_ | _A*t, ampere-turn_ |
|
733
795
|
| 2 | Gb | Gi, gilbert, gilberts |
|
734
796
|
|
735
|
-
##
|
797
|
+
## 46. Radioactivity
|
736
798
|
|
737
799
|
These units are defined in `UnitMeasurements::Radioactivity`.
|
738
800
|
|
@@ -742,7 +804,7 @@ These units are defined in `UnitMeasurements::Radioactivity`.
|
|
742
804
|
| 2 | Ci | curie, curies |
|
743
805
|
| 3 | Rd | rutherford, rutherfords |
|
744
806
|
|
745
|
-
##
|
807
|
+
## 47. Radiation exposure
|
746
808
|
|
747
809
|
These units are defined in `UnitMeasurements::RadiationExposure`.
|
748
810
|
|
@@ -751,7 +813,7 @@ These units are defined in `UnitMeasurements::RadiationExposure`.
|
|
751
813
|
| _1_ | _C/kg*_ | _coulomb per kilogram, coulomb per kilogramme, coulombs per kilogram, coulombs per kilogramme_ |
|
752
814
|
| 2 | R | röntgen, roentgen, roentgens |
|
753
815
|
|
754
|
-
##
|
816
|
+
## 48. Radiation absorbed dose
|
755
817
|
|
756
818
|
These units are defined in `UnitMeasurements::RadiationAbsorbedDose`.
|
757
819
|
|
@@ -761,7 +823,7 @@ These units are defined in `UnitMeasurements::RadiationAbsorbedDose`.
|
|
761
823
|
| 2 | erg/g | erg per gram, erg per gramme, ergs per gram, ergs per gramme |
|
762
824
|
| 3 | rad | radiation absorbed dose |
|
763
825
|
|
764
|
-
##
|
826
|
+
## 49. Radiation equivalent dose
|
765
827
|
|
766
828
|
These units are defined in `UnitMeasurements::RadiationEquivalentDose`.
|
767
829
|
|
@@ -770,7 +832,7 @@ These units are defined in `UnitMeasurements::RadiationEquivalentDose`.
|
|
770
832
|
| _1_ | _Sv*_ | _sievert, sieverts_ |
|
771
833
|
| 2 | rem | röntgen equivalent man, roentgen equivalent man |
|
772
834
|
|
773
|
-
##
|
835
|
+
## 50. Information entropy
|
774
836
|
|
775
837
|
These units are defined in `UnitMeasurements::InformationEntropy`.
|
776
838
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unit_measurements
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Harshal LADHE
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -161,6 +161,7 @@ files:
|
|
161
161
|
- lib/unit_measurements/unit_groups/magnetic_flux.rb
|
162
162
|
- lib/unit_measurements/unit_groups/magnetic_induction.rb
|
163
163
|
- lib/unit_measurements/unit_groups/magnetomotive_force.rb
|
164
|
+
- lib/unit_measurements/unit_groups/mass_flow_rate.rb
|
164
165
|
- lib/unit_measurements/unit_groups/plane_angle.rb
|
165
166
|
- lib/unit_measurements/unit_groups/power.rb
|
166
167
|
- lib/unit_measurements/unit_groups/pressure.rb
|
@@ -176,6 +177,7 @@ files:
|
|
176
177
|
- lib/unit_measurements/unit_groups/torque.rb
|
177
178
|
- lib/unit_measurements/unit_groups/velocity.rb
|
178
179
|
- lib/unit_measurements/unit_groups/volume.rb
|
180
|
+
- lib/unit_measurements/unit_groups/volumetric_flow_rate.rb
|
179
181
|
- lib/unit_measurements/unit_groups/weight.rb
|
180
182
|
- lib/unit_measurements/version.rb
|
181
183
|
- unit_measurements.gemspec
|