spicy-proton 1.0.0 → 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.
Binary file
data/lib/files.rb DELETED
@@ -1,23 +0,0 @@
1
- module Spicy
2
- module Files
3
- def self.dir
4
- @@dir ||= File.join(File.dirname(__FILE__), 'corpus')
5
- end
6
-
7
- def self.adjectives
8
- @@adjectives ||= File.join(dir, 'adjectives.yaml')
9
- end
10
-
11
- def self.nouns
12
- @@nouns ||= File.join(dir, 'nouns.yaml')
13
- end
14
-
15
- def self.colors
16
- @@colors ||= File.join(dir, 'colors.yaml')
17
- end
18
-
19
- def self.combined
20
- @@combined ||= File.join(dir, 'combined.bin')
21
- end
22
- end
23
- end