vim-update-bundles 0.6
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/CHANGES +48 -0
- data/README.md +147 -0
- data/Rakefile +5 -0
- data/test.rb +660 -0
- data/vim-update-bundles +471 -0
- metadata +74 -0
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vim-update-bundles
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 7
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 6
|
9
|
+
version: "0.6"
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Scott Bronson
|
13
|
+
- Sorin Ionescu
|
14
|
+
- Steeef
|
15
|
+
autorequire:
|
16
|
+
bindir: .
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2011-06-29 00:00:00 -07:00
|
20
|
+
default_executable:
|
21
|
+
dependencies: []
|
22
|
+
|
23
|
+
description: A utility that uses Git to install and remove your Vim plugins.
|
24
|
+
email:
|
25
|
+
- brons_vim-update-bundles@rinspin.com
|
26
|
+
executables:
|
27
|
+
- vim-update-bundles
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files: []
|
31
|
+
|
32
|
+
files:
|
33
|
+
- vim-update-bundles
|
34
|
+
- CHANGES
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- test.rb
|
38
|
+
- ./vim-update-bundles
|
39
|
+
has_rdoc: true
|
40
|
+
homepage: https://github.com/bronson/vim-update-bundles/
|
41
|
+
licenses: []
|
42
|
+
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options: []
|
45
|
+
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
hash: 3
|
54
|
+
segments:
|
55
|
+
- 0
|
56
|
+
version: "0"
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 3
|
63
|
+
segments:
|
64
|
+
- 0
|
65
|
+
version: "0"
|
66
|
+
requirements: []
|
67
|
+
|
68
|
+
rubyforge_project:
|
69
|
+
rubygems_version: 1.3.7
|
70
|
+
signing_key:
|
71
|
+
specification_version: 3
|
72
|
+
summary: Manages your Vim plugins
|
73
|
+
test_files:
|
74
|
+
- test.rb
|