utils 0.0.33 → 0.0.34
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/VERSION +1 -1
- data/bin/strip_spaces +21 -0
- data/lib/utils/config/irbrc +3 -1
- data/lib/utils/config/vim/colors/flori.vim +54 -55
- data/lib/utils/config/vimrc +1 -3
- data/lib/utils/editor.rb +42 -14
- data/lib/utils/version.rb +1 -1
- data/utils.gemspec +4 -4
- metadata +34 -31
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.34
|
data/bin/strip_spaces
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
+
require 'tins/go'
|
4
|
+
include Tins::GO
|
3
5
|
require 'tins/secure_write'
|
4
6
|
include Tins::SecureWrite
|
5
7
|
require 'utils'
|
@@ -9,6 +11,25 @@ class ::File
|
|
9
11
|
include Utils::FileXt
|
10
12
|
end
|
11
13
|
|
14
|
+
def usage
|
15
|
+
puts <<-EOT
|
16
|
+
Usage: #{File.basename($0)} [OPTS] [PATHES]
|
17
|
+
|
18
|
+
PATHES are the directory and file pathes that are search for files to be
|
19
|
+
stripped.
|
20
|
+
|
21
|
+
Options are
|
22
|
+
|
23
|
+
-h display this help
|
24
|
+
|
25
|
+
Version is #{File.basename($0)} #{Utils::VERSION}.
|
26
|
+
EOT
|
27
|
+
exit 1
|
28
|
+
end
|
29
|
+
|
30
|
+
args = go 'h'
|
31
|
+
args['h'] and usage
|
32
|
+
|
12
33
|
pathes = ARGV.empty? ? %w[.] : ARGV
|
13
34
|
pathes = pathes.map { |p| File.expand_path(p) }
|
14
35
|
|
data/lib/utils/config/irbrc
CHANGED
@@ -4,9 +4,6 @@
|
|
4
4
|
" :he group-name
|
5
5
|
" :he highlight-groups
|
6
6
|
|
7
|
-
if has("gui_running")
|
8
|
-
set background=dark
|
9
|
-
endif
|
10
7
|
if exists("syntax_on")
|
11
8
|
syntax reset
|
12
9
|
endif
|
@@ -21,74 +18,74 @@ endif
|
|
21
18
|
let g:colors_name="flori"
|
22
19
|
|
23
20
|
" general highlight groups
|
24
|
-
hi Normal guifg=lightyellow guibg=grey20
|
25
|
-
hi ColorColumn guibg=grey25
|
21
|
+
hi Normal guifg=lightyellow guibg=grey20 ctermfg=lightgrey ctermbg=none
|
22
|
+
hi ColorColumn guibg=grey25 ctermbg=darkgrey
|
23
|
+
"hi CursorColumn guibg=grey30
|
24
|
+
"hi CursorLine guibg=grey30
|
25
|
+
hi Folded guibg=grey30 guifg=gold ctermbg=lightgrey ctermfg=black
|
26
|
+
hi FoldColumn guibg=grey30 guifg=tan ctermbg=lightgrey ctermfg=black
|
27
|
+
hi IncSearch guifg=slategrey guibg=khaki ctermbg=darkred ctermfg=lightred
|
28
|
+
hi ModeMsg guifg=goldenrod ctermfg=green
|
29
|
+
hi MoreMsg guifg=seagreen ctermfg=green
|
30
|
+
hi NonText guifg=lightblue guibg=grey30 ctermfg=lightblue
|
31
|
+
hi Question guifg=springgreen ctermfg=green
|
32
|
+
hi Search guibg=peru guifg=white ctermbg=darkred ctermfg=lightred
|
33
|
+
hi SpecialKey guifg=yellowgreen ctermfg=lightgreen
|
34
|
+
hi VertSplit guibg=#c2bfa5 guifg=grey50 gui=none ctermbg=darkgrey ctermfg=lightgrey cterm=none
|
35
|
+
hi StatusLine guibg=#c2bfa5 guifg=black gui=bold ctermbg=white ctermfg=lightblue
|
36
|
+
hi StatusLineNC guibg=#c2bfa5 guifg=grey40 gui=none ctermbg=black ctermfg=grey
|
37
|
+
hi Title guifg=indianred ctermfg=red
|
38
|
+
hi WarningMsg guifg=salmon guibg=NONE ctermfg=red
|
39
|
+
hi LineNr guifg=slategrey guibg=NONE ctermfg=darkgrey
|
40
|
+
hi Pmenu guifg=grey40 guibg=#c2bfa5 gui=NONE ctermbg=darkgrey ctermfg=lightgrey
|
41
|
+
hi PmenuSel guifg=white guibg=grey40 gui=NONE ctermbg=red ctermfg=lightred
|
42
|
+
hi PmenuSbar guifg=black guibg=grey30 ctermfg=white ctermbg=blue
|
43
|
+
hi PmenuThumb guifg=black guibg=white ctermfg=white ctermbg=black
|
26
44
|
hi Cursor guibg=khaki guifg=slategrey
|
27
45
|
hi CursorIM guibg=khaki guifg=slategrey
|
28
|
-
hi CursorColumn guibg=grey25
|
29
|
-
hi CursorLine guibg=grey25
|
30
|
-
hi Folded guibg=grey30 guifg=gold
|
31
|
-
hi FoldColumn guibg=grey30 guifg=tan
|
32
|
-
hi IncSearch guifg=slategrey guibg=khaki
|
33
|
-
hi ModeMsg guifg=goldenrod
|
34
|
-
hi MoreMsg guifg=seagreen
|
35
|
-
hi NonText guifg=lightblue guibg=grey30
|
36
|
-
hi Question guifg=springgreen
|
37
|
-
hi Search guibg=peru guifg=white
|
38
|
-
hi SpecialKey guifg=yellowgreen
|
39
|
-
hi VertSplit guibg=#c2bfa5 guifg=grey50 gui=none
|
40
|
-
hi StatusLine guibg=#c2bfa5 guifg=black gui=none
|
41
|
-
hi StatusLineNC guibg=#c2bfa5 guifg=grey40 gui=none
|
42
|
-
hi Title guifg=indianred
|
43
46
|
hi Visual guifg=NONE guibg=peru
|
44
47
|
hi VisualNOS guifg=NONE guibg=grey25 gui=none
|
45
|
-
hi WarningMsg guifg=salmon guibg=NONE
|
46
|
-
hi LineNr guifg=slategrey guibg=NONE
|
47
|
-
hi Pmenu guifg=grey40 guibg=#c2bfa5 gui=NONE
|
48
|
-
hi PmenuSel guifg=white guibg=grey40 gui=NONE
|
49
|
-
hi PmenuSbar guifg=black guibg=grey30
|
50
|
-
hi PmenuThumb guifg=black guibg=white
|
51
48
|
|
52
49
|
" syntax highlighting groups
|
53
|
-
hi Comment guifg=slategrey guibg=NONE
|
50
|
+
hi Comment guifg=slategrey guibg=NONE ctermfg=darkgrey
|
54
51
|
"
|
55
|
-
hi Constant guifg=lightgreen guibg=NONE
|
56
|
-
hi String guifg=salmon guibg=NONE
|
57
|
-
hi Character guifg=greenyellow guibg=NONE
|
58
|
-
hi Number guifg=red guibg=NONE
|
59
|
-
hi Boolean guifg=red guibg=NONE
|
52
|
+
hi Constant guifg=lightgreen guibg=NONE ctermfg=lightgreen
|
53
|
+
hi String guifg=salmon guibg=NONE ctermfg=red
|
54
|
+
hi Character guifg=greenyellow guibg=NONE ctermfg=red
|
55
|
+
hi Number guifg=red guibg=NONE ctermfg=darkred
|
56
|
+
hi Boolean guifg=red guibg=NONE ctermfg=darkred
|
60
57
|
hi link Float Number
|
61
|
-
hi Regexp guifg=tomato guibg=NONE
|
58
|
+
hi Regexp guifg=tomato guibg=NONE ctermfg=lightred
|
62
59
|
"
|
63
|
-
hi Identifier guifg=palegreen guibg=NONE
|
64
|
-
hi Function guifg=limegreen guibg=NONE
|
60
|
+
hi Identifier guifg=palegreen guibg=NONE ctermfg=lightgreen
|
61
|
+
hi Function guifg=limegreen guibg=NONE ctermfg=darkgreen
|
65
62
|
"
|
66
|
-
hi Statement guifg=khaki guibg=NONE
|
67
|
-
hi Keyword guifg=brown gui=bold guibg=NONE
|
68
|
-
hi Operator guifg=orangered guibg=NONE
|
63
|
+
hi Statement guifg=khaki guibg=NONE ctermfg=yellow
|
64
|
+
hi Keyword guifg=brown gui=bold guibg=NONE ctermfg=brown cterm=bold
|
65
|
+
hi Operator guifg=orangered guibg=NONE ctermfg=darkred
|
69
66
|
"
|
70
|
-
hi PreProc guifg=indianred guibg=NONE
|
67
|
+
hi PreProc guifg=indianred guibg=NONE ctermfg=red
|
71
68
|
"
|
72
|
-
hi Type guifg=darkkhaki guibg=NONE
|
69
|
+
hi Type guifg=darkkhaki guibg=NONE ctermfg=green
|
73
70
|
"
|
74
|
-
hi Special guifg=orange guibg=NONE
|
71
|
+
hi Special guifg=orange guibg=NONE ctermfg=red
|
75
72
|
"
|
76
|
-
hi Underlined guifg=darkslateblue gui=underline guibg=NONE
|
73
|
+
hi Underlined guifg=darkslateblue gui=underline guibg=NONE cterm=underline
|
77
74
|
"
|
78
|
-
hi Ignore guifg=grey40 guibg=NONE
|
75
|
+
hi Ignore guifg=grey40 guibg=NONE ctermfg=darkgrey
|
79
76
|
"
|
80
|
-
hi Error guifg=yellow guibg=orangered
|
77
|
+
hi Error guifg=yellow guibg=orangered ctermfg=white ctermbg=red
|
81
78
|
"
|
82
|
-
hi Todo guifg=orangered guibg=yellow
|
79
|
+
hi Todo guifg=orangered guibg=yellow ctermfg=red ctermbg=yellow
|
83
80
|
"
|
84
81
|
|
85
82
|
hi rubyInterpolation guifg=moccasin guibg=NONE
|
86
|
-
hi rubyInstanceVariable guifg=orangered guibg=NONE
|
87
|
-
hi rubyClassVariable guifg=#dc1436 guibg=NONE
|
88
|
-
hi rubyGlobalVariable guifg=deeppink guibg=NONE
|
89
|
-
hi rubyEval guifg=red guibg=NONE
|
90
|
-
hi rubyBlockParameter guifg=orchid guibg=NONE
|
91
|
-
hi rubyBlockArgument guifg=orchid guibg=NONE
|
83
|
+
hi rubyInstanceVariable guifg=orangered guibg=NONE ctermfg=red
|
84
|
+
hi rubyClassVariable guifg=#dc1436 guibg=NONE ctermfg=red
|
85
|
+
hi rubyGlobalVariable guifg=deeppink guibg=NONE ctermfg=magenta
|
86
|
+
hi rubyEval guifg=red guibg=NONE ctermfg=darkred
|
87
|
+
hi rubyBlockParameter guifg=orchid guibg=NONE ctermfg=lightmagenta
|
88
|
+
hi rubyBlockArgument guifg=orchid guibg=NONE ctermfg=lightmagenta
|
92
89
|
hi link rubyEscape Character
|
93
90
|
hi link rubySymbol Function
|
94
91
|
hi link rubyPseudoVariable Special
|
@@ -108,7 +105,9 @@ hi link rubyRegexpDelimiter rubyRegexp
|
|
108
105
|
hi link javascriptRegexpString Regexp
|
109
106
|
hi link javascriptNumber Number
|
110
107
|
hi link javascriptNull Constant
|
111
|
-
|
112
|
-
|
113
|
-
hi
|
114
|
-
hi
|
108
|
+
|
109
|
+
" diffing
|
110
|
+
hi DiffAdd guibg=green guifg=white ctermbg=green ctermfg=white
|
111
|
+
hi DiffChange guibg=blue guifg=white ctermbg=blue ctermfg=white
|
112
|
+
hi DiffText guifg=yellow ctermbg=yellow ctermfg=white
|
113
|
+
hi DiffDelete guibg=red guifg=white ctermbg=red ctermfg=white
|
data/lib/utils/config/vimrc
CHANGED
@@ -72,11 +72,11 @@ filetype on
|
|
72
72
|
filetype indent on
|
73
73
|
filetype plugin on
|
74
74
|
source $VIMRUNTIME/macros/matchit.vim
|
75
|
+
colorscheme flori
|
75
76
|
|
76
77
|
" Configure GUIs
|
77
78
|
if has("gui_running")
|
78
79
|
set guipty
|
79
|
-
colorscheme flori
|
80
80
|
hi Pmenu ctermbg=Grey guibg=DarkGrey
|
81
81
|
set guioptions-=r
|
82
82
|
set guioptions-=R
|
@@ -123,8 +123,6 @@ if has("gui_running")
|
|
123
123
|
end
|
124
124
|
end
|
125
125
|
else
|
126
|
-
set background=dark
|
127
|
-
colorscheme darkblue
|
128
126
|
hi DiffAdd ctermbg=green
|
129
127
|
hi DiffChange ctermbg=blue
|
130
128
|
hi DiffText ctermbg=gray
|
data/lib/utils/editor.rb
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
module Utils
|
2
2
|
class Editor
|
3
|
+
FILE_LINENUMBER_REGEXP = /^\s*([^:]+):(\d+)/
|
4
|
+
|
5
|
+
module SourceLocationExtension
|
6
|
+
def source_location
|
7
|
+
if respond_to?(:to_str)
|
8
|
+
if (string = to_str) =~ FILE_LINENUMBER_REGEXP
|
9
|
+
[ $1, $2.to_i ]
|
10
|
+
else
|
11
|
+
[ string, 1 ]
|
12
|
+
end
|
13
|
+
else
|
14
|
+
[ to_s, 1 ]
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
class ::Object
|
20
|
+
include SourceLocationExtension
|
21
|
+
end
|
22
|
+
|
3
23
|
def initialize
|
4
24
|
self.wait = false
|
5
25
|
self.pause_duration = 1
|
@@ -41,7 +61,7 @@ module Utils
|
|
41
61
|
end
|
42
62
|
end
|
43
63
|
$DEBUG and warn command * ' '
|
44
|
-
system(*command)
|
64
|
+
system(*command.map(&:to_s))
|
45
65
|
end
|
46
66
|
|
47
67
|
def fullscreen=(enabled)
|
@@ -56,22 +76,22 @@ module Utils
|
|
56
76
|
end
|
57
77
|
|
58
78
|
def file_linenumber?(filename)
|
59
|
-
filename.match(
|
79
|
+
filename.match(FILE_LINENUMBER_REGEXP)
|
80
|
+
end
|
81
|
+
|
82
|
+
def expand_globs(filenames)
|
83
|
+
filenames.map { |f| Dir[f] }.flatten.uniq.sort
|
60
84
|
end
|
61
85
|
|
62
86
|
def edit(*filenames)
|
63
|
-
|
64
|
-
filenames.
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
else
|
72
|
-
edit_file(filename)
|
73
|
-
end
|
74
|
-
elsif !filenames.empty?
|
87
|
+
if filenames.size == 1 and
|
88
|
+
source_location = filenames.first.source_location
|
89
|
+
then
|
90
|
+
edit_source_location(source_location) ||
|
91
|
+
edit_file(expand_globs(source_location[0, 1]))
|
92
|
+
else
|
93
|
+
filenames =
|
94
|
+
expand_globs(filenames.map(&:source_location).map(&:first))
|
75
95
|
edit_file(*filenames)
|
76
96
|
end
|
77
97
|
end
|
@@ -93,6 +113,14 @@ module Utils
|
|
93
113
|
end
|
94
114
|
end
|
95
115
|
|
116
|
+
def edit_source_location(source_location)
|
117
|
+
if File.exist?(source_location[0])
|
118
|
+
edit_file_linenumber(source_location[0], source_location[1])
|
119
|
+
else
|
120
|
+
false
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
96
124
|
def ensure_running
|
97
125
|
started? ? activate : start
|
98
126
|
self
|
data/lib/utils/version.rb
CHANGED
data/utils.gemspec
CHANGED
@@ -2,15 +2,15 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "utils"
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.34"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Florian Frank"]
|
9
|
-
s.date = "2012-02-
|
9
|
+
s.date = "2012-02-11"
|
10
10
|
s.description = "This ruby gem provides some useful command line utilities"
|
11
11
|
s.email = "flori@ping.de"
|
12
|
-
s.executables = ["
|
13
|
-
s.extra_rdoc_files = ["README.rdoc", "lib/utils/config/config_file.rb", "lib/utils/
|
12
|
+
s.executables = ["untest", "chroot-libs", "edit_wait", "chroot-exec", "number_files", "search", "strip_spaces", "path", "enum", "edit", "git-empty", "classify", "utils-install-config", "xmp", "discover", "sshscreen", "myex", "probe", "errf", "same_files", "utils-utilsrc", "unquarantine_apps", "vacuum_firefox_sqlite", "sedit"]
|
13
|
+
s.extra_rdoc_files = ["README.rdoc", "lib/utils/config/config_file.rb", "lib/utils/finder.rb", "lib/utils/version.rb", "lib/utils/find.rb", "lib/utils/config.rb", "lib/utils/editor.rb", "lib/utils/grepper.rb", "lib/utils/file_xt.rb", "lib/utils/md5.rb", "lib/utils/patterns.rb", "lib/utils.rb"]
|
14
14
|
s.files = [".gitignore", "COPYING", "Gemfile", "README.rdoc", "Rakefile", "TODO", "VERSION", "bin/chroot-exec", "bin/chroot-libs", "bin/classify", "bin/discover", "bin/edit", "bin/edit_wait", "bin/enum", "bin/errf", "bin/git-empty", "bin/myex", "bin/number_files", "bin/path", "bin/probe", "bin/same_files", "bin/search", "bin/sedit", "bin/sshscreen", "bin/strip_spaces", "bin/unquarantine_apps", "bin/untest", "bin/utils-install-config", "bin/utils-utilsrc", "bin/vacuum_firefox_sqlite", "bin/xmp", "lib/utils.rb", "lib/utils/config.rb", "lib/utils/config/config_file.rb", "lib/utils/config/gdb/asm", "lib/utils/config/gdb/ruby", "lib/utils/config/gdbinit", "lib/utils/config/irbrc", "lib/utils/config/rdebugrc", "lib/utils/config/rvmrc", "lib/utils/config/screenrc", "lib/utils/config/utilsrc", "lib/utils/config/vim/autoload/Align.vim", "lib/utils/config/vim/autoload/AlignMaps.vim", "lib/utils/config/vim/autoload/rails.vim", "lib/utils/config/vim/autoload/rubycomplete.vim", "lib/utils/config/vim/autoload/sqlcomplete.vim", "lib/utils/config/vim/autoload/vimball.vim", "lib/utils/config/vim/colors/flori.vim", "lib/utils/config/vim/compiler/eruby.vim", "lib/utils/config/vim/compiler/ruby.vim", "lib/utils/config/vim/compiler/rubyunit.vim", "lib/utils/config/vim/ftdetect/ragel.vim", "lib/utils/config/vim/ftdetect/ruby.vim", "lib/utils/config/vim/ftplugin/eruby.vim", "lib/utils/config/vim/ftplugin/ruby.vim", "lib/utils/config/vim/ftplugin/xml.vim", "lib/utils/config/vim/indent/IndentAnything_html.vim", "lib/utils/config/vim/indent/eruby.vim", "lib/utils/config/vim/indent/javascript.vim", "lib/utils/config/vim/indent/ruby.vim", "lib/utils/config/vim/plugin/AlignMapsPlugin.vim", "lib/utils/config/vim/plugin/AlignPlugin.vim", "lib/utils/config/vim/plugin/Decho.vim", "lib/utils/config/vim/plugin/IndentAnything.vim", "lib/utils/config/vim/plugin/bufexplorer.vim", "lib/utils/config/vim/plugin/cecutil.vim", "lib/utils/config/vim/plugin/fugitive.vim", "lib/utils/config/vim/plugin/lusty-explorer.vim", "lib/utils/config/vim/plugin/rails.vim", "lib/utils/config/vim/plugin/rubyextra.vim", "lib/utils/config/vim/plugin/surround.vim", "lib/utils/config/vim/plugin/taglist.vim", "lib/utils/config/vim/plugin/test/IndentAnything/test.js", "lib/utils/config/vim/plugin/vimballPlugin.vim", "lib/utils/config/vim/syntax/Decho.vim", "lib/utils/config/vim/syntax/eruby.vim", "lib/utils/config/vim/syntax/javascript.vim", "lib/utils/config/vim/syntax/ragel.vim", "lib/utils/config/vim/syntax/ruby.vim", "lib/utils/config/vimrc", "lib/utils/editor.rb", "lib/utils/file_xt.rb", "lib/utils/find.rb", "lib/utils/finder.rb", "lib/utils/grepper.rb", "lib/utils/md5.rb", "lib/utils/patterns.rb", "lib/utils/version.rb", "utils.gemspec"]
|
15
15
|
s.homepage = "http://github.com/flori/utils"
|
16
16
|
s.rdoc_options = ["--title", "Utils - Some useful command line utilities", "--main", "README.rdoc"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.34
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-02-
|
12
|
+
date: 2012-02-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: gem_hadar
|
16
|
-
requirement: &
|
16
|
+
requirement: &70292458276420 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 0.1.4
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70292458276420
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: tins
|
27
|
-
requirement: &
|
27
|
+
requirement: &70292458290860 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '0.3'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70292458290860
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: term-ansicolor
|
38
|
-
requirement: &
|
38
|
+
requirement: &70292458289280 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '1.0'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70292458289280
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: dslkit
|
49
|
-
requirement: &
|
49
|
+
requirement: &70292458288380 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: '0.2'
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70292458288380
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: pry-editline
|
60
|
-
requirement: &
|
60
|
+
requirement: &70292458287140 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,47 +65,47 @@ dependencies:
|
|
65
65
|
version: '0'
|
66
66
|
type: :runtime
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *70292458287140
|
69
69
|
description: This ruby gem provides some useful command line utilities
|
70
70
|
email: flori@ping.de
|
71
71
|
executables:
|
72
|
-
-
|
72
|
+
- untest
|
73
73
|
- chroot-libs
|
74
|
-
- classify
|
75
|
-
- discover
|
76
|
-
- edit
|
77
74
|
- edit_wait
|
75
|
+
- chroot-exec
|
76
|
+
- number_files
|
77
|
+
- search
|
78
|
+
- strip_spaces
|
79
|
+
- path
|
78
80
|
- enum
|
79
|
-
-
|
81
|
+
- edit
|
80
82
|
- git-empty
|
83
|
+
- classify
|
84
|
+
- utils-install-config
|
85
|
+
- xmp
|
86
|
+
- discover
|
87
|
+
- sshscreen
|
81
88
|
- myex
|
82
|
-
- number_files
|
83
|
-
- path
|
84
89
|
- probe
|
90
|
+
- errf
|
85
91
|
- same_files
|
86
|
-
- search
|
87
|
-
- sedit
|
88
|
-
- sshscreen
|
89
|
-
- strip_spaces
|
90
|
-
- unquarantine_apps
|
91
|
-
- untest
|
92
|
-
- utils-install-config
|
93
92
|
- utils-utilsrc
|
93
|
+
- unquarantine_apps
|
94
94
|
- vacuum_firefox_sqlite
|
95
|
-
-
|
95
|
+
- sedit
|
96
96
|
extensions: []
|
97
97
|
extra_rdoc_files:
|
98
98
|
- README.rdoc
|
99
99
|
- lib/utils/config/config_file.rb
|
100
|
+
- lib/utils/finder.rb
|
101
|
+
- lib/utils/version.rb
|
102
|
+
- lib/utils/find.rb
|
100
103
|
- lib/utils/config.rb
|
101
104
|
- lib/utils/editor.rb
|
102
|
-
- lib/utils/file_xt.rb
|
103
|
-
- lib/utils/find.rb
|
104
|
-
- lib/utils/finder.rb
|
105
105
|
- lib/utils/grepper.rb
|
106
|
+
- lib/utils/file_xt.rb
|
106
107
|
- lib/utils/md5.rb
|
107
108
|
- lib/utils/patterns.rb
|
108
|
-
- lib/utils/version.rb
|
109
109
|
- lib/utils.rb
|
110
110
|
files:
|
111
111
|
- .gitignore
|
@@ -214,6 +214,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
214
214
|
- - ! '>='
|
215
215
|
- !ruby/object:Gem::Version
|
216
216
|
version: '0'
|
217
|
+
segments:
|
218
|
+
- 0
|
219
|
+
hash: -3400982928978965266
|
217
220
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
218
221
|
none: false
|
219
222
|
requirements:
|