vagrant-hmurca 0.1.4 → 0.1.5

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: 417a3006249379f1a83fb9054ae141b090e947ac
4
- data.tar.gz: 3c0b154f4233e1ebf75f8a15cc46782a58059f93
3
+ metadata.gz: aa0ba965a1791773bcb20b2cc1e46088e0e3f899
4
+ data.tar.gz: 2d763464ce386b77b92bb20d9c5df77755f6568e
5
5
  SHA512:
6
- metadata.gz: e5b4095bbd80dc16c288f9fb1f0087c94a13beb58e25f016f52147dfb71f486bd03556af2642879839671d26bc3d31018d0bae6031f49d1cfd7412589291c2bb
7
- data.tar.gz: a984cf30ae300cf189d7869c271de5e66f746e751015e8d2220566b56be775bff53f1a66049703bb542cb747bb524191d01d655553b7d3d8c25a168bdcd376c9
6
+ metadata.gz: 7256f255ddfdd26e9b5ac8b41dc04ecd3743f53f891985f6574c3dd0b53c6b2091c8970ec4b989a3902839ba87c582f71e8aba53d4b9fd973e0e214c57d09f88
7
+ data.tar.gz: 5a7d9956ce5e8d47df995f7045ab1a63da50ad12a5d07f547d118fefb8f623568e5466ddd9cf692117f9b55eee3ab440f3053a92e8d35d9631ab587710f489d2
@@ -9,7 +9,7 @@ begin
9
9
  require 'vagrant-hmurca'
10
10
  Vagrant::Hmurca.configure!
11
11
  rescue LoadError => err
12
- ui.error("Oops! Looks like `vagrant-hmurca' plugin is not installed!")
12
+ ui.error("Oops! Looks like Hmurka's Vagrant Kit is not installed!")
13
13
  ui.error("Execute `vagrant plugin install vagrant-hmurca` to fix this error...")
14
14
  exit(1)
15
15
  end
@@ -9,7 +9,7 @@ begin
9
9
  require 'vagrant-hmurca'
10
10
  Vagrant::Hmurca.configure!
11
11
  rescue LoadError => err
12
- ui.error("Oops! Looks like `vagrant-hmurca' plugin is not installed!")
12
+ ui.error("Oops! Looks like Hmurka's Vagrant Kit is not installed!")
13
13
  ui.error("Execute `vagrant plugin install vagrant-hmurca` to fix this error...")
14
14
  exit(1)
15
15
  end
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module Hmurca
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
5
5
  end
@@ -2,6 +2,6 @@ require File.expand_path("../helper.rb", __FILE__)
2
2
 
3
3
  class TestVersion < Minitest::Test
4
4
  def test_version_number
5
- assert_equal Vagrant::Hmurca::VERSION, "0.1.4"
5
+ assert_equal Vagrant::Hmurca::VERSION, "0.1.5"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-hmurca
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hmurca Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-19 00:00:00.000000000 Z
11
+ date: 2014-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: booby
@@ -93,9 +93,7 @@ files:
93
93
  - README.md
94
94
  - Rakefile
95
95
  - Vagrantfile
96
- - dot_gitignore
97
96
  - hmurca.conf
98
- - hmurca.conf.sample
99
97
  - lib/vagrant-hmurca.rb
100
98
  - lib/vagrant/hmurca.rb
101
99
  - lib/vagrant/hmurca/command.rb
@@ -1,2 +0,0 @@
1
- .vagrant
2
- *.conf.sample
@@ -1,32 +0,0 @@
1
- # hmurca.conf - The Hmurca Vagrant Kit configuration file.
2
- #
3
- # If this file is named `hmurca.conf.sample`, copy it to `hmurca.conf`
4
- # and adjust settings specific for your host machine or your own preferences.
5
-
6
- # General setup
7
- #-------------------------------------------------------------------------------
8
-
9
- # Domain name used by this formation.
10
- domain example
11
-
12
- # Name of the base box from Vagrant Cloud.
13
- base-box hmurca/debian75-x64
14
-
15
- # Configure synchronized folders from host to guests...
16
- sync-folder . /vagrant
17
-
18
- # Use Network File System to share folders?
19
- use-nfs yes
20
-
21
- # Nodes configuration...
22
- #-------------------------------------------------------------------------------
23
-
24
- node
25
- # Short host name of the node.
26
- name all-in-one
27
- # The number of virtual processors.
28
- cpus 2
29
- # The number of virtual memory limit.
30
- memory 1024
31
- # Configure which ports to forward from guest to host...
32
- forward-port 80 8080