rbcurse-core 0.0.9 → 0.0.10
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 +8 -0
- data/VERSION +1 -1
- data/lib/rbcurse/core/include/chunk.rb +8 -1
- data/rbcurse-core.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
**2013-03-22**
|
2
|
+
## 0.0.10 rbcurse-core
|
3
|
+
* Added method_missing to chunkline, required for ribhu gem
|
4
|
+
|
5
|
+
**2013-03-21**
|
6
|
+
## 0.0.9 rbcurse-core
|
7
|
+
* Made several fixed so it works on 1.8.7 (thanks hramrach)
|
8
|
+
|
1
9
|
**2012-01- **
|
2
10
|
## 0.0.4 rbcurse-core
|
3
11
|
* added RESIZE event to form, so resizing app components is possible
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.10
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# Author: rkumar http://github.com/rkumar/rbcurse/
|
5
5
|
# Date: 07.11.11 - 12:31
|
6
6
|
# Same as Ruby's License (http://www.ruby-lang.org/LICENSE.txt)
|
7
|
-
# Last update: 2013-03-
|
7
|
+
# Last update: 2013-03-21 19:01
|
8
8
|
# ------------------------------------------------------------ #
|
9
9
|
#
|
10
10
|
|
@@ -83,6 +83,13 @@ module Chunks
|
|
83
83
|
@chunks.each { |e| result << e.text }
|
84
84
|
result
|
85
85
|
end
|
86
|
+
|
87
|
+
# added to take care of many string methods that are called.
|
88
|
+
# Callers really don't know this is a chunkline, they assume its a string
|
89
|
+
# 2013-03-21 - 19:01
|
90
|
+
def method_missing(sym, *args, &block)
|
91
|
+
self.to_s.send sym, *args, &block
|
92
|
+
end
|
86
93
|
end
|
87
94
|
class ColorParser
|
88
95
|
def initialize cp
|
data/rbcurse-core.gemspec
CHANGED