utils 0.0.60 → 0.0.61

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 CHANGED
@@ -1 +1 @@
1
- 0.0.60
1
+ 0.0.61
data/bin/sshscreen CHANGED
@@ -19,11 +19,11 @@ def usage
19
19
  Usage: #{File.basename($0)} [OPTS] [user@]remote[:port]"
20
20
 
21
21
  OPTS is one of
22
- -N list all session names on the specified remote
23
- -n NAME name of the screen session to attach to (defaults to $USER)
24
- -t [HOST[:PORT]] host:port to tunnel if different from LOCALPORT
25
- -l LOCALPORT the localport to forward to
26
- -h to display this help
22
+ -N list all session names on the specified remote
23
+ -n NAME name of the screen session to attach to (defaults to $USER)
24
+ -t [TUNNEL_HOST[:TUNNEL_PORT]] host:port to tunnel if different from LOCALPORT
25
+ -l LOCALPORT the localport to forward to if different from TUNNEL_PORT
26
+ -h to display this help
27
27
 
28
28
  EOT
29
29
  exit 1
@@ -31,7 +31,7 @@ end
31
31
 
32
32
  arguments = ARGV.dup
33
33
  opts = go 'l:t:n:hN', arguments
34
- usage if opts['h'] or arguments.size != 1
34
+ usage if opts['h'] || arguments.size != 1
35
35
  user_remote = arguments.shift
36
36
  user, remote, rport =
37
37
  case user_remote
@@ -43,15 +43,17 @@ user, remote, rport =
43
43
  usage
44
44
  end
45
45
  lport = opts['l']
46
- tunnel, tport = if tunnel_port = opts['t']
46
+ tunnel, tport = nil, nil
47
+ if tunnel_port = opts['t']
47
48
  case tunnel_port
48
49
  when /\A([^:]+)(?::(\d+))?\Z/
49
- [ $1, $2 || '22' ]
50
+ tunnel, tport = $1, $2 || '22'
51
+ lport ||= tport
50
52
  else
51
53
  usage
52
54
  end
53
55
  else
54
- [ 'localhost', lport ]
56
+ tunnel, tport = 'localhost', lport
55
57
  end
56
58
  ssh_dir = File.expand_path('~/.ssh')
57
59
  mkdir_p ssh_dir
@@ -60,10 +62,10 @@ env_user = ENV['USER'] and opts['n'] ||= env_user
60
62
  if opts['N']
61
63
  exec "ssh -p #{rport} -S #{sock_file} #{user}@#{remote} screen -ls"
62
64
  elsif lport
63
- File.exist? sock_file and rm_f sock_file
65
+ rm_f sock_file
64
66
  exec "ssh -p #{rport} -Mt -L localhost:#{lport}:#{tunnel}:#{tport}"\
65
67
  " -S #{sock_file} #{user}@#{remote} screen -DUR #{opts['n']}"
66
68
  else
67
- File.exist? sock_file and rm_f sock_file
69
+ rm_f sock_file
68
70
  exec "ssh -p #{rport} -Mt -S #{sock_file} #{user}@#{remote} screen -DUR #{opts['n']}"
69
71
  end
@@ -942,12 +942,9 @@ function! s:BufCommands()
942
942
  command! -buffer -bar -nargs=? -complete=customlist,s:Complete_environments Rdbext :call s:BufDatabase(2,<q-args>)|let b:dbext_buffer_defaulted = 1
943
943
  endif
944
944
  let ext = expand("%:e")
945
- Decho ext
946
945
  if ext =~ s:viewspattern()
947
946
  " TODO: complete controller names with trailing slashes here
948
947
  command! -buffer -bar -bang -nargs=? -range -complete=customlist,s:controllerList Rextract :<line1>,<line2>call s:Extract(<bang>0,<f-args>)
949
- elseif ext == "rb"
950
- command! -buffer -bar -bang -nargs=? -range -complete=customlist,s:controllerList,s:modelList Rextract :<line1>,<line2>call s:ExtractConcern(<bang>0,<f-args>)
951
948
  endif
952
949
  if RailsFilePath() =~ '\<db/migrate/.*\.rb$'
953
950
  command! -buffer -bar Rinvert :call s:Invert(<bang>0)
