bindler 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/bindler.gemspec +2 -2
- data/lib/bindler.rb +6 -6
- data/lib/{vundler → bindler}/bend_vagrant.rb +0 -0
- data/lib/{vundler/vundler_command → bindler/bindler_command}/root.rb +0 -0
- data/lib/{vundler/vundler_command → bindler/bindler_command}/setup.rb +0 -0
- data/lib/{vundler → bindler}/local_plugins_manifest_ext.rb +0 -0
- data/lib/{vundler → bindler}/logging.rb +0 -0
- data/lib/{vundler → bindler}/plugin.rb +0 -0
- data/lib/{vundler → bindler}/plugin_command/bundle.rb +0 -0
- data/lib/{vundler → bindler}/plugin_command/list.rb +0 -0
- data/lib/{vundler → bindler}/plugin_command/root.rb +0 -0
- data/lib/{vundler → bindler}/plugin_not_found_error.rb +0 -0
- data/lib/bindler/version.rb +3 -0
- metadata +13 -13
- data/lib/vundler/version.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6a291cb58e6e6d67bf0aa4d7c345d9cf72626b9
|
4
|
+
data.tar.gz: 2ba6ce7286e22d3326284b08b19a5955034b82c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 372cc9e65e30c4a8c456177511f6a322d288d64a303f831d29210b9a9ee02ae2ed839c727e1d4b004cb3401caaac6822c92838aa6849b23b8561e66821d7a9c2
|
7
|
+
data.tar.gz: 0c241d86675d3dacd9975408c6cea10ad73916ea34d96bec97f194b9bc7d4afd1abbdc810bff8c3018bc2d1959bc482348abbb0b55609c85155a8d3b2ebf3ac1
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -10,7 +10,7 @@ for Vagrant".
|
|
10
10
|
|
11
11
|
## WARNING
|
12
12
|
This is highly experimental and things might go wrong. It basically does some
|
13
|
-
[heavy monkey patching](lib/
|
13
|
+
[heavy monkey patching](lib/bindler/bend_vagrant.rb) on Vagrant's core and should
|
14
14
|
not be considered "production-ready". Please keep that in mind and be ready to
|
15
15
|
[revert Bindler's installation](#help-things-are-falling-apart) in case things
|
16
16
|
go crazy.
|
@@ -52,7 +52,7 @@ List installed plugins with `vagrant plugin list`:
|
|
52
52
|
$ vagrant plugin list
|
53
53
|
|
54
54
|
vagrant-lxc (0.4.0)
|
55
|
-
bindler (0.1.
|
55
|
+
bindler (0.1.1)
|
56
56
|
|
57
57
|
Project dependencies:
|
58
58
|
-> vagrant-lxc
|
data/bindler.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require '
|
4
|
+
require 'bindler/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "bindler"
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["fgrehm@gmail.com"]
|
11
11
|
spec.description = %q{Dead easy Vagrant plugins management}
|
12
12
|
spec.summary = spec.description
|
13
|
-
spec.homepage = "https://github.com/fgrehm/
|
13
|
+
spec.homepage = "https://github.com/fgrehm/bindler"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/bindler.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
require_relative "
|
2
|
-
require_relative "
|
3
|
-
require_relative "
|
4
|
-
require_relative '
|
5
|
-
require_relative "
|
6
|
-
require_relative "
|
1
|
+
require_relative "bindler/version"
|
2
|
+
require_relative "bindler/plugin"
|
3
|
+
require_relative "bindler/logging"
|
4
|
+
require_relative 'bindler/plugin_not_found_error'
|
5
|
+
require_relative "bindler/local_plugins_manifest_ext"
|
6
|
+
require_relative "bindler/bend_vagrant"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bindler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fabio Rehm
|
@@ -54,20 +54,20 @@ files:
|
|
54
54
|
- bindler.gemspec
|
55
55
|
- development/Vagrantfile
|
56
56
|
- lib/bindler.rb
|
57
|
-
- lib/
|
58
|
-
- lib/
|
59
|
-
- lib/
|
60
|
-
- lib/
|
61
|
-
- lib/
|
62
|
-
- lib/
|
63
|
-
- lib/
|
64
|
-
- lib/
|
65
|
-
- lib/
|
66
|
-
- lib/
|
67
|
-
- lib/
|
57
|
+
- lib/bindler/bend_vagrant.rb
|
58
|
+
- lib/bindler/bindler_command/root.rb
|
59
|
+
- lib/bindler/bindler_command/setup.rb
|
60
|
+
- lib/bindler/local_plugins_manifest_ext.rb
|
61
|
+
- lib/bindler/logging.rb
|
62
|
+
- lib/bindler/plugin.rb
|
63
|
+
- lib/bindler/plugin_command/bundle.rb
|
64
|
+
- lib/bindler/plugin_command/list.rb
|
65
|
+
- lib/bindler/plugin_command/root.rb
|
66
|
+
- lib/bindler/plugin_not_found_error.rb
|
67
|
+
- lib/bindler/version.rb
|
68
68
|
- locales/en.yml
|
69
69
|
- tasks/deploy.rake
|
70
|
-
homepage: https://github.com/fgrehm/
|
70
|
+
homepage: https://github.com/fgrehm/bindler
|
71
71
|
licenses:
|
72
72
|
- MIT
|
73
73
|
metadata: {}
|
data/lib/vundler/version.rb
DELETED