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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f92540bd8759863dabbcf7d51983981fc7dd7cc
4
- data.tar.gz: ceaa5ec8e18626c1dd746f5124419aa0d0232144
3
+ metadata.gz: d6a291cb58e6e6d67bf0aa4d7c345d9cf72626b9
4
+ data.tar.gz: 2ba6ce7286e22d3326284b08b19a5955034b82c5
5
5
  SHA512:
6
- metadata.gz: 2a775e0d0a5b2bd3b9af01c8b763a0fac0fffe2292b6987f6ee66a7485c064617f9009a20ebe72c6b7e68427d812078c79b2fe6f8be0e062433cb11da790abae
7
- data.tar.gz: 974660a1913c32b5c1c851d101063f71f589db78162d38e4ac9746678642cfdd4559c405b28ec2be6acac317080fb33f65a495cb2ff48dafa6386b98a99f422f
6
+ metadata.gz: 372cc9e65e30c4a8c456177511f6a322d288d64a303f831d29210b9a9ee02ae2ed839c727e1d4b004cb3401caaac6822c92838aa6849b23b8561e66821d7a9c2
7
+ data.tar.gz: 0c241d86675d3dacd9975408c6cea10ad73916ea34d96bec97f194b9bc7d4afd1abbdc810bff8c3018bc2d1959bc482348abbb0b55609c85155a8d3b2ebf3ac1
@@ -31,7 +31,7 @@ GIT
31
31
  PATH
32
32
  remote: .
33
33
  specs:
34
- bindler (0.1.0)
34
+ bindler (0.1.1)
35
35
 
36
36
  GEM
37
37
  remote: https://rubygems.org/
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/vundler/bend_vagrant.rb) on Vagrant's core and should
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.0)
55
+ bindler (0.1.1)
56
56
 
57
57
  Project dependencies:
58
58
  -> vagrant-lxc
@@ -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 'vundler/version'
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/vundler"
13
+ spec.homepage = "https://github.com/fgrehm/bindler"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
@@ -1,6 +1,6 @@
1
- require_relative "vundler/version"
2
- require_relative "vundler/plugin"
3
- require_relative "vundler/logging"
4
- require_relative 'vundler/plugin_not_found_error'
5
- require_relative "vundler/local_plugins_manifest_ext"
6
- require_relative "vundler/bend_vagrant"
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
@@ -0,0 +1,3 @@
1
+ module Bindler
2
+ VERSION = "0.1.1"
3
+ end
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.0
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/vundler/bend_vagrant.rb
58
- - lib/vundler/local_plugins_manifest_ext.rb
59
- - lib/vundler/logging.rb
60
- - lib/vundler/plugin.rb
61
- - lib/vundler/plugin_command/bundle.rb
62
- - lib/vundler/plugin_command/list.rb
63
- - lib/vundler/plugin_command/root.rb
64
- - lib/vundler/plugin_not_found_error.rb
65
- - lib/vundler/version.rb
66
- - lib/vundler/vundler_command/root.rb
67
- - lib/vundler/vundler_command/setup.rb
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/vundler
70
+ homepage: https://github.com/fgrehm/bindler
71
71
  licenses:
72
72
  - MIT
73
73
  metadata: {}
@@ -1,3 +0,0 @@
1
- module Bindler
2
- VERSION = "0.1.0"
3
- end