@@ -3298,11 +3295,6 @@ function! s:Extract(bang,...) range abort
3298
3295
  silent! exe '%substitute?\%(\w\|[@:"'."'".'-]\)\@<!'.var.'\>?'.name.'?g'
3299
3296
  1
3300
3297
  endfunction
3301
- " }}}1
3302
-
3303
- " Extract into concern {{{1
3304
- function! s:ExtractConcern(bang,...) range abort
3305
- endfunction
3306
3298
 
3307
3299
  " }}}1
3308
3300
  " Migration Inversion {{{1
@@ -0,0 +1,226 @@
1
+ *xml-plugin.txt* Help edit XML and SGML documents. v78
2
+
3
+ XML Edit ~
4
+
5
+ A filetype plugin to help edit XML and SGML documents.
6
+
7
+ This script provides some convenience when editing XML (and some SGML
8
+ including HTML) formated documents. It allows you to jump to the beginning
9
+ or end of the tag block your cursor is in. '%' will jump between '<' and '>'
10
+ within the tag your cursor is in. When in insert mode and you finish a tag
11
+ (pressing '>') the tag will be completed. If you press '>' twice it will
12
+ complete the tag and place the cursor in the middle of the tags on it's own
13
+ line (helps with nested tags).
14
+
15
+ Usage: Place this file into your ftplugin directory. To add html support
16
+ Sym-link or copy this file to html.vim in your ftplugin directory. To activte
17
+ the script place 'filetype plugin on' in your |.vimrc| file. See |ftplugins|
18
+ for more information on this topic.
19
+
20
+ If the file edited is of type "html" and "xml_use_html" is defined then the
21
+ following tags will not auto complete:
22
+ <img>, <input>, <param>, <frame>, <br>, <hr>, <meta>, <link>, <base>, <area>
23
+
24
+ If the file edited is of type 'html' and 'xml_use_xhtml' is defined the above
25
+ tags will autocomplete the xml closing staying xhtml compatable.
26
+ ex. <hr> becomes <hr /> (see |xml-plugin-settings|)
27
+
28
+ NOTE: If you used the VIM 5.x version of this file (xmledit.vim) you'll need
29
+ to comment out the section where you called it. It is no longer used in the
30
+ VIM 6.x version.
31
+
32
+ Known Bugs ~
33
+
34
+ - This script will modify registers ". and "x; register "" will be restored.
35
+ - < & > marks inside of a CDATA section are interpreted as actual XML tags
36
+ even if unmatched.
37
+ - Although the script can handle leading spaces such as < tag></ tag> it is
38
+ illegal XML syntax and considered very bad form.
39
+ - Placing a literal `>' in an attribute value will auto complete dispite that
40
+ the start tag isn't finished. This is poor XML anyway you should use
41
+ &gt; instead.
42
+ - The matching algorithm can handle illegal tag characters where as the tag
43
+ completion algorithm can not.
44
+
45
+ ------------------------------------------------------------------------------
46
+ *xml-plugin-mappings*
47
+ Mappings ~
48
+
49
+ <LocalLeader> is a setting in VIM that depicts a prefix for scripts and
50
+ plugins to use. By default this is the backslash key `\'. See |mapleader|
51
+ for details.
52
+
53
+ <LocalLeader>Space
54
+ Normal or Insert - Continue editing after the ending tag. This
55
+ option requires xml_jump_string to be set to function. When a tag
56
+ is completed it will append the xml_jump_string. Once this mapping
57
+ is ran it will delete the next xml_jump_string pattern to the right
58
+ of the curser and delete it leaving you in insert mode to continue
59
+ editing.
60
+
61
+ <LocalLeader><LocalLeader>
62
+ Normal - Will clear the entire file of left over xml_jump_string garbage.
63
+ * This will also happen automatically when you save the file. *
64
+
65
+ <LocalLeader>x
66
+ Visual - Place a custom XML tag to suround the selected text. You
67
+ need to have selected text in visual mode before you can use this
68
+ mapping. See |visual-mode| for details.
69
+
70
+ <LocalLeader>. or <LocalLeader>>
71
+ Insert - Place a literal '>' without parsing tag.
72
+
73
+ <LocalLeader>5 or <LocalLeader>%
74
+ Normal or Visual - Jump to the begining or end tag.
75
+
76
+ <LocalLeader>d
77
+ Normal - Deletes the surrounding tags from the cursor. >
78
+ <tag1>outter <tag2>inner text</tag2> text</tag1>
79
+ ^
80
+ < Turns to: >
81
+ outter <tag2>inner text</tag2> text
82
+ ^
83
+ <
84
+
85
+ ------------------------------------------------------------------------------
86
+ *xml-plugin-settings*
87
+ Options ~
88
+
89
+ (All options must be placed in your |.vimrc| prior to the |ftplugin|
90
+ command.)
91
+
92
+ xml_tag_completion_map
93
+ Use this setting to change the default mapping to auto complete a
94
+ tag. By default typing a literal `>' will cause the tag your editing
95
+ to auto complete; pressing twice will auto nest the tag. By using
96
+ this setting the `>' will be a literal `>' and you must use the new
97
+ mapping to perform auto completion and auto nesting. For example if
98
+ you wanted Control-L to perform auto completion inmstead of typing a
99
+ `>' place the following into your .vimrc: >
100
+ let xml_tag_completion_map = "<C-l>"
101
+ <
102
+ xml_no_auto_nesting
103
+ This turns off the auto nesting feature. After a completion is made
104
+ and another `>' is typed xml-edit automatically will break the tag
105
+ accross multiple lines and indent the curser to make creating nested
106
+ tqags easier. This feature turns it off. Enter the following in your
107
+ .vimrc: >
108
+ let xml_no_auto_nesting = 1
109
+ <
110
+ xml_use_xhtml
111
+ When editing HTML this will auto close the short tags to make valid
112
+ XML like <hr /> and <br />. Enter the following in your vimrc to
113
+ turn this option on: >
114
+ let xml_use_xhtml = 1
115
+ <
116
+ xml_no_html
117
+ This turns of the support for HTML specific tags. Place this in your
118
+ .vimrc: >
119
+ let xml_no_html = 1
120
+ <
121
+ xml_jump_string
122
+ This turns of the support for continuing edits after an ending tag.
123
+ xml_jump_string can be any string how ever a simple character will
124
+ serfice. Pick a character or small string that is unique and will
125
+ not interfer with your normal editing. See the <LocalLeader>Space
126
+ mapping for more.
127
+ .vimrc: >
128
+ let xml_jump_string = "`"
129
+ <
130
+ ------------------------------------------------------------------------------
131
+ *xml-plugin-callbacks*
132
+ Callback Functions ~
133
+
134
+ A callback function is a function used to customize features on a per tag
135
+ basis. For example say you wish to have a default set of attributs when you
136
+ type an empty tag like this:
137
+ You type: <tag>
138
+ You get: <tag default="attributes"></tag>
139
+
140
+ This is for any script programmers who wish to add xml-plugin support to
141
+ there own filetype plugins.
142
+
143
+ Callback functions recive one attribute variable which is the tag name. The
144
+ all must return either a string or the number zero. If it returns a string
145
+ the plugin will place the string in the proper location. If it is a zero the
146
+ plugin will ignore and continue as if no callback existed.
147
+
148
+ The following are implemented callback functions:
149
+
150
+ HtmlAttribCallback
151
+ This is used to add default attributes to html tag. It is intended
152
+ for HTML files only.
153
+
154
+ XmlAttribCallback
155
+ This is a generic callback for xml tags intended to add attributes.
156
+
157
+ *xml-plugin-html*
158
+ Callback Example ~
159
+
160
+ The following is an example of using XmlAttribCallback in your .vimrc
161
+ >
162
+ function XmlAttribCallback (xml_tag)
163
+ if a:xml_tag ==? "my-xml-tag"
164
+ return "attributes=\"my xml attributes\""
165
+ else
166
+ return 0
167
+ endif
168
+ endfunction
169
+ <
170
+ The following is a sample html.vim file type plugin you could use:
171
+ >
172
+ " Vim script file vim600:fdm=marker:
173
+ " FileType: HTML
174
+ " Maintainer: Devin Weaver <vim (at) tritarget.com>
175
+ " Location: http://www.vim.org/scripts/script.php?script_id=301
176
+
177
+ " This is a wrapper script to add extra html support to xml documents.
178
+ " Original script can be seen in xml-plugin documentation.
179
+
180
+ " Only do this when not done yet for this buffer
181
+ if exists("b:did_ftplugin")
182
+ finish
183
+ endif
184
+ " Don't set 'b:did_ftplugin = 1' because that is xml.vim's responsability.
185
+
186
+ let b:html_mode = 1
187
+
188
+ if !exists("*HtmlAttribCallback")
189
+ function HtmlAttribCallback( xml_tag )
190
+ if a:xml_tag ==? "table"
191
+ return "cellpadding=\"0\" cellspacing=\"0\" border=\"0\""
192
+ elseif a:xml_tag ==? "link"
193
+ return "href=\"/site.css\" rel=\"StyleSheet\" type=\"text/css\""
194
+ elseif a:xml_tag ==? "body"
195
+ return "bgcolor=\"white\""
196
+ elseif a:xml_tag ==? "frame"
197
+ return "name=\"NAME\" src=\"/\" scrolling=\"auto\" noresize"
198
+ elseif a:xml_tag ==? "frameset"
199
+ return "rows=\"0,*\" cols=\"*,0\" border=\"0\""
200
+ elseif a:xml_tag ==? "img"
201
+ return "src=\"\" width=\"0\" height=\"0\" border=\"0\" alt=\"\""
202
+ elseif a:xml_tag ==? "a"
203
+ if has("browse")
204
+ " Look up a file to fill the href. Used in local relative file
205
+ " links. typeing your own href before closing the tag with `>'
206
+ " will override this.
207
+ let cwd = getcwd()
208
+ let cwd = substitute (cwd, "\\", "/", "g")
209
+ let href = browse (0, "Link to href...", getcwd(), "")
210
+ let href = substitute (href, cwd . "/", "", "")
211
+ let href = substitute (href, " ", "%20", "g")
212
+ else
213
+ let href = ""
214
+ endif
215
+ return "href=\"" . href . "\""
216
+ else
217
+ return 0
218
+ endif
219
+ endfunction
220
+ endif
221
+
222
+ " On to loading xml.vim
223
+ runtime ftplugin/xml.vim
224
+ <
225
+
226
+ vim:tw=78:ts=8:ft=help:norl:
data/lib/utils/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Utils
2
2
  # Utils version
