puppet-qatools 0.2.2 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -30,30 +30,3 @@ Jeweler::Tasks.new do |gem|
30
30
  gem.add_dependency 'rspec-puppet'
31
31
  end
32
32
  Jeweler::RubygemsDotOrgTasks.new
33
-
34
- require 'rake/testtask'
35
- Rake::TestTask.new(:test) do |test|
36
- test.libs << 'lib' << 'test'
37
- test.pattern = 'test/**/test_*.rb'
38
- test.verbose = true
39
- end
40
-
41
- require 'rcov/rcovtask'
42
- Rcov::RcovTask.new do |test|
43
- test.libs << 'test'
44
- test.pattern = 'test/**/test_*.rb'
45
- test.verbose = true
46
- test.rcov_opts << '--exclude "gems/*"'
47
- end
48
-
49
- task :default => :test
50
-
51
- require 'rdoc/task'
52
- Rake::RDocTask.new do |rdoc|
53
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
54
-
55
- rdoc.rdoc_dir = 'rdoc'
56
- rdoc.title = "puppet-qatools #{version}"
57
- rdoc.rdoc_files.include('README*')
58
- rdoc.rdoc_files.include('lib/**/*.rb')
59
- end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.2
1
+ 0.3.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "puppet-qatools"
8
- s.version = "0.2.2"
8
+ s.version = "0.3.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["attachmentgenie"]
12
- s.date = "2012-01-23"
12
+ s.date = "2012-01-24"
13
13
  s.description = "Meta Package for the Puppet Quality Assurance Toolchain"
14
14
  s.email = "bram@attachmentgenie.com"
15
15
  s.extra_rdoc_files = [
@@ -24,10 +24,7 @@ Gem::Specification.new do |s|
24
24
  "README.rdoc",
25
25
  "Rakefile",
26
26
  "VERSION",
27
- "lib/puppet-qatools.rb",
28
- "puppet-qatools.gemspec",
29
- "test/helper.rb",
30
- "test/test_puppet-qatools.rb"
27
+ "puppet-qatools.gemspec"
31
28
  ]
32
29
  s.homepage = "http://github.com/attachmentgenie/puppet-qatools"
33
30
  s.licenses = ["MIT"]
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 2
9
- - 2
10
- version: 0.2.2
8
+ - 3
9
+ - 0
10
+ version: 0.3.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - attachmentgenie
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-01-23 00:00:00 Z
18
+ date: 2012-01-24 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  requirement: &id001 !ruby/object:Gem::Requirement
@@ -178,10 +178,7 @@ files:
178
178
  - README.rdoc
179
179
  - Rakefile
180
180
  - VERSION
181
- - lib/puppet-qatools.rb
182
181
  - puppet-qatools.gemspec
183
- - test/helper.rb
184
- - test/test_puppet-qatools.rb
185
182
  homepage: http://github.com/attachmentgenie/puppet-qatools
186
183
  licenses:
187
184
  - MIT
File without changes
data/test/helper.rb DELETED
@@ -1,18 +0,0 @@
1
- require 'rubygems'
2
- require 'bundler'
3
- begin
4
- Bundler.setup(:default, :development)
5
- rescue Bundler::BundlerError => e
6
- $stderr.puts e.message
7
- $stderr.puts "Run `bundle install` to install missing gems"
8
- exit e.status_code
9
- end
10
- require 'test/unit'
11
- require 'shoulda'
12
-
13
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
- $LOAD_PATH.unshift(File.dirname(__FILE__))
15
- require 'puppet-qatools'
16
-
17
- class Test::Unit::TestCase
18
- end
@@ -1,7 +0,0 @@
1
- require 'helper'
2
-
3
- class TestPuppetQatools < Test::Unit::TestCase
4
- should "probably rename this file and start testing for real" do
5
- flunk "hey buddy, you should probably rename this file and start testing for real"
6
- end
7
- end