Sha256: 6bb4a46a96378aff413d564cf1304002272573622861279fd6f8238f1fbb276c

Contents?: true

Size: 1.41 KB

Versions: 2

Compression:

Stored size: 1.41 KB

Contents

require 'rake/testtask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "vagrant"
    gemspec.summary = "Vagrant is a tool for building and distributing virtualized development environments."
    gemspec.description = "Vagrant is a tool for building and distributing virtualized development environments."
    gemspec.email = ["mitchell.hashimoto@gmail.com", "john.m.bender@gmail.com"]
    gemspec.homepage = "http://github.com/mitchellh/vagrant"
    gemspec.authors = ["Mitchell Hashimoto", "John Bender"]

    gemspec.add_dependency('virtualbox', '>= 0.5.3')
    gemspec.add_dependency('net-ssh', '>= 2.0.19')
    gemspec.add_dependency('net-scp', '>= 1.0.2')
    gemspec.add_dependency('json', '>= 1.2.0')
    gemspec.add_dependency('git-style-binaries', '>= 0.1.10')
    gemspec.add_dependency('archive-tar-minitar', '= 0.5.2')
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler not available. Install it with: gem install jeweler"
end

task :default => :test

Rake::TestTask.new do |t|
  t.libs << "test"
  t.pattern = 'test/**/*_test.rb'
end

begin
  require 'yard'
  YARD::Rake::YardocTask.new do |t|
    t.options = ['--main', 'README.md', '--markup', 'markdown']
    t.options += ['--title', 'Vagrant Developer Documentation']
  end
rescue LoadError
  puts "Yard not available. Install it with: gem install yard"
  puts "if you wish to be able to generate developer documentation."
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
vagrantup-0.2.0 Rakefile
vagrant-0.2.0 Rakefile