deps, license, lib.

master
Denis Knauf 2013-03-16 16:02:15 +01:00
parent 5e04b9b756
commit 8dc7aa65e7
4 changed files with 71 additions and 16 deletions

15
Gemfile
View File

@ -1,12 +1,15 @@
source "http://rubygems.org" source "http://rubygems.org"
gem "ruby-libvirt" gem "ruby-libvirt"
gem 'enum'
gem 'uuidtools'
group :development do group :development do
gem "shoulda", ">= 0" gem "shoulda"
gem "yard", "~> 0.7" gem "yard"
gem "rdoc", "~> 3.12" gem "simplecov"
gem "bundler", "~> 1.0.0" gem "rdoc"
gem "jeweler", "~> 1.8.4" gem "bundler"
gem "simpleconv", ">= 0" gem "jeweler"
gem "simplecov"
end end

52
Gemfile.lock Normal file
View File

@ -0,0 +1,52 @@
GEM
remote: http://rubygems.org/
specs:
activesupport (3.2.12)
i18n (~> 0.6)
multi_json (~> 1.0)
bourne (1.1.2)
mocha (= 0.10.5)
enum (1.0.0)
git (1.2.5)
i18n (0.6.4)
jeweler (1.8.4)
bundler (~> 1.0)
git (>= 1.2.5)
rake
rdoc
json (1.7.7)
metaclass (0.0.1)
mocha (0.10.5)
metaclass (~> 0.0.1)
multi_json (1.6.1)
rake (10.0.3)
rdoc (4.0.0)
json (~> 1.4)
ruby-libvirt (0.4.0)
shoulda (3.3.2)
shoulda-context (~> 1.0.1)
shoulda-matchers (~> 1.4.1)
shoulda-context (1.0.2)
shoulda-matchers (1.4.2)
activesupport (>= 3.0.0)
bourne (~> 1.1.2)
simplecov (0.7.1)
multi_json (~> 1.0)
simplecov-html (~> 0.7.1)
simplecov-html (0.7.1)
uuidtools (2.1.3)
yard (0.8.5.2)
PLATFORMS
ruby
DEPENDENCIES
bundler
enum
jeweler
rdoc
ruby-libvirt
shoulda
simplecov
uuidtools
yard

View File

@ -32,13 +32,13 @@ Rake::TestTask.new(:test) do |test|
test.verbose = true test.verbose = true
end end
require 'rcov/rcovtask' #require 'rcov/rcovtask'
Rcov::RcovTask.new do |test| #Rcov::RcovTask.new do |test|
test.libs << 'test' #test.libs << 'test'
test.pattern = 'test/**/test_*.rb' #test.pattern = 'test/**/test_*.rb'
test.verbose = true #test.verbose = true
test.rcov_opts << '--exclude "gems/*"' #test.rcov_opts << '--exclude "gems/*"'
end #end
task :default => :test task :default => :test

View File

@ -1,7 +1,7 @@
require 'helper' require 'helper'
class TestLibvirtExt < Test::Unit::TestCase class TestLibvirtExt < Test::Unit::TestCase
should "probably rename this file and start testing for real" do should 'exist' do
flunk "hey buddy, you should probably rename this file and start testing for real" assert TestLibvirtExt, "No, lib does not exist."
end end
end end