conformist 0.0.3 → 0.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.
@@ -1,24 +0,0 @@
1
- class ACMA
2
- include Conformist::Base
3
-
4
- option :col_sep => ','
5
- option :quote_char => '"'
6
-
7
- column :name, 11 do |value|
8
- value.match(/[A-Z]+$/)[0].upcase
9
- end
10
- column :callsign, 1
11
- column :latitude, 15
12
- end
13
-
14
- class ACMA::Digital < ACMA
15
- column :signtal_type do
16
- 'digital'
17
- end
18
- end
19
-
20
- class ACMA::Analogue < ACMA
21
- column :signtal_type do
22
- 'analogue'
23
- end
24
- end