muby 0.7.7 → 0.7.8
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/muby +0 -0
- data/lib/muby/configuration.rb +1 -1
- data/lib/muby/connection.rb +15 -13
- metadata +5 -5
data/bin/muby
CHANGED
File without changes
|
data/lib/muby/configuration.rb
CHANGED
data/lib/muby/connection.rb
CHANGED
@@ -150,19 +150,21 @@ class Muby::Connection
|
|
150
150
|
c
|
151
151
|
end
|
152
152
|
|
153
|
-
TELNET_COMMANDS
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
153
|
+
unless defined?(TELNET_COMMANDS)
|
154
|
+
TELNET_COMMANDS = {
|
155
|
+
240 => :end_of_sub_negotiation,
|
156
|
+
241 => :noop,
|
157
|
+
242 => :data_mark,
|
158
|
+
243 => :break,
|
159
|
+
249 => :go_ahead,
|
160
|
+
250 => :sub_negotiation,
|
161
|
+
251 => :will,
|
162
|
+
252 => :wont,
|
163
|
+
253 => :do,
|
164
|
+
254 => :dont,
|
165
|
+
255 => :iac
|
166
|
+
}
|
167
|
+
end
|
166
168
|
|
167
169
|
#
|
168
170
|
# This is not telnet command OR ansi, lets treat it as nice MUD text!
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: muby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Kihlgren, Sy Ali
|
@@ -9,7 +9,7 @@ autorequire: muby
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-05-
|
12
|
+
date: 2008-05-24 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -34,15 +34,15 @@ files:
|
|
34
34
|
- lib/muby/logger.rb
|
35
35
|
- lib/muby/style.rb
|
36
36
|
- lib/muby/user_methods.rb
|
37
|
+
- lib/muby/helper_methods.rb
|
37
38
|
- lib/muby/application.rb
|
39
|
+
- lib/muby/user_window.rb
|
38
40
|
- lib/muby/configuration.rb
|
39
41
|
- lib/muby/inputwindow.rb
|
40
42
|
- lib/muby/help.rb
|
41
43
|
- lib/muby/outputwindow.rb
|
42
44
|
- lib/muby/completer.rb
|
43
45
|
- lib/muby/displayer.rb
|
44
|
-
- lib/muby/helper_methods.rb
|
45
|
-
- lib/muby/user_window.rb
|
46
46
|
- lib/muby.rb
|
47
47
|
- contrib/aardmud.org_4000/aliases/aard-aliases.rb
|
48
48
|
- contrib/aardmud.org_4000/gags/aard-gags.rb
|
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
90
|
requirements: []
|
91
91
|
|
92
92
|
rubyforge_project:
|
93
|
-
rubygems_version: 1.
|
93
|
+
rubygems_version: 1.1.1
|
94
94
|
signing_key:
|
95
95
|
specification_version: 2
|
96
96
|
summary: A simple but powerful mud client.
|