rcommand 0.1.0 → 0.1.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.
- data/CHANGELOG +2 -0
- data/README +1 -1
- data/lib/rcommand.rb +2 -2
- data/rakefile +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
data/README
CHANGED
@@ -38,5 +38,5 @@ command interface to users, complete with command history and tab completion.
|
|
38
38
|
loop do
|
39
39
|
command_line.prompt()
|
40
40
|
result = command_line.gets()
|
41
|
-
command_line.io_write.
|
41
|
+
command_line.io_write.print("Example command: #{result}")
|
42
42
|
end
|
data/lib/rcommand.rb
CHANGED
@@ -21,7 +21,7 @@
|
|
21
21
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
22
|
#++
|
23
23
|
|
24
|
-
RCOMMAND_VERSION = "0.1.
|
24
|
+
RCOMMAND_VERSION = "0.1.1"
|
25
25
|
|
26
26
|
$:.unshift(File.dirname(__FILE__))
|
27
27
|
|
@@ -253,7 +253,7 @@ class RCommand
|
|
253
253
|
end
|
254
254
|
end
|
255
255
|
end
|
256
|
-
return command
|
256
|
+
return command + "\n"
|
257
257
|
end
|
258
258
|
|
259
259
|
private
|
data/rakefile
CHANGED
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rcommand
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.1.
|
7
|
-
date: 2006-
|
6
|
+
version: 0.1.1
|
7
|
+
date: 2006-04-02 00:00:00 -05:00
|
8
8
|
summary: Command handler.
|
9
9
|
require_paths:
|
10
10
|
- lib
|