vagrant-hostel 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
1
  module VagrantHostel
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
data/lib/vagrant_init.rb CHANGED
@@ -7,4 +7,6 @@ rescue LoadError
7
7
  raise "The Vagrant Hostel plugin must be run within Vagrant."
8
8
  end
9
9
 
10
- require 'vagrant-hostel'
10
+ require 'vagrant-hostel/command'
11
+
12
+ Vagrant.commands.register(:hostel) { VagrantHostel::Command }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-hostel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -56,7 +56,6 @@ files:
56
56
  - LICENSE.txt
57
57
  - README.md
58
58
  - Rakefile
59
- - lib/vagrant-hostel.rb
60
59
  - lib/vagrant-hostel/command.rb
61
60
  - lib/vagrant-hostel/version.rb
62
61
  - lib/vagrant_init.rb
@@ -76,7 +75,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
75
  version: '0'
77
76
  segments:
78
77
  - 0
79
- hash: -911483689488742943
78
+ hash: -1799536586443242165
80
79
  required_rubygems_version: !ruby/object:Gem::Requirement
81
80
  none: false
82
81
  requirements:
@@ -85,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
84
  version: '0'
86
85
  segments:
87
86
  - 0
88
- hash: -911483689488742943
87
+ hash: -1799536586443242165
89
88
  requirements: []
90
89
  rubyforge_project:
91
90
  rubygems_version: 1.8.25
@@ -1,10 +0,0 @@
1
- module VagrantHostel
2
- class Hostel < Vagrant::Plugin::Base
3
- name "Hostel"
4
-
5
- command "hostel" do
6
- require_relative "command"
7
- Command
8
- end
9
- end
10
- end