quanty 1.1.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.
- data/COPYING +340 -0
- data/ChangeLog +14 -0
- data/History.txt +6 -0
- data/Manifest.txt +18 -0
- data/README.en +56 -0
- data/README.txt +26 -0
- data/Rakefile +28 -0
- data/extconf.rb +51 -0
- data/lib/quanty/fact.rb +228 -0
- data/lib/quanty/main.rb +159 -0
- data/lib/quanty/parse.rb +852 -0
- data/lib/quanty.rb +7 -0
- data/mkdump.rb +4 -0
- data/parse.y +106 -0
- data/quanty-en.rd +107 -0
- data/quanty-ja.rd +102 -0
- data/test.rb +14 -0
- data/units.dat +3549 -0
- metadata +107 -0
metadata
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: quanty
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 19
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
version: 1.1.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Masahiro Tanaka, Masaomi Hatakeyama, Zeno R.R. Davatz
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-12-21 00:00:00 +01:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: hoe
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 47
|
30
|
+
segments:
|
31
|
+
- 2
|
32
|
+
- 8
|
33
|
+
- 0
|
34
|
+
version: 2.8.0
|
35
|
+
type: :development
|
36
|
+
version_requirements: *id001
|
37
|
+
description: |-
|
38
|
+
A quantity class containing "value" and "unit" which provides:
|
39
|
+
* Unit conversion like the units command.
|
40
|
+
* Operation between quantities with different units, like "km" and "mile",
|
41
|
+
* with automatic unit conversion.
|
42
|
+
email:
|
43
|
+
- masa@ir.isas.jaxa.jp, mhatakeyama@ywesee.com, zdavatz@ywesee.com
|
44
|
+
executables: []
|
45
|
+
|
46
|
+
extensions: []
|
47
|
+
|
48
|
+
extra_rdoc_files:
|
49
|
+
- History.txt
|
50
|
+
- Manifest.txt
|
51
|
+
- README.txt
|
52
|
+
files:
|
53
|
+
- COPYING
|
54
|
+
- ChangeLog
|
55
|
+
- History.txt
|
56
|
+
- Manifest.txt
|
57
|
+
- README.en
|
58
|
+
- README.txt
|
59
|
+
- Rakefile
|
60
|
+
- extconf.rb
|
61
|
+
- lib/quanty.rb
|
62
|
+
- lib/quanty/fact.rb
|
63
|
+
- lib/quanty/main.rb
|
64
|
+
- lib/quanty/parse.rb
|
65
|
+
- mkdump.rb
|
66
|
+
- parse.y
|
67
|
+
- quanty-en.rd
|
68
|
+
- quanty-ja.rd
|
69
|
+
- test.rb
|
70
|
+
- units.dat
|
71
|
+
has_rdoc: true
|
72
|
+
homepage: http://raa.ruby-lang.org/project/quanty/
|
73
|
+
licenses: []
|
74
|
+
|
75
|
+
post_install_message:
|
76
|
+
rdoc_options:
|
77
|
+
- --main
|
78
|
+
- README.txt
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
hash: 3
|
87
|
+
segments:
|
88
|
+
- 0
|
89
|
+
version: "0"
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
hash: 3
|
96
|
+
segments:
|
97
|
+
- 0
|
98
|
+
version: "0"
|
99
|
+
requirements: []
|
100
|
+
|
101
|
+
rubyforge_project: quanty
|
102
|
+
rubygems_version: 1.3.7
|
103
|
+
signing_key:
|
104
|
+
specification_version: 3
|
105
|
+
summary: "A quantity class containing \"value\" and \"unit\" which provides: * Unit conversion like the units command"
|
106
|
+
test_files: []
|
107
|
+
|