aac-metrics 0.0.1 → 0.0.2

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.
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aac-metrics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Whitmer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-02 00:00:00.000000000 Z
11
+ date: 2020-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -78,12 +78,12 @@ files:
78
78
  - lib/aac-metrics.rb
79
79
  - lib/aac-metrics/loader.rb
80
80
  - lib/aac-metrics/metrics.rb
81
- - lib/aac-metrics/obf.rb
82
81
  - lib/ingester.rb
83
82
  - sets/base_words.en.json
84
83
  - sets/common_words.en.json
85
84
  - sets/core_lists.en.json
86
85
  - sets/l84f-e9fafa55d4.common.en.obfset
86
+ - sets/links.obz
87
87
  - sets/qc112-a67653dd81.en.obfset
88
88
  - sets/qc24-bcbee2ea83.en.obfset
89
89
  - sets/qc60-61bbf6171e.common.en.obfset
@@ -1,19 +0,0 @@
1
- module OBF::OBF
2
- FORMAT="open-board-0.1"
3
- FORMAT_CURRENT_VERSION=0.1
4
- def self.to_external(obf, opts)
5
- OBF::External.from_obf(obf, opts)
6
- end
7
-
8
- def self.from_external(board, dest_path)
9
- OBF::External.to_obf(board, dest_path)
10
- end
11
-
12
- def self.to_pdf(obf, dest_path, opts={})
13
- OBF::PDF.from_obf(obf, dest_path, nil, opts)
14
- end
15
-
16
- def self.to_png(obf, dest_path)
17
- OBF::PNG.from_obf(obf, dest_path)
18
- end
19
- end