Skip to content

Commit

Permalink
change gem-project to reflect bundler's recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
fnordfish committed Mar 24, 2013
1 parent 60c9bff commit cd4c6da
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
15 changes: 14 additions & 1 deletion .gitignore
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
12 changes: 10 additions & 2 deletions Gemfile
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
12 changes: 11 additions & 1 deletion Rakefile
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

0 comments on commit cd4c6da

Please sign in to comment.