convore-simple 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/convore-simple.gemspec +1 -1
- data/lib/convore-simple.rb +2 -2
- metadata +2 -2
data/convore-simple.gemspec
CHANGED
data/lib/convore-simple.rb
CHANGED
@@ -3,8 +3,8 @@ module ConvoreSimple
|
|
3
3
|
|
4
4
|
class Topic
|
5
5
|
def self.say(message)
|
6
|
-
user = `git config user.convore`.
|
7
|
-
topic = `git config convore.topic`.
|
6
|
+
user = `git config user.convore`.chomp
|
7
|
+
topic = `git config convore.topic`.chomp
|
8
8
|
if user.empty?
|
9
9
|
puts "Setting convore username (git config user.convore <username>)."
|
10
10
|
print "Enter username: "
|