raykit 0.0.499 → 0.0.500
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/lib/raykit/configuration.rb +3 -1
- data/lib/raykit/git/repositories.rb +0 -6
- data/lib/raykit/git/repository.rb +17 -0
- 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: 2b2a3e1c22735ebdacb0d6e65529afda2553beb7e3035c015b894523ec839fc3
|
4
|
+
data.tar.gz: a70d5d46c87f1eb517020af2e59f0e3efd3fde472d9aed2a6d9d63be769680a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5062b8fff78d1a0c5321afa51f6171cff9aa77e344dbbf6be70119d2ba502934156c671600dc4ca526ba2962d19f14d75331fb13c8ddb7d283877cb58ebcbe8
|
7
|
+
data.tar.gz: 7713d9d0f5a112b570ed6eee588e8d491ed9a075ea7747ea5a8695d24c115233fccbfdd88341748134b898848c8490d76892c5e2f4892327959cb21dbbf58e56
|
data/lib/raykit/configuration.rb
CHANGED
@@ -13,7 +13,9 @@ module Raykit
|
|
13
13
|
load_configuration
|
14
14
|
else
|
15
15
|
set_default_configuration
|
16
|
-
|
16
|
+
if (!Dir.exist?(CONFIG_DIR))
|
17
|
+
save_configuration # Save the default configuration if no configuration file exists.
|
18
|
+
end
|
17
19
|
end
|
18
20
|
end
|
19
21
|
|
@@ -63,12 +63,6 @@ module Raykit
|
|
63
63
|
git_dirs.insert(0, dir) if dir.length.positive?
|
64
64
|
end
|
65
65
|
end
|
66
|
-
Dir.chdir(Environment.home_dir) do
|
67
|
-
Dir.glob("**/.git") do |git_dir|
|
68
|
-
dir = File.expand_path("..", git_dir)
|
69
|
-
git_dirs.insert(0, dir) if dir.length.positive?
|
70
|
-
end
|
71
|
-
end
|
72
66
|
|
73
67
|
git_dirs.each do |git_dir|
|
74
68
|
dir = Raykit::Git::Directory.new(git_dir)
|
@@ -273,6 +273,23 @@ module Raykit
|
|
273
273
|
def to_s
|
274
274
|
"Name: #{short_name}\nUrl: #{@url}\nRelative Path: #{relative_path}"
|
275
275
|
end # def to_s
|
276
|
+
|
277
|
+
def to_table
|
278
|
+
#max_name_width = 10
|
279
|
+
#max_value_width = 10
|
280
|
+
#header = " =".ljust(max_name_width + max_value_width + 5, "=")
|
281
|
+
header = "==Repository=="
|
282
|
+
table = header
|
283
|
+
table += "\n" + to_table_row("Name", short_name)
|
284
|
+
table += "\n" + to_table_row("Url", @url)
|
285
|
+
table
|
286
|
+
end # def to_table
|
287
|
+
|
288
|
+
def to_table_row(name, value)
|
289
|
+
max_name_width = 10
|
290
|
+
max_value_width = 30
|
291
|
+
Rainbow(name.rjust(max_name_width, " ")).cyan + " | " + Rainbow(value).white.bold
|
292
|
+
end
|
276
293
|
end # class Repository
|
277
294
|
end # module Git
|
278
295
|
end # module Raykit
|