bropages 0.0.3 → 0.0.4
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 +8 -8
- data/lib/bro.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZDc4Yjc0ZmMzODY4YmJiNjhlZDFiMzYwNGIwZmRjNmFhMWQ4MmMwMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NDRlNTJkNGI0ZmQ2ZjJkOTkxNWIzMWE2MjQyNTYyOGRiNzE1NmIyYw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZDU5NDYwMTY5Mjc2NDkwODExMTk1MmVmOTdiNzcwOTg4MzVhMDM4ZDc4Y2Q4
|
|
10
|
+
NDAyYTNlNDMzYjZjMGRiNDc0YThiNjg2ZTU4ZGE0NTg2OTUwOWY1NmZjZDE1
|
|
11
|
+
ZWI4NjQ0NjE4NTc4ODljOWRjMDQ5YWZiYzhkMzIyZTY0YjZjZDY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NjA4MzQ3YWNiMTNiZGEyNmMwNjA0YTgwMzc3NmU4YjA3Y2JiZGQzNTgxYjM5
|
|
14
|
+
MTM5NDc0ZWM3NjI0OGFmOTZiOWE5YjJmNWRhYzYyOGY2ZmUxNThmY2Q1ODFk
|
|
15
|
+
YmU0ZTE4NjAxNzVhYjQ2ODEyZGRkZmM0OTYyZGNhN2UxZWQ4MDg=
|
data/lib/bro.rb
CHANGED
|
@@ -10,7 +10,7 @@ URL = ENV["BROPAGES_URL"] || 'http://bropages.org'
|
|
|
10
10
|
FILE = ENV["HOME"] + '/.bro'
|
|
11
11
|
|
|
12
12
|
program :name, 'bro'
|
|
13
|
-
program :version, '0.0.
|
|
13
|
+
program :version, '0.0.4'
|
|
14
14
|
program :description, "Highly readable supplement to man pages.\n\nShows simple, concise examples for commands."
|
|
15
15
|
|
|
16
16
|
default_command :lookup
|
|
@@ -51,7 +51,7 @@ command :thanks do |c|
|
|
|
51
51
|
say e.message
|
|
52
52
|
say "There was a problem thanking the #{cmd} entry. This entry may not exist or bropages.org may be down".colored.yellow.on_red
|
|
53
53
|
else
|
|
54
|
-
say "You just gave thanks
|
|
54
|
+
say "You just gave thanks to an entry for #{cmd}! You rock!"
|
|
55
55
|
say res
|
|
56
56
|
end
|
|
57
57
|
end
|