vundle-cli 0.0.7.1 → 0.0.7.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c1da6a2d4b8bba91de6d6e04ff69f43871c8c8d0
4
- data.tar.gz: f3365cbef0211b7a066ac193972610f3b042a7fd
3
+ metadata.gz: 01025e0b26d62bd9cbf7bab134cba6210a984277
4
+ data.tar.gz: 79d2c429f903dc6892e7f81e2cca3d1b7da4ac17
5
5
  SHA512:
6
- metadata.gz: a2eef73a0c08858783fc1eb6d50a8af7f9532eeebe54e91c430f98fa6d7b5c4cbceaa293a3fdfea5eaa94f6bf92b83939d50f58d55c26eabcd6a06780c8cf47b
7
- data.tar.gz: 3a64a0c7f55ddf107360633de23084b5cfd8b220ce55752febddd8cdf69558011d4a366e609bd783353f83501abda876e15ca8d99e5483c5651a79a46e93a8f1
6
+ metadata.gz: d28cd35eb912a20ff7a7a02d7750ea63c06865960f68e6a086049cc2faf94d3f2ab2f8866a594520e874ba0101994f9863e86402574ae4da356f38065c885560
7
+ data.tar.gz: 394dc475956981bb30c361b4a5cad9720863ec84293e943c91bad85d951c7e2fbd508ef253727f01fbd22364a2d6cbeebf09e50f5c8aa0f64c1d8e25730d755b
data/README.md CHANGED
@@ -59,6 +59,146 @@ Or install it yourself as:
59
59
 
60
60
  -t, --trace
61
61
  Display backtrace when an error occurs
62
+
63
+ ### Commands
64
+
65
+ **NAME**:
66
+
67
+ rm
68
+
69
+ **SYNOPSIS**:
70
+
71
+ vundle rm <plugin> [options]
72
+
73
+ **DESCRIPTION**:
74
+
75
+ Uninstall a plugin.
76
+ The command will remove the line ``Bundle plugin_name'' or ``Plugin plugin_name'' in your ``.vimrc'',
77
+ delete the configuration file for this plugin in the specified settings directory, and the plugin folder.
78
+ Before anything is deleted, the command will prompt you for confirmation unless the ``--force'' switch is on.
79
+
80
+ **EXAMPLES**:
81
+
82
+ # Remove plugin kien/ctrlp.vim
83
+ vundle rm kien/ctrlp.vim
84
+
85
+ # Or, remove any plugin that has ``ctrlp'' in its name (not recommended, it can be too ambiguous)
86
+ vundle rm ctrlp
87
+
88
+ **OPTIONS**:
89
+
90
+ --vimdir vimdir
91
+ Vim directory. Default to ~/.vim.
92
+
93
+ --settings settings_dir
94
+ Vim settings directory (where you configure your plugins). Default to ~/.vim/settings.
95
+
96
+ --vimrc vimrc
97
+ .vimrc path. Default to ~/.vimrc.
98
+
99
+ -f, --force
100
+ Force delete without confirmation. Disabled by default.
101
+
102
+
103
+
104
+
105
+ - - -
106
+
107
+ **NAME**:
108
+
109
+ list
110
+
111
+ **SYNOPSIS**:
112
+
113
+ vundle list [options]
114
+
115
+ **DESCRIPTION**:
116
+
117
+ List all installed plugins
118
+
119
+ **EXAMPLES**:
120
+
121
+ # List all installed plugins
122
+ vundle list --vimrc ~/.vimrc
123
+
124
+ **OPTIONS**:
125
+
126
+ --vimrc vimrc
127
+ .vimrc path. Default to ~/.vimrc.
128
+
129
+
130
+ - - -
131
+
132
+ **NAME**:
133
+
134
+ find
135
+
136
+ **SYNOPSIS**:
137
+
138
+ vundle find <plugin> [options]
139
+
140
+ **DESCRIPTION**:
141
+
142
+ Search for an installed plugin
143
+
144
+ **EXAMPLES**:
145
+
146
+ # Find a plugin that has substring ``gist''
147
+ vundle find gist
148
+
149
+ **OPTIONS**:
150
+
151
+ --vimrc vimrc
152
+ .vimrc path. Default to ~/.vimrc.
153
+
154
+
155
+ - - -
156
+
157
+ **NAME**:
158
+
159
+ clean
160
+
161
+ **SYNOPSIS**:
162
+
163
+ vundle clean [plugin] [options]
164
+
165
+ **DESCRIPTION**:
166
+
167
+ Clean up unused plugin related files (such as plugin folder and config file).
168
+ It will prompt you for confirmation before deleting anything (unless force switch is on).
169
+ For option ``--all'', the command gets a list of the plugins in your bundle folder (e.g: ~/.vim/bundle)
170
+ and compare them with the plugins in your vimrc in order to determine which plugins need to be cleaned up.
171
+
172
+ **EXAMPLES**:
173
+
174
+ # Clean all unused plugins
175
+ vundle clean --all
176
+
177
+ # Clean plugin vim-signify
178
+ vundle clean vim-signify
179
+
180
+ # Clean any plugins with names that have substring ``dirty''
181
+ vundle clean dirty
182
+
183
+ **OPTIONS**:
184
+
185
+ --vimdir vimdir
186
+ Vim directory. Default to ~/.vim.
187
+
188
+ --settings settings_dir
189
+ Vim settings directory (where you configure your plugins). Default to ~/.vim/settings.
190
+
191
+ --vimrc vimrc
192
+ .vimrc path. Default to ~/.vimrc.
193
+
194
+ -a, --all
195
+ Delete everything that is not installed in your vimrc. Disabled by default.
196
+
197
+ -l, --list
198
+ List all unused plugins.
199
+
200
+ -f, --force
201
+ Force delete files without prompt. Disabled by default.
62
202
 
63
203
 
64
204
  ## Contributing
@@ -1,3 +1,3 @@
1
1
  module VundleCli
2
- VERSION = "0.0.7.1"
2
+ VERSION = "0.0.7.2"
3
3
  end
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vundle-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7.1
4
+ version: 0.0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bao Pham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-19 00:00:00.000000000 Z
11
+ date: 2014-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -74,6 +74,7 @@ files:
74
74
  - lib/vundle_cli/import.rb
75
75
  - lib/vundle_cli/uninstaller.rb
76
76
  - lib/vundle_cli/version.rb
77
+ - test/TODO
77
78
  - vundle-cli.gemspec
78
79
  homepage: https://github.com/baopham/vundle-cli
79
80
  licenses:
@@ -99,4 +100,5 @@ rubygems_version: 2.2.2
99
100
  signing_key:
100
101
  specification_version: 4
101
102
  summary: A tiny CLI for Vim plugin manager Vundle
102
- test_files: []
103
+ test_files:
104
+ - test/TODO