This repository has been archived by the owner on Sep 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
14 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,9 @@ | ||
# Vagrant::Guestip | ||
|
||
TODO: Write a gem description | ||
# vagrant-guestip plugin | ||
|
||
## Installation | ||
|
||
Add this line to your application's Gemfile: | ||
|
||
gem 'vagrant-guestip' | ||
|
||
And then execute: | ||
|
||
$ bundle | ||
|
||
Or install it yourself as: | ||
|
||
$ gem install vagrant-guestip | ||
$ vagrant plugin install vagrant-guestip | ||
|
||
## Usage | ||
|
||
TODO: Write usage instructions here | ||
|
||
## Contributing | ||
|
||
1. Fork it ( https://github.com/[my-github-username]/vagrant-guestip/fork ) | ||
2. Create your feature branch (`git checkout -b my-new-feature`) | ||
3. Commit your changes (`git commit -am 'Add some feature'`) | ||
4. Push to the branch (`git push origin my-new-feature`) | ||
5. Create a new Pull Request | ||
$ vagrant ip |
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,7 +1,7 @@ | ||
require "vagrant/guestip/version" | ||
|
||
module Vagrant | ||
module Guestip | ||
module GuestIP | ||
# Your code goes here... | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.
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,23 +1,15 @@ | ||
# coding: utf-8 | ||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'vagrant/guestip/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "vagrant-guestip" | ||
spec.version = Vagrant::Guestip::VERSION | ||
spec.authors = ["Michael Kuzmin"] | ||
spec.email = ["[email protected]"] | ||
spec.summary = %q{TODO: Write a short summary. Required.} | ||
spec.description = %q{TODO: Write a longer description. Optional.} | ||
spec.homepage = "" | ||
spec.license = "MIT" | ||
spec.name = 'vagrant-guestip' | ||
spec.version = '0.0.1' | ||
spec.authors = ['Michael Kuzmin'] | ||
spec.email = ['[email protected]'] | ||
spec.summary = 'Vagrant plugin for obtaining IP address of guest machine' | ||
spec.homepage = 'https://github.com/mkuzmin/vagrant-gusetip' | ||
spec.license = 'MIT' | ||
|
||
spec.files = `git ls-files -z`.split("\x0") | ||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ["lib"] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.add_development_dependency "bundler", "~> 1.6" | ||
spec.add_development_dependency "rake" | ||
spec.add_development_dependency 'bundler', '~> 1.6' | ||
spec.add_development_dependency 'rake' | ||
end |