vrundler 0.0.4 → 0.0.5

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: bc16e0478c13b0f4ca818a2583069d0dc96ffcad
4
- data.tar.gz: 2539adf0f7d0e9c56e417fc261a1a9e44186f090
3
+ metadata.gz: d7e9f60c96ecc0845af01d751fa881441d7bb9a2
4
+ data.tar.gz: b18a01e88f583128715648b47c8f3b8ea49f5b21
5
5
  SHA512:
6
- metadata.gz: 8f81220e382d572975bb81c788035a0020829049a29f46de9cfda2a36cd0964bcfc9778ca35676c1267de815c7706c3680a3c24aad491ca481bca248dce8be04
7
- data.tar.gz: a59da74923ede561571435ae4965ff778bb658e3afbbbd762f353c33b6c9ef836773cb0a1e6e1edd449476d6e1f50a3059c9331a9cb416d1b70c44bd186fabcb
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.
@@ -10,10 +10,9 @@ module VRundler
10
10
  @owner = owner
11
11
  end
12
12
 
13
- def unpack
13
+ def bundle_specific_unpack
14
14
  log "Unpacking #{url} into #{name}"
15
15
  `git clone #{url} #{name}`
16
- run_extra
17
16
  end
18
17
 
19
18
  def url
@@ -1,3 +1,3 @@
1
1
  module VRundler
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vrundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Develop With Passion®