arql 0.1.6 → 0.1.7
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/arql/cli.rb +4 -4
- data/lib/arql/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f17e101c8f2e55b4017ab0e2a662f65219a4c2f9f478cf856298651943a6b721
|
|
4
|
+
data.tar.gz: b41217cbb52e8ca5aba909d465a7ddec6c6504ecca49012c71c69b17571d4d78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f54b11022bf4e4d3b4f98410d20b8ffe309f164c64af1bd9d6b470f137a84ed8c62ff78fdd8c212c21bb5845c5f49f8829ffb39dc09132bccc840327b8ac0ff
|
|
7
|
+
data.tar.gz: b53fdfff0b46d327cbeac75489a8d0d77a00ff1f6e91c06470b5677e7263c503da505d89610a64cb97ff6e5aa10ab606b96a4ffac8aaa97b230643485d4b2e5f
|
data/Gemfile.lock
CHANGED
data/lib/arql/cli.rb
CHANGED
|
@@ -122,9 +122,9 @@ module Arql
|
|
|
122
122
|
return conf if File.file?(conf)
|
|
123
123
|
conf = File.expand_path('~/.arql.yaml')
|
|
124
124
|
return conf if File.file?(conf)
|
|
125
|
-
conf = File.expand_path('~/.arql/init.yml')
|
|
125
|
+
conf = File.expand_path('~/.arql.d/init.yml')
|
|
126
126
|
return conf if File.file?(conf)
|
|
127
|
-
conf = File.expand_path('~/.arql/init.yaml')
|
|
127
|
+
conf = File.expand_path('~/.arql.d/init.yaml')
|
|
128
128
|
return conf if File.file?(conf)
|
|
129
129
|
end
|
|
130
130
|
|
|
@@ -133,9 +133,9 @@ module Arql
|
|
|
133
133
|
return conf if File.file?(conf)
|
|
134
134
|
conf = File.expand_path('~/.arql.yaml')
|
|
135
135
|
return conf if File.file?(conf)
|
|
136
|
-
conf = File.expand_path('~/.arql/init.yml')
|
|
136
|
+
conf = File.expand_path('~/.arql.d/init.yml')
|
|
137
137
|
return conf if File.file?(conf)
|
|
138
|
-
conf = File.expand_path('~/.arql/init.yaml')
|
|
138
|
+
conf = File.expand_path('~/.arql.d/init.yaml')
|
|
139
139
|
return conf if File.file?(conf)
|
|
140
140
|
end
|
|
141
141
|
end
|
data/lib/arql/version.rb
CHANGED