notion_ruby_mapping 0.5.4 → 0.5.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e79de731e05cc8d52d2a4bf1cff43aa9af37fd0351632a163d250d5b1a021ccc
|
4
|
+
data.tar.gz: 603eed686b6c9aee581c921fd43416a1c835f8f7ebac38b40b6f69483e61368b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f45b546354600850901dafded3f1dc2bded150466b4b4cc4d40a80e1d75ea50be5822ba6e494bf060a97961697fd3996de4a20fe537a519e84eb116f0d47292d
|
7
|
+
data.tar.gz: 0a30d84fad6ddfb80efee6fe222cf9ad33b85457017dd0fb8b68792ab40dd613d7d7f75a77d874f1153e442a08ae704a76c7210b5c1e884f96ffcab3283c1bc8
|
@@ -19,6 +19,14 @@ module NotionRubyMapping
|
|
19
19
|
@file_names = Array(files)
|
20
20
|
end
|
21
21
|
|
22
|
+
def file_names=(file_names = [])
|
23
|
+
array_file_names = Array(file_names)
|
24
|
+
raise StandardError, "files and file_names must be the same sizes." unless @files.length == array_file_names.length
|
25
|
+
|
26
|
+
@will_update = true
|
27
|
+
@file_names = array_file_names
|
28
|
+
end
|
29
|
+
|
22
30
|
### Not public announced methods
|
23
31
|
|
24
32
|
## Common methods
|