vrundler 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/lib/vrundler/bundle.rb +1 -2
- data/lib/vrundler/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7e9f60c96ecc0845af01d751fa881441d7bb9a2
|
4
|
+
data.tar.gz: b18a01e88f583128715648b47c8f3b8ea49f5b21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fbabf8372c9aa6ffb7c1272ba9ff2573dd89be244717e394fe0d8df47e5fc2347767c4311ae44efd03d41757ee42eed123de52e5300d4be817d060aa4f49b04
|
7
|
+
data.tar.gz: d7ea5d8487213cfaecf2d5b469215be5f156f90de62e07f2774a6af3e6fb1de2029e85a0c858f27eeeae3f691cfbda6316d2c2597ceb3a162e19a2598508a684
|
data/README.md
CHANGED
@@ -126,6 +126,11 @@ github :Lokaltog do
|
|
126
126
|
end
|
127
127
|
|
128
128
|
github :Valloric do
|
129
|
+
# This demonstrates configuring the bundle using a block, in this
|
130
|
+
# example I am chdir'ing into the bundle folder after it has downloaded
|
131
|
+
# and running a system command to configure the plugin, in this case for
|
132
|
+
# YouCompleteMe it initializes its submodules and then installs
|
133
|
+
# the native extensions
|
129
134
|
bundle 'YouCompleteMe' do |b, context|
|
130
135
|
b.after_download do
|
131
136
|
Dir.chdir(context.output_folder(b)) do
|
@@ -177,6 +182,9 @@ If not, you will need to provide a path to the configuration file as an argument
|
|
177
182
|
vrundler install --config_file=PATH_TO_YOUR_CONFIG_FILE
|
178
183
|
```
|
179
184
|
|
185
|
+
##Caveats
|
186
|
+
Minimalist type functionality, refactored from a script I wrote years ago. I've used it successfully for a long time. It's optimized for my workflow. No tests, though the code is simple. YMMV.
|
187
|
+
|
180
188
|
##License
|
181
189
|
|
182
190
|
Released under the MIT License. See the [LICENSE][] file for further details.
|
data/lib/vrundler/bundle.rb
CHANGED
data/lib/vrundler/version.rb
CHANGED