3
- VERSION = '0.0.60'
3
+ VERSION = '0.0.61'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
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.60"
5
+ s.version = "0.0.61"
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-11-07"
9
+ s.date = "2012-11-22"
10
10
  s.description = "This ruby gem provides some useful command line utilities"
11
11
  s.email = "flori@ping.de"
12
12
  s.executables = ["chroot-exec", "chroot-libs", "classify", "create_tags", "discover", "edit", "edit_wait", "enum", "errf", "git-empty", "myex", "number_files", "on_change", "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/create_tags", "bin/discover", "bin/edit", "bin/edit_wait", "bin/enum", "bin/errf", "bin/git-empty", "bin/myex", "bin/number_files", "bin/on_change", "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/after/syntax/haml.vim", "lib/utils/config/vim/after/syntax/html.vim", "lib/utils/config/vim/autoload/Align.vim", "lib/utils/config/vim/autoload/AlignMaps.vim", "lib/utils/config/vim/autoload/ctrlp.vim", "lib/utils/config/vim/autoload/ctrlp/bookmarkdir.vim", "lib/utils/config/vim/autoload/ctrlp/buffertag.vim", "lib/utils/config/vim/autoload/ctrlp/changes.vim", "lib/utils/config/vim/autoload/ctrlp/dir.vim", "lib/utils/config/vim/autoload/ctrlp/line.vim", "lib/utils/config/vim/autoload/ctrlp/mixed.vim", "lib/utils/config/vim/autoload/ctrlp/mrufiles.vim", "lib/utils/config/vim/autoload/ctrlp/quickfix.vim", "lib/utils/config/vim/autoload/ctrlp/rtscript.vim", "lib/utils/config/vim/autoload/ctrlp/tag.vim", "lib/utils/config/vim/autoload/ctrlp/undo.vim", "lib/utils/config/vim/autoload/ctrlp/utils.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/coffee.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/doc/Decho.txt", "lib/utils/config/vim/doc/coffee-script.txt", "lib/utils/config/vim/doc/ctrlp.txt", "lib/utils/config/vim/doc/fugitive.txt", "lib/utils/config/vim/doc/rails.txt", "lib/utils/config/vim/ftdetect/coffee.vim", "lib/utils/config/vim/ftdetect/eco.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/coffee.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/coffee.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/ctrlp.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/coffee.vim", "lib/utils/config/vim/syntax/eco.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"]
