rfd 0.5.1 → 0.5.2
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.
- checksums.yaml +4 -4
- data/lib/rfd.rb +1 -1
- data/rfd.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: f88e92471a817afd233405868bab1793df50f33c
|
|
4
|
+
data.tar.gz: de66b26038bcba42bc51b926702d2626934f5e61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2aa57038d747467073c2bd99d9edc359bf66263a7c243b1ede45bf29f7ae81e40a7653e37d5700721195117888b6f47a71b42bff17f8ef296868494ea4a934af
|
|
7
|
+
data.tar.gz: e2da5fc82b60839e72713f08ce0f0096c7d7ce852017e54aa5b90dca9bd4803c762f1c0e88fa67cdcaff2f292a1c18bc5f3c29e2b15e5225d230d935e67176b5
|
data/lib/rfd.rb
CHANGED
|
@@ -620,7 +620,7 @@ module Rfd
|
|
|
620
620
|
# Get a char as a String from user input.
|
|
621
621
|
def get_char
|
|
622
622
|
c = Curses.getch
|
|
623
|
-
c
|
|
623
|
+
c if (0..255) === c.ord
|
|
624
624
|
end
|
|
625
625
|
|
|
626
626
|
# Accept user input, and directly execute it as a Ruby method call to the controller.
|
data/rfd.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "rfd"
|
|
7
|
-
spec.version = '0.5.
|
|
7
|
+
spec.version = '0.5.2'
|
|
8
8
|
spec.authors = ["Akira Matsuda"]
|
|
9
9
|
spec.email = ["ronnie@dio.jp"]
|
|
10
10
|
spec.description = 'Ruby on Files & Directories'
|