cetus 0.1.17 → 0.1.18
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/bin/cetus +6 -4
- data/cetus.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: 246a8dbece2062ca2eadcd89e8c58f83347d9834
|
4
|
+
data.tar.gz: 496c240c085f96cf844ff9f0c87a993e5ef79af6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8646f38eda77d0f87fda7b0108bbdc1ec65151a5b2263d2582fd1962613c9937a1444cb1e14c9b6f3a9cc494e931fa229d0293915695e5c52dabc4fe3449f00
|
7
|
+
data.tar.gz: ff0e0990662af40fac5e1a204d2d2247d64c8907d1cc831f9ca0c65b541afcd3866b186f5f685ed8caf558a108a8732177578f7822d434fdd051e5a3597a4508
|
data/bin/cetus
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
# Author: rkumar http://github.com/rkumar/cetus/
|
7
7
|
# Date: 2013-02-17 - 17:48
|
8
8
|
# License: GPL
|
9
|
-
# Last update: 2019-01-19 15:
|
9
|
+
# Last update: 2019-01-19 15:09
|
10
10
|
# ----------------------------------------------------------------------------- #
|
11
11
|
# cetus.rb Copyright (C) 2012-2013 rahul kumar
|
12
12
|
# == TODO
|
@@ -25,7 +25,7 @@ require 'fileutils'
|
|
25
25
|
# copy into PATH
|
26
26
|
# alias c=~/bin/cetus.rb
|
27
27
|
# c
|
28
|
-
VERSION="0.1.
|
28
|
+
VERSION="0.1.18"
|
29
29
|
O_CONFIG=true
|
30
30
|
CONFIG_FILE="~/.lyrainfo"
|
31
31
|
|
@@ -337,9 +337,11 @@ end
|
|
337
337
|
def write_curdir
|
338
338
|
|
339
339
|
f = File.expand_path("~/.fff_d")
|
340
|
-
|
341
|
-
|
340
|
+
s = Dir.pwd
|
341
|
+
File.open(f, "w") do |f2|
|
342
|
+
f2.puts s
|
342
343
|
end
|
344
|
+
#puts "Written #{s} to #{f}"
|
343
345
|
end
|
344
346
|
|
345
347
|
|
data/cetus.gemspec
CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "cetus"
|
8
|
-
spec.version = "0.1.
|
8
|
+
spec.version = "0.1.18"
|
9
9
|
spec.authors = ["Rahul Kumar"]
|
10
10
|
spec.email = ["oneness.univ@gmail.com"]
|
11
11
|
spec.description = %q{lightning fast file navigator}
|