Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

Commit

Permalink
gem cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mkuzmin committed Jan 5, 2015
1 parent e45a3b8 commit 4321d71
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 47 deletions.
26 changes: 3 additions & 23 deletions README.md
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
2 changes: 1 addition & 1 deletion lib/vagrant/guestip.rb → lib/vagrant-guestip.rb
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
5 changes: 0 additions & 5 deletions lib/vagrant/guestip/version.rb

This file was deleted.

28 changes: 10 additions & 18 deletions vagrant-guestip.gemspec
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

0 comments on commit 4321d71

Please sign in to comment.