arql 0.1.6 → 0.1.7

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: 675fcf2d77da426d416fbd40ebb7cbe916939f66a1e7d1a9300e2f10d889395e
4
- data.tar.gz: 4b474cdf29f419a59e7978994a510480d3f396d67255965a5379d66cd493c104
3
+ metadata.gz: f17e101c8f2e55b4017ab0e2a662f65219a4c2f9f478cf856298651943a6b721
4
+ data.tar.gz: b41217cbb52e8ca5aba909d465a7ddec6c6504ecca49012c71c69b17571d4d78
5
5
  SHA512:
6
- metadata.gz: 0fe878856e68bea3e5d4edb6a2d2e959da73ca7acbdfb0e14a9d7e713158a7fab468debd0e300627aeecbf54143f2296058579cbce4c69f280fa64f64117672d
7
- data.tar.gz: 3a35d6b710fb75ad5a9b0bc7f515a56c67b84bdf0cd73d9b509a5e2fc5f4627b556fe1554732046ba3f97cfcab5415eba86bd49809348c767af858d733cdb2a9
6
+ metadata.gz: 4f54b11022bf4e4d3b4f98410d20b8ffe309f164c64af1bd9d6b470f137a84ed8c62ff78fdd8c212c21bb5845c5f49f8829ffb39dc09132bccc840327b8ac0ff
7
+ data.tar.gz: b53fdfff0b46d327cbeac75489a8d0d77a00ff1f6e91c06470b5677e7263c503da505d89610a64cb97ff6e5aa10ab606b96a4ffac8aaa97b230643485d4b2e5f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- arql (0.1.6)
4
+ arql (0.1.7)
5
5
  activerecord (~> 6.0.3)
6
6
  activesupport (~> 6.0.3)
7
7
  mysql2 (~> 0.5.3)
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
@@ -1,3 +1,3 @@
1
1
  module Arql
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liu Xiang