tiny-sharp-rb 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 +7 -0
- data/money-7.0.2/CHANGELOG.md +843 -0
- data/money-7.0.2/LICENSE +23 -0
- data/money-7.0.2/README.md +626 -0
- data/money-7.0.2/config/currency_backwards_compatible.json +225 -0
- data/money-7.0.2/config/currency_iso.json +2750 -0
- data/money-7.0.2/config/currency_non_iso.json +146 -0
- data/money-7.0.2/lib/money/bank/base.rb +130 -0
- data/money-7.0.2/lib/money/bank/single_currency.rb +26 -0
- data/money-7.0.2/lib/money/bank/variable_exchange.rb +285 -0
- data/money-7.0.2/lib/money/currency/heuristics.rb +11 -0
- data/money-7.0.2/lib/money/currency/loader.rb +28 -0
- data/money-7.0.2/lib/money/currency.rb +477 -0
- data/money-7.0.2/lib/money/locale_backend/base.rb +9 -0
- data/money-7.0.2/lib/money/locale_backend/currency.rb +13 -0
- data/money-7.0.2/lib/money/locale_backend/errors.rb +8 -0
- data/money-7.0.2/lib/money/locale_backend/i18n.rb +28 -0
- data/money-7.0.2/lib/money/money/allocation.rb +87 -0
- data/money-7.0.2/lib/money/money/arithmetic.rb +346 -0
- data/money-7.0.2/lib/money/money/constructors.rb +86 -0
- data/money-7.0.2/lib/money/money/formatter.rb +361 -0
- data/money-7.0.2/lib/money/money/formatting_rules.rb +92 -0
- data/money-7.0.2/lib/money/money/locale_backend.rb +20 -0
- data/money-7.0.2/lib/money/money.rb +664 -0
- data/money-7.0.2/lib/money/rates_store/memory.rb +122 -0
- data/money-7.0.2/lib/money/version.rb +5 -0
- data/money-7.0.2/lib/money.rb +9 -0
- data/money-7.0.2/money.gemspec +32 -0
- data/tiny-sharp-rb.gemspec +12 -0
- metadata +69 -0
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
{
|
|
2
|
+
"eek": {
|
|
3
|
+
"priority": 100,
|
|
4
|
+
"iso_code": "EEK",
|
|
5
|
+
"name": "Estonian Kroon",
|
|
6
|
+
"symbol": "KR",
|
|
7
|
+
"alternate_symbols": [],
|
|
8
|
+
"subunit": "Sent",
|
|
9
|
+
"subunit_to_unit": 100,
|
|
10
|
+
"symbol_first": false,
|
|
11
|
+
"format": "%n %u",
|
|
12
|
+
"html_entity": "",
|
|
13
|
+
"decimal_mark": ".",
|
|
14
|
+
"thousands_separator": ",",
|
|
15
|
+
"iso_numeric": "233",
|
|
16
|
+
"smallest_denomination": 5
|
|
17
|
+
},
|
|
18
|
+
"ghc": {
|
|
19
|
+
"priority": 100,
|
|
20
|
+
"iso_code": "GHS",
|
|
21
|
+
"name": "Ghanaian Cedi",
|
|
22
|
+
"symbol": "₵",
|
|
23
|
+
"disambiguate_symbol": "GH₵",
|
|
24
|
+
"alternate_symbols": ["GH₵"],
|
|
25
|
+
"subunit": "Pesewa",
|
|
26
|
+
"subunit_to_unit": 100,
|
|
27
|
+
"symbol_first": true,
|
|
28
|
+
"html_entity": "₵",
|
|
29
|
+
"decimal_mark": ".",
|
|
30
|
+
"thousands_separator": ",",
|
|
31
|
+
"iso_numeric": "288",
|
|
32
|
+
"smallest_denomination": 1
|
|
33
|
+
},
|
|
34
|
+
"hrk": {
|
|
35
|
+
"priority": 100,
|
|
36
|
+
"iso_code": "HRK",
|
|
37
|
+
"name": "Croatian Kuna",
|
|
38
|
+
"symbol": "kn",
|
|
39
|
+
"alternate_symbols": [],
|
|
40
|
+
"subunit": "Lipa",
|
|
41
|
+
"subunit_to_unit": 100,
|
|
42
|
+
"symbol_first": false,
|
|
43
|
+
"format": "%n %u",
|
|
44
|
+
"html_entity": "",
|
|
45
|
+
"decimal_mark": ",",
|
|
46
|
+
"thousands_separator": ".",
|
|
47
|
+
"iso_numeric": "191",
|
|
48
|
+
"smallest_denomination": 1
|
|
49
|
+
},
|
|
50
|
+
"ltl": {
|
|
51
|
+
"priority": 100,
|
|
52
|
+
"iso_code": "LTL",
|
|
53
|
+
"name": "Lithuanian Litas",
|
|
54
|
+
"symbol": "Lt",
|
|
55
|
+
"alternate_symbols": [],
|
|
56
|
+
"subunit": "Centas",
|
|
57
|
+
"subunit_to_unit": 100,
|
|
58
|
+
"symbol_first": false,
|
|
59
|
+
"format": "%n %u",
|
|
60
|
+
"html_entity": "",
|
|
61
|
+
"decimal_mark": ".",
|
|
62
|
+
"thousands_separator": ",",
|
|
63
|
+
"iso_numeric": "440",
|
|
64
|
+
"smallest_denomination": 1
|
|
65
|
+
},
|
|
66
|
+
"lvl": {
|
|
67
|
+
"priority": 100,
|
|
68
|
+
"iso_code": "LVL",
|
|
69
|
+
"name": "Latvian Lats",
|
|
70
|
+
"symbol": "Ls",
|
|
71
|
+
"alternate_symbols": [],
|
|
72
|
+
"subunit": "Santīms",
|
|
73
|
+
"subunit_to_unit": 100,
|
|
74
|
+
"symbol_first": true,
|
|
75
|
+
"html_entity": "",
|
|
76
|
+
"decimal_mark": ".",
|
|
77
|
+
"thousands_separator": ",",
|
|
78
|
+
"iso_numeric": "428",
|
|
79
|
+
"smallest_denomination": 1
|
|
80
|
+
},
|
|
81
|
+
"mro": {
|
|
82
|
+
"priority": 100,
|
|
83
|
+
"iso_code": "MRO",
|
|
84
|
+
"name": "Mauritanian Ouguiya",
|
|
85
|
+
"symbol": "UM",
|
|
86
|
+
"disambiguate_symbol": "A-UM",
|
|
87
|
+
"alternate_symbols": [],
|
|
88
|
+
"subunit": "Khoums",
|
|
89
|
+
"subunit_to_unit": 5,
|
|
90
|
+
"symbol_first": false,
|
|
91
|
+
"format": "%n %u",
|
|
92
|
+
"html_entity": "",
|
|
93
|
+
"decimal_mark": ".",
|
|
94
|
+
"thousands_separator": ",",
|
|
95
|
+
"iso_numeric": "478",
|
|
96
|
+
"smallest_denomination": 1
|
|
97
|
+
},
|
|
98
|
+
"mtl": {
|
|
99
|
+
"priority": 100,
|
|
100
|
+
"iso_code": "MTL",
|
|
101
|
+
"name": "Maltese Lira",
|
|
102
|
+
"symbol": "₤",
|
|
103
|
+
"alternate_symbols": ["Lm"],
|
|
104
|
+
"subunit": "Cent",
|
|
105
|
+
"subunit_to_unit": 100,
|
|
106
|
+
"symbol_first": true,
|
|
107
|
+
"html_entity": "£",
|
|
108
|
+
"decimal_mark": ".",
|
|
109
|
+
"thousands_separator": ",",
|
|
110
|
+
"iso_numeric": "470",
|
|
111
|
+
"smallest_denomination": 1
|
|
112
|
+
},
|
|
113
|
+
"tmm": {
|
|
114
|
+
"priority": 100,
|
|
115
|
+
"iso_code": "TMM",
|
|
116
|
+
"name": "Turkmenistani Manat",
|
|
117
|
+
"symbol": "m",
|
|
118
|
+
"disambiguate_symbol": "TMM",
|
|
119
|
+
"alternate_symbols": [],
|
|
120
|
+
"subunit": "Tennesi",
|
|
121
|
+
"subunit_to_unit": 100,
|
|
122
|
+
"symbol_first": false,
|
|
123
|
+
"format": "%n %u",
|
|
124
|
+
"html_entity": "",
|
|
125
|
+
"decimal_mark": ".",
|
|
126
|
+
"thousands_separator": ",",
|
|
127
|
+
"iso_numeric": "795",
|
|
128
|
+
"smallest_denomination": 1
|
|
129
|
+
},
|
|
130
|
+
"yen": {
|
|
131
|
+
"priority": 100,
|
|
132
|
+
"iso_code": "JPY",
|
|
133
|
+
"name": "Japanese Yen",
|
|
134
|
+
"symbol": "¥",
|
|
135
|
+
"disambiguate_symbol": "JPY",
|
|
136
|
+
"alternate_symbols": ["円", "圓"],
|
|
137
|
+
"subunit": "Sen",
|
|
138
|
+
"subunit_to_unit": 100,
|
|
139
|
+
"symbol_first": true,
|
|
140
|
+
"html_entity": "¥",
|
|
141
|
+
"decimal_mark": ".",
|
|
142
|
+
"thousands_separator": ",",
|
|
143
|
+
"iso_numeric": "",
|
|
144
|
+
"smallest_denomination": 100
|
|
145
|
+
},
|
|
146
|
+
"zwd": {
|
|
147
|
+
"priority": 100,
|
|
148
|
+
"iso_code": "ZWD",
|
|
149
|
+
"name": "Zimbabwean Dollar",
|
|
150
|
+
"symbol": "$",
|
|
151
|
+
"disambiguate_symbol": "ZWD",
|
|
152
|
+
"alternate_symbols": ["Z$"],
|
|
153
|
+
"subunit": "Cent",
|
|
154
|
+
"subunit_to_unit": 100,
|
|
155
|
+
"symbol_first": true,
|
|
156
|
+
"html_entity": "$",
|
|
157
|
+
"decimal_mark": ".",
|
|
158
|
+
"thousands_separator": ",",
|
|
159
|
+
"iso_numeric": "716",
|
|
160
|
+
"smallest_denomination": 100
|
|
161
|
+
},
|
|
162
|
+
"zwl": {
|
|
163
|
+
"priority": 100,
|
|
164
|
+
"iso_code": "ZWL",
|
|
165
|
+
"name": "Zimbabwean Dollar",
|
|
166
|
+
"symbol": "$",
|
|
167
|
+
"disambiguate_symbol": "ZWL",
|
|
168
|
+
"alternate_symbols": ["Z$"],
|
|
169
|
+
"subunit": "Cent",
|
|
170
|
+
"subunit_to_unit": 100,
|
|
171
|
+
"symbol_first": true,
|
|
172
|
+
"html_entity": "$",
|
|
173
|
+
"decimal_mark": ".",
|
|
174
|
+
"thousands_separator": ",",
|
|
175
|
+
"iso_numeric": "932",
|
|
176
|
+
"smallest_denomination": 100
|
|
177
|
+
},
|
|
178
|
+
"zwn": {
|
|
179
|
+
"priority": 100,
|
|
180
|
+
"iso_code": "ZWN",
|
|
181
|
+
"name": "Zimbabwean Dollar",
|
|
182
|
+
"symbol": "$",
|
|
183
|
+
"disambiguate_symbol": "ZWN",
|
|
184
|
+
"alternate_symbols": ["Z$"],
|
|
185
|
+
"subunit": "Cent",
|
|
186
|
+
"subunit_to_unit": 100,
|
|
187
|
+
"symbol_first": true,
|
|
188
|
+
"html_entity": "$",
|
|
189
|
+
"decimal_mark": ".",
|
|
190
|
+
"thousands_separator": ",",
|
|
191
|
+
"iso_numeric": "942",
|
|
192
|
+
"smallest_denomination": 100
|
|
193
|
+
},
|
|
194
|
+
"zwr": {
|
|
195
|
+
"priority": 100,
|
|
196
|
+
"iso_code": "ZWR",
|
|
197
|
+
"name": "Zimbabwean Dollar",
|
|
198
|
+
"symbol": "$",
|
|
199
|
+
"disambiguate_symbol": "ZWR",
|
|
200
|
+
"alternate_symbols": ["Z$"],
|
|
201
|
+
"subunit": "Cent",
|
|
202
|
+
"subunit_to_unit": 100,
|
|
203
|
+
"symbol_first": true,
|
|
204
|
+
"html_entity": "$",
|
|
205
|
+
"decimal_mark": ".",
|
|
206
|
+
"thousands_separator": ",",
|
|
207
|
+
"iso_numeric": "935",
|
|
208
|
+
"smallest_denomination": 100
|
|
209
|
+
},
|
|
210
|
+
"vef": {
|
|
211
|
+
"priority": 100,
|
|
212
|
+
"iso_code": "VEF",
|
|
213
|
+
"name": "Venezuelan Bolívar",
|
|
214
|
+
"symbol": "Bs.F",
|
|
215
|
+
"alternate_symbols": ["Bs"],
|
|
216
|
+
"subunit": "Céntimo",
|
|
217
|
+
"subunit_to_unit": 100,
|
|
218
|
+
"symbol_first": true,
|
|
219
|
+
"html_entity": "",
|
|
220
|
+
"decimal_mark": ",",
|
|
221
|
+
"thousands_separator": ".",
|
|
222
|
+
"iso_numeric": "937",
|
|
223
|
+
"smallest_denomination": 1
|
|
224
|
+
}
|
|
225
|
+
}
|