expand paths
This commit is contained in:
parent
9263c5366a
commit
b8bebb30c6
2 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ require "paint"
|
|||
# Configuration variables.
|
||||
base_uri = "www.sacred-texts.com"
|
||||
path = "/isl/uq/%{htm_file}"
|
||||
dest_path = File.join(__dir__, "..", "src", "arabic", "%{chapter_num}.json")
|
||||
dest_path = File.expand_path File.join(__dir__, "..", "src", "arabic", "%{chapter_num}.json")
|
||||
chapter_count = 114
|
||||
cool_off = 5
|
||||
|
||||
|
|
|
@ -9,8 +9,8 @@ require "paint"
|
|||
# Configuration variables.
|
||||
base_uri = "quran.com"
|
||||
path = "/%{chapter_num}/%{verse_num}"
|
||||
dest_path = File.join(__dir__, "..", "src", "english", "%{chapter_num}.json")
|
||||
arab_path = File.join(__dir__, "..", "src", "arabic", "%{chapter_num}.json")
|
||||
dest_path = File.expand_path File.join(__dir__, "..", "src", "english", "%{chapter_num}.json")
|
||||
arab_path = File.expand_path File.join(__dir__, "..", "src", "arabic", "%{chapter_num}.json")
|
||||
chapter_count = 114
|
||||
cool_off = 5
|
||||
|
||||
|
|
Loading…
Reference in a new issue