forked from dotless-de/vagrant-vbguest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change gem-project to reflect bundler's recommendations
- Loading branch information
Showing
3 changed files
with
35 additions
and
4 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,4 +1,17 @@ | ||
*.gem | ||
*.rbc | ||
.bundle | ||
.config | ||
.yardoc | ||
Gemfile.lock | ||
pkg/* | ||
InstalledFiles | ||
_yardoc | ||
coverage | ||
doc/ | ||
lib/bundler/man | ||
pkg | ||
rdoc | ||
spec/reports | ||
test/tmp | ||
test/version_tmp | ||
tmp |
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,3 +1,11 @@ | ||
source "http://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
# Specify your gem's dependencies in vagrant-vbguest.gemspec | ||
gemspec | ||
|
||
group :development do | ||
# We depend on Vagrant for development, but we don't add it as a | ||
# gem dependency because we expect to be installed within the | ||
# Vagrant environment itself using `vagrant plugin`. | ||
gem "vagrant", :git => "git://github.com/mitchellh/vagrant.git", :tag => 'v1.1.2' | ||
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 |
---|---|---|
@@ -1 +1,11 @@ | ||
require "bundler/gem_tasks" | ||
require 'rubygems' | ||
require 'bundler/setup' | ||
|
||
# Immediately sync all stdout so that tools like buildbot can | ||
# immediately load in the output. | ||
$stdout.sync = true | ||
$stderr.sync = true | ||
|
||
# This installs the tasks that help with gem creation and | ||
# publishing. | ||
Bundler::GemHelper.install_tasks |