forked from ppggff/vagrant-qemu
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Socket networking with MAC addresses (#1)
* Add support for socket networking with fd * Add MAC address option * Update gemspec for fork
- Loading branch information
Showing
7 changed files
with
29 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module VagrantPlugins | ||
module QEMU | ||
VERSION = '0.3.6' | ||
VERSION = '24.06.00' | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,12 @@ Gem::Specification.new do |s| | |
s.version = VagrantPlugins::QEMU::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.license = "MIT" | ||
s.authors = "ppggff" | ||
s.email = "[email protected]" | ||
s.homepage = "https://github.com/ppggff/vagrant-qemu" | ||
s.authors = "Submitty" | ||
s.homepage = "https://github.com/Submitty/vagrant-qemu" | ||
s.summary = "Enables Vagrant to manage machines with QEMU." | ||
s.description = "Enables Vagrant to manage machines with QEMU." | ||
|
||
s.required_rubygems_version = ">= 1.3.6" | ||
s.rubyforge_project = "vagrant-qemu" | ||
|
||
# The following block of code determines the files that should be included | ||
# in the gem. It does this by reading all the files in the directory where | ||
|