bard 0.69.0 → 0.69.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bard/cli.rb +2 -2
- data/lib/bard/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: 8e77aaa3b46702d144f1ed078868c7992c7283d5a97cc74113eb47de070a9ecc
|
4
|
+
data.tar.gz: e3f5210ab5741c06f5ee6a9010b885718895eec302b69cdb75c1f53b2a5d573f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f162644185e01bb6ee64adc4e4973868195a27fcc5c1e7fafdf40cab8f2b45bc8bd43b5f3210086549de543f01eec3f88487525bc1cc7f40f5034208731cedfb
|
7
|
+
data.tar.gz: b8ce44b788f1ccb4f057498ed61049a66d4f6e1019d44f97fac272933ee7aa1aba3198ca80e6256d8da7a3cb090793bfd4a35046d7cce1905d97dea3db14b02c
|
data/lib/bard/cli.rb
CHANGED
@@ -179,9 +179,9 @@ module Bard
|
|
179
179
|
|
180
180
|
desc "install", "copies bin/setup and bin/ci scripts into current project."
|
181
181
|
def install
|
182
|
-
install_files_path = File.expand_path(File.join(__dir__, "
|
182
|
+
install_files_path = File.expand_path(File.join(__dir__, "../../install_files/*"))
|
183
183
|
system "cp -R #{install_files_path} bin/"
|
184
|
-
github_files_path = File.expand_path(File.join(__dir__, "
|
184
|
+
github_files_path = File.expand_path(File.join(__dir__, "../../install_files/.github"))
|
185
185
|
system "cp -R #{github_files_path} ./"
|
186
186
|
end
|
187
187
|
|
data/lib/bard/version.rb
CHANGED