spicy-proton 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
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