tomkersten-vixploder 0.1.3 → 0.1.4
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/History.txt +7 -0
- data/README.rdoc +5 -1
- data/Rakefile +1 -2
- data/lib/dotfiles/vimrc +4 -2
- data/lib/vixploder.rb +1 -1
- metadata +27 -4
data/History.txt
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
== 0.1.4 2009-01-13
|
2
|
+
|
3
|
+
* Removed auto-folding
|
4
|
+
* Updated README.txt (why was the description so long)
|
5
|
+
* Officially included a couple scripts for testing 256-color soupport in your terminal (256colors2.pl, colortest)
|
6
|
+
|
7
|
+
|
1
8
|
== 0.0.1 2008-11-26
|
2
9
|
|
3
10
|
* 1 major enhancement:
|
data/README.rdoc
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
= vixploder - "it may explode your vim"
|
2
2
|
|
3
3
|
== DESCRIPTION:
|
4
|
-
A simple 'dotfiles' management tool used to distribute common configuration files across multiple machines
|
4
|
+
A simple 'dotfiles' management tool used to distribute common configuration files across multiple machines.
|
5
|
+
|
6
|
+
|
7
|
+
== DETAILS
|
8
|
+
The idea is not incredibly novel, but after realizing how poor the default VIM configuration is (at least on OS X), I wanted to be able to share mine with a few friends. Standard configuration files for other tools can easily be added to the tool, such as a core +.profile+, +.screenrc+ file, or Emacs config files...VIM is just the "test-case" for the distribution method at this point.
|
5
9
|
|
6
10
|
Vixploder is designed to give room for machine-/user-specific overrides. For example, the +.vimrc+ file sources a <tt>~/.local_vimrc</tt> file. These 'local dotfiles' are intentionally left out of version control and intended for settings that are either machine-specific or something a user may not want to be in a publicly-available repository. A couple examples of such content would be aliases for SSH-ing into a server with a particular username (ie: +site+ aliased to <tt>ssh my_username@my_website.com</tt>), or aliases to machine-specific paths for a project directory (both of these examples would be for your shell setup files, not vimrc, but the logic is the same...maybe you want a different colorscheme on a particular server in VIM).
|
7
11
|
|
data/Rakefile
CHANGED
@@ -5,7 +5,7 @@ require 'hanna/rdoctask'
|
|
5
5
|
$hoe = Hoe.new('vixploder', Vixploder::VERSION) do |p|
|
6
6
|
p.developer('Tom Kersten', 'tom@whitespur.com')
|
7
7
|
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
|
8
|
-
p.post_install_message =
|
8
|
+
p.post_install_message = p.paragraphs_of('PostInstall.txt', 0..10).join("\n\n")
|
9
9
|
p.summary = %q{Tool for simplifying the distribution of environment configuration files ('dotfiles') across multiple *nix-based nodes.}
|
10
10
|
p.extra_dev_deps = [
|
11
11
|
['newgem', ">= #{::Newgem::VERSION}"]
|
@@ -13,7 +13,6 @@ $hoe = Hoe.new('vixploder', Vixploder::VERSION) do |p|
|
|
13
13
|
|
14
14
|
p.clean_globs |= %w[**/.DS_Store tmp *.log]
|
15
15
|
path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
|
16
|
-
p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
|
17
16
|
p.rsync_args = '-av --delete --ignore-errors'
|
18
17
|
end
|
19
18
|
|
data/lib/dotfiles/vimrc
CHANGED
@@ -86,8 +86,10 @@ endif
|
|
86
86
|
set foldmethod=syntax "Syntax highlighting items specify folds
|
87
87
|
|
88
88
|
"Not sure how I feel about these two yet
|
89
|
-
|
90
|
-
|
89
|
+
"Commenting out...probably not 'sane default' people would expect. Leaving
|
90
|
+
"for reference...
|
91
|
+
"set foldopen=all "Auto-opens folds on all possible 'autocmds'
|
92
|
+
"set foldclose=all "Auto-closes folds on all possible autocmds
|
91
93
|
|
92
94
|
set foldtext=getline(v:foldstart) "Set text displayed in "foldbar" when code is folded
|
93
95
|
set fillchars=fold:\ "Fill foldline "empty space" with...empty spaces (instead of default "-" character)
|
data/lib/vixploder.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tomkersten-vixploder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Kersten
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-01-
|
12
|
+
date: 2009-01-13 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -34,6 +34,8 @@ description: A simple 'dotfiles' management tool used to distribute common confi
|
|
34
34
|
email:
|
35
35
|
- tom@whitespur.com
|
36
36
|
executables:
|
37
|
+
- 256colors2.pl
|
38
|
+
- colortest
|
37
39
|
- vixplode
|
38
40
|
extensions: []
|
39
41
|
|
@@ -155,9 +157,30 @@ files:
|
|
155
157
|
- spec/vixplode_cli_spec.rb
|
156
158
|
- spec/vixploder_spec.rb
|
157
159
|
- tasks/rspec.rake
|
158
|
-
has_rdoc:
|
160
|
+
has_rdoc: true
|
159
161
|
homepage:
|
160
|
-
post_install_message:
|
162
|
+
post_install_message: |+
|
163
|
+
|
164
|
+
To use vixploder, execute:
|
165
|
+
|
166
|
+
vixplode
|
167
|
+
|
168
|
+
...and try out VI. If you have issues with a blinking background
|
169
|
+
or errors on startup, confirm your system meets all the
|
170
|
+
requirements outlined in the README (http://bit.ly/m9Wk).
|
171
|
+
|
172
|
+
If you want to "undo" the changes, you can unlink the newly created
|
173
|
+
files in your home directory and restore them from ~/vixploder_backups:
|
174
|
+
|
175
|
+
mv ~/vixploder_backups/.* ~/
|
176
|
+
|
177
|
+
For more information on vixploder, see https://github.com/tomkersten/vixploder
|
178
|
+
|
179
|
+
NOTE: To create private Gists on http://gist.github.com, make sure you have set up
|
180
|
+
your username/token entries in your ~/.gitconfig file (refer to: http://bit.ly/OCgg)
|
181
|
+
|
182
|
+
Enjoy!
|
183
|
+
|
161
184
|
rdoc_options:
|
162
185
|
- --main
|
163
186
|
- README.rdoc
|