bowie 0.3.0 → 0.3.1
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/bin/bowie +4 -4
- data/lib/bowie/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a93c5966ff401a6ac099e9192367aa9e26d625dd
|
4
|
+
data.tar.gz: ccb727e7ce5aa2bfbda88994ab303c2c11995b43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfcfe4277d62a487aef6026d8f8b622959b911a2b267b5d178a6e4babe4cc8fbd5d38f2047a777805896291b5dfec5e4dc00a98203acb9a0ed10e49c156255f6
|
7
|
+
data.tar.gz: b2625bc045740b78d6eeb40ad04d755d5d7900efded6c65b700c0904313fdbf3ded3ebf921cf650ddf7cb24ef1bfc4f6d62b704ae6eaffb128a80d956ba33b3f
|
data/bin/bowie
CHANGED
@@ -9,22 +9,22 @@ class BowieCLI < Thor
|
|
9
9
|
Bowie.get_local_songs
|
10
10
|
Bowie.get_local_lyrics
|
11
11
|
|
12
|
-
desc "install song", "install the selected package"
|
12
|
+
desc "install [song]", "install the selected package"
|
13
13
|
def install(*songs)
|
14
14
|
Bowie.install(*songs)
|
15
15
|
end
|
16
16
|
|
17
|
-
desc "update song", "update the selected package"
|
17
|
+
desc "update [song]", "update the selected package"
|
18
18
|
def update(*songs)
|
19
19
|
Bowie.update(*songs)
|
20
20
|
end
|
21
21
|
|
22
|
-
desc "uninstall song", "remove the selected package"
|
22
|
+
desc "uninstall [song]", "remove the selected package"
|
23
23
|
def uninstall(*songs)
|
24
24
|
Bowie.uninstall(*songs)
|
25
25
|
end
|
26
26
|
|
27
|
-
desc "search song", "list all availables packages matching [song]"
|
27
|
+
desc "search [song]", "list all availables packages matching [song]"
|
28
28
|
def search(song)
|
29
29
|
results = Bowie.search(song)
|
30
30
|
results.each { |key, values| puts "#{values['name']}:\n #{values['description']}" }
|
data/lib/bowie/version.rb
CHANGED