utils 0.0.51 → 0.0.52
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/utils/config/vim/ftdetect/slim.vim +2 -0
- data/lib/utils/config/vim/indent/slim.vim +75 -0
- data/lib/utils/config/vim/syntax/slim.vim +117 -0
- data/lib/utils/version.rb +1 -1
- data/utils.gemspec +5 -5
- metadata +25 -22
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.52
|
@@ -0,0 +1,75 @@
|
|
1
|
+
" Vim indent file
|
2
|
+
" Language: Slim
|
3
|
+
|
4
|
+
if exists("b:did_indent")
|
5
|
+
finish
|
6
|
+
endif
|
7
|
+
runtime! indent/ruby.vim
|
8
|
+
unlet! b:did_indent
|
9
|
+
let b:did_indent = 1
|
10
|
+
|
11
|
+
setlocal autoindent sw=2 et
|
12
|
+
setlocal indentexpr=GetSlimIndent()
|
13
|
+
setlocal indentkeys=o,O,*<Return>,},],0),!^F,=end,=else,=elsif,=rescue,=ensure,=when
|
14
|
+
|
15
|
+
" Only define the function once.
|
16
|
+
if exists("*GetSlimIndent")
|
17
|
+
finish
|
18
|
+
endif
|
19
|
+
|
20
|
+
let s:attributes = '\%({.\{-\}}\|\[.\{-\}\]\)'
|
21
|
+
let s:tag = '\%([%.#][[:alnum:]_-]\+\|'.s:attributes.'\)*[<>]*'
|
22
|
+
|
23
|
+
if !exists('g:haml_self_closing_tags')
|
24
|
+
let g:haml_self_closing_tags = 'meta|link|img|hr|br'
|
25
|
+
endif
|
26
|
+
|
27
|
+
function! GetSlimIndent()
|
28
|
+
let lnum = prevnonblank(v:lnum-1)
|
29
|
+
if lnum == 0
|
30
|
+
return 0
|
31
|
+
endif
|
32
|
+
let line = substitute(getline(lnum),'\s\+$','','')
|
33
|
+
let cline = substitute(substitute(getline(v:lnum),'\s\+$','',''),'^\s\+','','')
|
34
|
+
let lastcol = strlen(line)
|
35
|
+
let line = substitute(line,'^\s\+','','')
|
36
|
+
let indent = indent(lnum)
|
37
|
+
let cindent = indent(v:lnum)
|
38
|
+
if cline =~# '\v^-\s*%(elsif|else|when)>'
|
39
|
+
let indent = cindent < indent ? cindent : indent - &sw
|
40
|
+
endif
|
41
|
+
let increase = indent + &sw
|
42
|
+
if indent == indent(lnum)
|
43
|
+
let indent = cindent <= indent ? -1 : increase
|
44
|
+
endif
|
45
|
+
|
46
|
+
let group = synIDattr(synID(lnum,lastcol,1),'name')
|
47
|
+
|
48
|
+
if line =~ '^doctype'
|
49
|
+
return indent
|
50
|
+
elseif line =~ '^/\%(\[[^]]*\]\)\=$'
|
51
|
+
return increase
|
52
|
+
elseif line =~ '^[\.#]'
|
53
|
+
return increase
|
54
|
+
elseif line =~? '^div'
|
55
|
+
return increase
|
56
|
+
elseif group == 'hamlFilter'
|
57
|
+
return increase
|
58
|
+
elseif line =~ '^'.s:tag.'[&!]\=[=~-]\s*\%(\%(if\|else\|elsif\|unless\|case\|when\|while\|until\|for\|begin\|module\|class\|def\)\>\%(.*\<end\>\)\@!\|.*do\%(\s*|[^|]*|\)\=\s*$\)'
|
59
|
+
return increase
|
60
|
+
elseif line =~ '^'.s:tag.'[&!]\=[=~-].*,\s*$'
|
61
|
+
return increase
|
62
|
+
elseif line == '-#'
|
63
|
+
return increase
|
64
|
+
elseif group =~? '\v^(hamlSelfCloser)$' || line =~? '^\v('.g:haml_self_closing_tags.')>'
|
65
|
+
return indent
|
66
|
+
elseif group =~? '\v^(hamlTag|hamlAttributesDelimiter|hamlObjectDelimiter|hamlClass|hamlId|htmlTagName|htmlSpecialTagName)$'
|
67
|
+
return increase
|
68
|
+
elseif synIDattr(synID(v:lnum,1,1),'name') ==? 'hamlRubyFilter'
|
69
|
+
return GetRubyIndent()
|
70
|
+
else
|
71
|
+
return indent
|
72
|
+
endif
|
73
|
+
endfunction
|
74
|
+
|
75
|
+
" vim:set sw=2:
|
@@ -0,0 +1,117 @@
|
|
1
|
+
" Vim syntax file
|
2
|
+
" Language: Slim
|
3
|
+
" Maintainer: Andrew Stone <andy@stonean.com>
|
4
|
+
" Version: 1
|
5
|
+
" Last Change: 2010 Sep 25
|
6
|
+
" TODO: Feedback is welcomed.
|
7
|
+
|
8
|
+
" Quit when a syntax file is already loaded.
|
9
|
+
if exists("b:current_syntax")
|
10
|
+
finish
|
11
|
+
endif
|
12
|
+
|
13
|
+
if !exists("main_syntax")
|
14
|
+
let main_syntax = 'slim'
|
15
|
+
endif
|
16
|
+
|
17
|
+
" Allows a per line syntax evaluation.
|
18
|
+
let b:ruby_no_expensive = 1
|
19
|
+
|
20
|
+
" Include Ruby syntax highlighting
|
21
|
+
syn include @slimRubyTop syntax/ruby.vim
|
22
|
+
unlet! b:current_syntax
|
23
|
+
" Include Haml syntax highlighting
|
24
|
+
syn include @slimHaml syntax/haml.vim
|
25
|
+
unlet! b:current_syntax
|
26
|
+
" Include Sass syntax highlighting
|
27
|
+
syn include @slimSass syntax/sass.vim
|
28
|
+
unlet! b:current_syntax
|
29
|
+
" Include Scss syntax highlighting
|
30
|
+
syn include @slimScss syntax/scss.vim
|
31
|
+
unlet! b:current_syntax
|
32
|
+
" Include Erb syntax highlighting
|
33
|
+
syn include @slimErb syntax/eruby.vim
|
34
|
+
unlet! b:current_syntax
|
35
|
+
" Include Coffeescript syntax highlighting, ignoring errors if it's missing
|
36
|
+
silent! syn include @slimCoffee syntax/coffee.vim
|
37
|
+
unlet! b:current_syntax
|
38
|
+
|
39
|
+
" Include HTML
|
40
|
+
syn include @slimHtml syntax/scss.vim
|
41
|
+
unlet! b:current_syntax
|
42
|
+
|
43
|
+
setlocal iskeyword+=:
|
44
|
+
|
45
|
+
syn match slimBegin "^\s*\(&[^= ]\)\@!" nextgroup=slimTag,slimClassChar,slimIdChar,slimRuby
|
46
|
+
|
47
|
+
syn region rubyCurlyBlock start="{" end="}" contains=@slimRubyTop contained
|
48
|
+
syn cluster slimRubyTop add=rubyCurlyBlock
|
49
|
+
|
50
|
+
syn cluster slimComponent contains=slimClassChar,slimIdChar,slimWrappedAttrs,slimRuby,slimAttr
|
51
|
+
|
52
|
+
syn keyword slimDocType contained html 5 1.1 strict frameset mobile basic transitional
|
53
|
+
syn match slimDocTypeKeyword "^\s*\(doctype\)\s\+" nextgroup=slimDocType
|
54
|
+
|
55
|
+
syn match slimTag "\w\+\(:\w\+\)\=" contained contains=htmlTagName,htmlSpecialTagName nextgroup=@slimComponent
|
56
|
+
syn match slimIdChar "#{\@!" contained nextgroup=slimId
|
57
|
+
syn match slimId "\%(\w\|-\)\+" contained nextgroup=@slimComponent
|
58
|
+
syn match slimClassChar "\." contained nextgroup=slimClass
|
59
|
+
syn match slimClass "\%(\w\|-\)\+" contained nextgroup=@slimComponent
|
60
|
+
|
61
|
+
syn region slimWrappedAttrs matchgroup=slimWrappedAttrsDelimiter start="\s*{\s*" skip="}\s*\"" end="\s*}\s*" contained contains=slimAttr nextgroup=slimRuby
|
62
|
+
syn region slimWrappedAttrs matchgroup=slimWrappedAttrsDelimiter start="\s*\[\s*" end="\s*\]\s*" contained contains=slimAttr nextgroup=slimRuby
|
63
|
+
syn region slimWrappedAttrs matchgroup=slimWrappedAttrsDelimiter start="\s*(\s*" end="\s*)\s*" contained contains=slimAttr nextgroup=slimRuby
|
64
|
+
|
65
|
+
syn match slimAttr "\s*\%(\w\|-\)\+\s*" contained contains=htmlArg nextgroup=slimAttrAssignment
|
66
|
+
syn match slimAttrAssignment "\s*=\s*" contained nextgroup=slimWrappedAttrValue,slimAttrString
|
67
|
+
|
68
|
+
syn region slimWrappedAttrValue matchgroup=slimWrappedAttrValueDelimiter start="{" end="}" contained contains=slimAttrString,@slimRubyTop nextgroup=slimAttr,slimRuby
|
69
|
+
syn region slimWrappedAttrValue matchgroup=slimWrappedAttrValueDelimiter start="\[" end="\]" contained contains=slimAttrString,@slimRubyTop nextgroup=slimAttr,slimRuby
|
70
|
+
syn region slimWrappedAttrValue matchgroup=slimWrappedAttrValueDelimiter start="(" end=")" contained contains=slimAttrString,@slimRubyTop nextgroup=slimAttr,slimRuby
|
71
|
+
|
72
|
+
syn region slimAttrString start=+\s*"+ skip=+\%(\\\\\)*\\"+ end=+"\s*+ contained contains=slimInterpolation,slimInterpolationEscape nextgroup=slimAttr,slimRuby
|
73
|
+
syn region slimAttrString start=+\s*'+ skip=+\%(\\\\\)*\\"+ end=+'\s*+ contained contains=slimInterpolation,slimInterpolationEscape nextgroup=slimAttr,slimRuby
|
74
|
+
|
75
|
+
syn region slimInnerAttrString start=+\s*"+ skip=+\%(\\\\\)*\\"+ end=+"\s*+ contained contains=slimInterpolation,slimInterpolationEscape nextgroup=slimAttr
|
76
|
+
syn region slimInnerAttrString start=+\s*'+ skip=+\%(\\\\\)*\\"+ end=+'\s*+ contained contains=slimInterpolation,slimInterpolationEscape nextgroup=slimAttr
|
77
|
+
|
78
|
+
syn region slimInterpolation matchgroup=slimInterpolationDelimiter start="#{" end="}" contains=@hamlRubyTop containedin=javascriptStringS,javascriptStringD,slimWrappedAttrs
|
79
|
+
syn match slimInterpolationEscape "\\\@<!\%(\\\\\)*\\\%(\\\ze#{\|#\ze{\)"
|
80
|
+
|
81
|
+
syn region slimRuby matchgroup=slimRubyOutputChar start="\s*[=]\==[']\=" skip=",\s*$" end="$" contained contains=@slimRubyTop keepend
|
82
|
+
syn region slimRuby matchgroup=slimRubyChar start="\s*-" skip=",\s*$" end="$" contained contains=@slimRubyTop keepend
|
83
|
+
|
84
|
+
syn match slimComment /^\(\s*\)[/].*\(\n\1\s.*\)*/
|
85
|
+
syn match slimText /^\(\s*\)[`|'].*\(\n\1\s.*\)*/
|
86
|
+
|
87
|
+
syn match slimFilter /\s*\w\+:\s*/ contained
|
88
|
+
syn match slimJs /^\(\s*\)\<javascript:\>.*\(\n\1\s.*\)*/ contains=@htmlJavaScript,slimFilter
|
89
|
+
syn match slimCoffee /^\(\s*\)\<coffee:\>.*\(\n\1\s.*\)*/ contains=@slimCoffee,slimFilter
|
90
|
+
syn match slimHaml /^\(\s*\)\<haml:\>.*\(\n\1\s.*\)*/ contains=@slimHaml,slimFilter
|
91
|
+
syn match slimSass /^\(\s*\)\<sass:\>.*\(\n\1\s.*\)*/ contains=@slimSass,slimFilter
|
92
|
+
syn match slimScss /^\(\s*\)\<scss:\>.*\(\n\1\s.*\)*/ contains=@slimScss,slimFilter
|
93
|
+
syn match slimErb /^\(\s*\)\<erb:\>.*\(\n\1\s.*\)*/ contains=@slimErb,slimFilter
|
94
|
+
|
95
|
+
syn match slimIEConditional "\%(^\s*/\)\@<=\[\s*if\>[^]]*]" contained containedin=slimComment
|
96
|
+
|
97
|
+
hi def link slimAttrString String
|
98
|
+
hi def link slimBegin String
|
99
|
+
hi def link slimClass Type
|
100
|
+
hi def link slimClassChar Type
|
101
|
+
hi def link slimComment Comment
|
102
|
+
hi def link slimDocType Identifier
|
103
|
+
hi def link slimDocTypeKeyword Keyword
|
104
|
+
hi def link slimFilter Keyword
|
105
|
+
hi def link slimIEConditional SpecialComment
|
106
|
+
hi def link slimId Identifier
|
107
|
+
hi def link slimIdChar Identifier
|
108
|
+
hi def link slimInnerAttrString String
|
109
|
+
hi def link slimInterpolationDelimiter Delimiter
|
110
|
+
hi def link slimRubyChar Special
|
111
|
+
hi def link slimRubyOutputChar Special
|
112
|
+
hi def link slimTag Special
|
113
|
+
hi def link slimText String
|
114
|
+
hi def link slimWrappedAttrValueDelimiter Delimiter
|
115
|
+
hi def link slimWrappedAttrsDelimiter Delimiter
|
116
|
+
|
117
|
+
let b:current_syntax = "slim"
|
data/lib/utils/version.rb
CHANGED
data/utils.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "utils"
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.52"
|
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-08-
|
9
|
+
s.date = "2012-08-10"
|
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/
|
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/finder.rb", "lib/utils/grepper.rb", "lib/utils/irb.rb", "lib/utils/md5.rb", "lib/utils/patterns.rb", "lib/utils/version.rb", "utils.gemspec"]
|
12
|
+
s.executables = ["chroot-exec", "chroot-libs", "classify", "discover", "edit", "edit_wait", "enum", "errf", "git-empty", "myex", "number_files", "path", "probe", "same_files", "search", "sedit", "sshscreen", "strip_spaces", "unquarantine_apps", "untest", "utils-install-config", "utils-utilsrc", "vacuum_firefox_sqlite", "xmp"]
|
13
|
+
s.extra_rdoc_files = ["README.rdoc", "lib/utils/config/config_file.rb", "lib/utils/config.rb", "lib/utils/editor.rb", "lib/utils/file_xt.rb", "lib/utils/finder.rb", "lib/utils/grepper.rb", "lib/utils/irb.rb", "lib/utils/md5.rb", "lib/utils/patterns.rb", "lib/utils/version.rb", "lib/utils.rb"]
|
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/ftdetect/slim.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/indent/slim.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/vim/syntax/slim.vim", "lib/utils/config/vimrc", "lib/utils/editor.rb", "lib/utils/file_xt.rb", "lib/utils/finder.rb", "lib/utils/grepper.rb", "lib/utils/irb.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"]
|
17
17
|
s.require_paths = ["lib"]
|
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.52
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-08-
|
12
|
+
date: 2012-08-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: gem_hadar
|
@@ -94,43 +94,43 @@ dependencies:
|
|
94
94
|
description: This ruby gem provides some useful command line utilities
|
95
95
|
email: flori@ping.de
|
96
96
|
executables:
|
97
|
-
-
|
97
|
+
- chroot-exec
|
98
98
|
- chroot-libs
|
99
|
+
- classify
|
100
|
+
- discover
|
101
|
+
- edit
|
99
102
|
- edit_wait
|
100
|
-
- chroot-exec
|
101
|
-
- number_files
|
102
|
-
- search
|
103
|
-
- strip_spaces
|
104
|
-
- path
|
105
103
|
- enum
|
106
|
-
-
|
104
|
+
- errf
|
107
105
|
- git-empty
|
108
|
-
- classify
|
109
|
-
- utils-install-config
|
110
|
-
- xmp
|
111
|
-
- discover
|
112
|
-
- sshscreen
|
113
106
|
- myex
|
107
|
+
- number_files
|
108
|
+
- path
|
114
109
|
- probe
|
115
|
-
- errf
|
116
110
|
- same_files
|
117
|
-
-
|
111
|
+
- search
|
112
|
+
- sedit
|
113
|
+
- sshscreen
|
114
|
+
- strip_spaces
|
118
115
|
- unquarantine_apps
|
116
|
+
- untest
|
117
|
+
- utils-install-config
|
118
|
+
- utils-utilsrc
|
119
119
|
- vacuum_firefox_sqlite
|
120
|
-
-
|
120
|
+
- xmp
|
121
121
|
extensions: []
|
122
122
|
extra_rdoc_files:
|
123
123
|
- README.rdoc
|
124
124
|
- lib/utils/config/config_file.rb
|
125
|
-
- lib/utils/finder.rb
|
126
|
-
- lib/utils/version.rb
|
127
|
-
- lib/utils/irb.rb
|
128
125
|
- lib/utils/config.rb
|
129
126
|
- lib/utils/editor.rb
|
130
|
-
- lib/utils/grepper.rb
|
131
127
|
- lib/utils/file_xt.rb
|
128
|
+
- lib/utils/finder.rb
|
129
|
+
- lib/utils/grepper.rb
|
130
|
+
- lib/utils/irb.rb
|
132
131
|
- lib/utils/md5.rb
|
133
132
|
- lib/utils/patterns.rb
|
133
|
+
- lib/utils/version.rb
|
134
134
|
- lib/utils.rb
|
135
135
|
files:
|
136
136
|
- .gitignore
|
@@ -187,6 +187,7 @@ files:
|
|
187
187
|
- lib/utils/config/vim/compiler/rubyunit.vim
|
188
188
|
- lib/utils/config/vim/ftdetect/ragel.vim
|
189
189
|
- lib/utils/config/vim/ftdetect/ruby.vim
|
190
|
+
- lib/utils/config/vim/ftdetect/slim.vim
|
190
191
|
- lib/utils/config/vim/ftplugin/eruby.vim
|
191
192
|
- lib/utils/config/vim/ftplugin/ruby.vim
|
192
193
|
- lib/utils/config/vim/ftplugin/xml.vim
|
@@ -194,6 +195,7 @@ files:
|
|
194
195
|
- lib/utils/config/vim/indent/eruby.vim
|
195
196
|
- lib/utils/config/vim/indent/javascript.vim
|
196
197
|
- lib/utils/config/vim/indent/ruby.vim
|
198
|
+
- lib/utils/config/vim/indent/slim.vim
|
197
199
|
- lib/utils/config/vim/plugin/AlignMapsPlugin.vim
|
198
200
|
- lib/utils/config/vim/plugin/AlignPlugin.vim
|
199
201
|
- lib/utils/config/vim/plugin/Decho.vim
|
@@ -213,6 +215,7 @@ files:
|
|
213
215
|
- lib/utils/config/vim/syntax/javascript.vim
|
214
216
|
- lib/utils/config/vim/syntax/ragel.vim
|
215
217
|
- lib/utils/config/vim/syntax/ruby.vim
|
218
|
+
- lib/utils/config/vim/syntax/slim.vim
|
216
219
|
- lib/utils/config/vimrc
|
217
220
|
- lib/utils/editor.rb
|
218
221
|
- lib/utils/file_xt.rb
|
@@ -241,7 +244,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
241
244
|
version: '0'
|
242
245
|
segments:
|
243
246
|
- 0
|
244
|
-
hash:
|
247
|
+
hash: 4460484270206752089
|
245
248
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
246
249
|
none: false
|
247
250
|
requirements:
|