cetus 0.1.16 → 0.1.17
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 +5 -5
- data/bin/cetus +13 -2
- data/cetus.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ee40f5f2e1be8e5ab589305ab1a11f15b2799192
|
4
|
+
data.tar.gz: 5fb4a665c5266c4a4f5231a5ce9eb6d24c857b05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1960bd46c52080a560180496a50da041444786fcda1cbe0722412b52080f03e2da6c220c34bc75e6727f94ef3a37aff66438355673a1cce5d3009bb06ac7254c
|
7
|
+
data.tar.gz: b208f7a6cf8f65bfdc203a82ef776a3a94efd5b5bcec50d2d6792afd9d0446062ec0a6b027cccb5edd70c796b1e3abe1804151d1e3443e2103bc232537fe7b77
|
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:
|
9
|
+
# Last update: 2019-01-19 15:00
|
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.17"
|
29
29
|
O_CONFIG=true
|
30
30
|
CONFIG_FILE="~/.lyrainfo"
|
31
31
|
|
@@ -328,10 +328,21 @@ def run()
|
|
328
328
|
end
|
329
329
|
break if $quitting
|
330
330
|
end
|
331
|
+
write_curdir
|
331
332
|
puts "bye"
|
332
333
|
config_write if $writing
|
333
334
|
end
|
334
335
|
|
336
|
+
## write current dir to a file so we can ccd to it when exiting
|
337
|
+
def write_curdir
|
338
|
+
|
339
|
+
f = File.expand_path("~/.fff_d")
|
340
|
+
File.open(f, "w") do
|
341
|
+
puts Dir.pwd
|
342
|
+
end
|
343
|
+
end
|
344
|
+
|
345
|
+
|
335
346
|
## code related to long listing of files
|
336
347
|
GIGA_SIZE = 1073741824.0
|
337
348
|
MEGA_SIZE = 1048576.0
|
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.17"
|
9
9
|
spec.authors = ["Rahul Kumar"]
|
10
10
|
spec.email = ["oneness.univ@gmail.com"]
|
11
11
|
spec.description = %q{lightning fast file navigator}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cetus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rahul Kumar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
version: '0'
|
74
74
|
requirements: []
|
75
75
|
rubyforge_project:
|
76
|
-
rubygems_version: 2.
|
76
|
+
rubygems_version: 2.5.2.3
|
77
77
|
signing_key:
|
78
78
|
specification_version: 4
|
79
79
|
summary: lightning fast file navigator - ruby 1.9.3 .. ruby 2.5
|