lita-console 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/lita/adapters/console.rb +1 -1
- data/lita-console.gemspec +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: a92bf0b463a80a2838733bbf7cb7e77a1dc04e92
|
4
|
+
data.tar.gz: 4fbd907f43efb0540f3d164798745c548d2a6d1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32cf5f8c5c3b896a7d8664dad1c7265cc81bb7cc770f69dec98706a623ad91d505d71e4cb7acb92cba189ecb9dd6fc1220b8ed2dce20542e5b9de713b8ebb405
|
7
|
+
data.tar.gz: 0b32751cdc78fcfa270995b9a18b9fa52b803ea64fb69cfd239faaed3c444b66e6a6d7f34b1052d7e1c00172d0caa47abce926df31aed0aaaab3e288018066dd
|
@@ -9,7 +9,7 @@ module Lita
|
|
9
9
|
# @return [void]
|
10
10
|
def run
|
11
11
|
user = User.create(1, name: "Shell User")
|
12
|
-
source = Source.new(user)
|
12
|
+
source = Source.new(user: user)
|
13
13
|
puts 'Type "exit" or "quit" to end the session.'
|
14
14
|
|
15
15
|
while line = Readline.readline("#{robot.name} > ", true)
|
data/lita-console.gemspec
CHANGED