vagrant-hostel 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ module VagrantHostel
2
+ VERSION = "0.0.2"
3
+ end
data/lib/hostel.rb ADDED
@@ -0,0 +1 @@
1
+ require "hostel/version"
@@ -1,11 +1,11 @@
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 'vagrant/hostel/version'
4
+ require 'hostel/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "vagrant-hostel"
8
- spec.version = Vagrant::Hostel::VERSION
8
+ spec.version = VagrantHostel::VERSION
9
9
  spec.authors = ["Anentropic"]
10
10
  spec.email = ["ego@anentropic.com"]
11
11
  spec.description = %q{Vagrant plugin to allow you to manage multiple instances of chosen vms from your Vagrantfile}
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.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -56,10 +56,10 @@ files:
56
56
  - LICENSE.txt
57
57
  - README.md
58
58
  - Rakefile
59
- - hostel/command.rb
60
- - hostel/plugin.rb
61
- - lib/vagrant/hostel.rb
62
- - lib/vagrant/hostel/version.rb
59
+ - lib/hostel.rb
60
+ - lib/hostel/command.rb
61
+ - lib/hostel/plugin.rb
62
+ - lib/hostel/version.rb
63
63
  - vagrant-hostel.gemspec
64
64
  - vagrant_init.rb
65
65
  homepage: ''
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
77
  version: '0'
78
78
  segments:
79
79
  - 0
80
- hash: 713659931442877872
80
+ hash: 1017890577119711061
81
81
  required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  none: false
83
83
  requirements:
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
86
  version: '0'
87
87
  segments:
88
88
  - 0
89
- hash: 713659931442877872
89
+ hash: 1017890577119711061
90
90
  requirements: []
91
91
  rubyforge_project:
92
92
  rubygems_version: 1.8.25
@@ -1,5 +0,0 @@
1
- module Vagrant
2
- module Hostel
3
- VERSION = "0.0.1"
4
- end
5
- end
@@ -1,7 +0,0 @@
1
- require "vagrant/hostel/version"
2
-
3
- module Vagrant
4
- module Hostel
5
- # Your code goes here...
6
- end
7
- end