mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
This commit adds a Rakefile, Gemfile, and Travis CI config file. The Rakefile contains two tasks: test and junit. Both targets execute the spec tests, with the difference being how the results are presented. The Gemfile defines dependencies and a test group. To install just the gems needed for running the application, execute: * `bundle install --without test` The new .travis.yml file is for Travis CI and targets the major ruby versions.
15 lines
295 B
Ruby
15 lines
295 B
Ruby
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
|
|
|
gem 'json', '>= 1.8'
|
|
gem 'rack', '>= 1.6'
|
|
gem 'rake', '>= 10.4'
|
|
gem 'rbvmomi', '>= 1.8'
|
|
gem 'redis', '>= 3.2'
|
|
gem 'sinatra', '>= 1.4'
|
|
|
|
# Test deps
|
|
group :test do
|
|
gem 'rack-test', '>= 0.6'
|
|
gem 'rspec', '>= 3.2'
|
|
gem 'yarjuf', '>= 2.0'
|
|
end
|