Skip to content

Commit

Permalink
Issue vagrant-landrush#171 Adding support for automatic configuration…
Browse files Browse the repository at this point in the history
… of host visibility on Windows

- Making use of netsh and Windows registry to modify network configuration
- Adding test harness
- Removing Gemfile.lock since depdenencies differ between OS X, Linux and Windows
- Cleaning up Gemfile and moving runtime dependencies into the gemspec file
- Updating Travis config to install latest Bundler version
  • Loading branch information
hferentschik committed Jun 30, 2016
1 parent bc3e195 commit f329eef
Show file tree
Hide file tree
Showing 18 changed files with 408 additions and 237 deletions.
16 changes: 8 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# Bundler
Gemfile.lock
.bundle

# Ruby / RVM
.ruby-gemset
.ruby-version
*.rbc
.bundle

# Rake / Build
.yardoc
InstalledFiles
_yardoc
coverage
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
build
tmp
tags

.vagrant

# IDE
*.iml
.idea
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
language: ruby

before_install:
- gem install bundler -v 1.12.5

cache: bundler

rvm:
Expand Down
9 changes: 2 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,21 @@ source 'https://rubygems.org'
# Can't use `gemspec` to pull in dependencies, because the landrush gem needs
# to be in the :plugins group for Vagrant to detect and load it in development

gem 'rubydns', '0.8.5'
gem 'win32-process'
gem 'json'
gemspec

# Vagrant's special group
group :plugins do
gem 'landrush', path: '.'
gem 'landrush-ip', '~> 0.2.3'
end

group :test do
gem 'rubocop', '~> 0.38.0'
end

group :development do
gem 'vagrant',
:git => 'git://github.com/mitchellh/vagrant.git',
:ref => 'v1.8.4'

gem 'rake', '~> 10'
gem 'rubocop', '~> 0.38.0'
gem 'byebug'
gem 'mocha'
gem 'minitest'
Expand Down
175 changes: 0 additions & 175 deletions Gemfile.lock

This file was deleted.

Loading

0 comments on commit f329eef

Please sign in to comment.