13
+ s.extra_rdoc_files = ["README.rdoc", "lib/utils.rb", "lib/utils/config.rb", "lib/utils/config/config_file.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"]
14
+ s.files = [".gitignore", "COPYING", "Gemfile", "README.rdoc", "Rakefile", "TODO", "VERSION", "bin/chroot-exec", "bin/chroot-libs", "bin/classify", "bin/create_tags", "bin/discover", "bin/edit", "bin/edit_wait", "bin/enum", "bin/errf", "bin/git-empty", "bin/myex", "bin/number_files", "bin/on_change", "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/after/syntax/haml.vim", "lib/utils/config/vim/after/syntax/html.vim", "lib/utils/config/vim/autoload/Align.vim", "lib/utils/config/vim/autoload/AlignMaps.vim", "lib/utils/config/vim/autoload/ctrlp.vim", "lib/utils/config/vim/autoload/ctrlp/bookmarkdir.vim", "lib/utils/config/vim/autoload/ctrlp/buffertag.vim", "lib/utils/config/vim/autoload/ctrlp/changes.vim", "lib/utils/config/vim/autoload/ctrlp/dir.vim", "lib/utils/config/vim/autoload/ctrlp/line.vim", "lib/utils/config/vim/autoload/ctrlp/mixed.vim", "lib/utils/config/vim/autoload/ctrlp/mrufiles.vim", "lib/utils/config/vim/autoload/ctrlp/quickfix.vim", "lib/utils/config/vim/autoload/ctrlp/rtscript.vim", "lib/utils/config/vim/autoload/ctrlp/tag.vim", "lib/utils/config/vim/autoload/ctrlp/undo.vim", "lib/utils/config/vim/autoload/ctrlp/utils.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/coffee.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/doc/Decho.txt", "lib/utils/config/vim/doc/coffee-script.txt", "lib/utils/config/vim/doc/ctrlp.txt", "lib/utils/config/vim/doc/fugitive.txt", "lib/utils/config/vim/doc/rails.txt", "lib/utils/config/vim/doc/xml-plugin.txt", "lib/utils/config/vim/ftdetect/coffee.vim", "lib/utils/config/vim/ftdetect/eco.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/coffee.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/coffee.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/ctrlp.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/coffee.vim", "lib/utils/config/vim/syntax/eco.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.60
4
+ version: 0.0.61
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-11-07 00:00:00.000000000 Z
12
+ date: 2012-11-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: gem_hadar
@@ -123,8 +123,9 @@ executables:
123
123
  extensions: []
124
124
  extra_rdoc_files:
125
125
  - README.rdoc
126
- - lib/utils/config/config_file.rb
126
+ - lib/utils.rb
127
127
  - lib/utils/config.rb
128
+ - lib/utils/config/config_file.rb
128
129
  - lib/utils/editor.rb
129
130
  - lib/utils/file_xt.rb
130
131
  - lib/utils/finder.rb
@@ -133,7 +134,6 @@ extra_rdoc_files:
133
134
  - lib/utils/md5.rb
134
135
  - lib/utils/patterns.rb
135
136
  - lib/utils/version.rb
136
- - lib/utils.rb
137
137
  files:
138
138
  - .gitignore
139
139
  - COPYING
@@ -210,6 +210,7 @@ files:
210
210
  - lib/utils/config/vim/doc/ctrlp.txt
211
211
  - lib/utils/config/vim/doc/fugitive.txt
212
212
  - lib/utils/config/vim/doc/rails.txt
213
+ - lib/utils/config/vim/doc/xml-plugin.txt
213
214
  - lib/utils/config/vim/ftdetect/coffee.vim
214
215
  - lib/utils/config/vim/ftdetect/eco.vim
215
216
  - lib/utils/config/vim/ftdetect/ragel.vim
@@ -276,7 +277,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
276
277
  version: '0'
277
278
  segments:
278
279
  - 0
279
- hash: -504316675304331963
280
+ hash: -777458577067885259
280
281
  required_rubygems_version: !ruby/object:Gem::Requirement
281
282
  none: false
282
283
  requirements: