Skip to content

Commit

Permalink
Release 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksieger committed Aug 16, 2012
1 parent 3962e08 commit e59f269
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 21 deletions.
8 changes: 8 additions & 0 deletions History.txt
@@ -1,3 +1,11 @@
== 1.7.1 (08/16/12)

- #58: Use const_defined? for checking a constant is defined (Kouhei Sutou)
- #70: Initialize delegate IO for non-tee methods
- #55: Accommodate 1.8.7 which requires std streams to be subclasses of IO
- #52: Mark skipped tests as skipped instead of failure
- #51: Allow for constants to include "Omission" or :Omission (1.8 vs. 1.9).

== 1.7.0 (01/28/11)

- #39, #49: Minitest support (thanks Alexander Shcherbinin)!
Expand Down
10 changes: 10 additions & 0 deletions Manifest.txt
@@ -1,8 +1,18 @@
.travis.yml
Gemfile
Gemfile.lock
History.txt
LICENSE.txt
Manifest.txt
README.rdoc
Rakefile
acceptance/cucumber/cucumber_example.feature
acceptance/cucumber/step_definitions/development_steps.rb
acceptance/minitest_example_test.rb
acceptance/rspec_example_spec.rb
acceptance/test_unit_example_test.rb
acceptance/verification_spec.rb
ci_reporter.gemspec
lib/ci/reporter/core.rb
lib/ci/reporter/cucumber.rb
lib/ci/reporter/minitest.rb
Expand Down
6 changes: 1 addition & 5 deletions Rakefile
Expand Up @@ -6,11 +6,7 @@

require 'bundler/setup'

MANIFEST = FileList["History.txt", "Manifest.txt", "README.rdoc", "LICENSE.txt", "Rakefile",
"*.rake", "lib/**/*.rb", "spec/**/*.rb", "tasks/**/*.rake"]

begin
File.open("Manifest.txt", "w") {|f| MANIFEST.sort.each {|n| f << "#{n}\n"} }
require 'hoe'
Hoe.plugin :rubyforge
require File.dirname(__FILE__) + '/lib/ci/reporter/version'
Expand All @@ -28,8 +24,8 @@ begin
p.extra_rdoc_files += ["README.rdoc"]
p.test_globs = ["spec/**/*_spec.rb"]
p.extra_deps << ['builder', ">= 2.1.2"]
p.clean_globs += ["spec/reports", "acceptance/reports"]
end
hoe.spec.files = MANIFEST
hoe.spec.rdoc_options += ["-SHN", "-f", "darkfish"]

task :gemspec do
Expand Down
30 changes: 15 additions & 15 deletions ci_reporter.gemspec
@@ -1,23 +1,23 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{ci_reporter}
s.version = "1.7.0"
s.name = "ci_reporter"
s.version = "1.7.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Nick Sieger}]
s.date = %q{2012-01-29}
s.description = %q{CI::Reporter is an add-on to Test::Unit, RSpec and Cucumber that allows you to generate XML reports of your test, spec and/or feature runs. The resulting files can be read by a continuous integration system that understands Ant's JUnit report XML format, thus allowing your CI system to track test/spec successes and failures.}
s.email = %q{nick@nicksieger.com}
s.extra_rdoc_files = [%q{History.txt}, %q{LICENSE.txt}, %q{Manifest.txt}, %q{README.rdoc}]
s.files = [%q{History.txt}, %q{Manifest.txt}, %q{README.rdoc}, %q{LICENSE.txt}, %q{Rakefile}, %q{stub.rake}, %q{lib/ci/reporter/core.rb}, %q{lib/ci/reporter/cucumber.rb}, %q{lib/ci/reporter/minitest.rb}, %q{lib/ci/reporter/rake/cucumber.rb}, %q{lib/ci/reporter/rake/cucumber_loader.rb}, %q{lib/ci/reporter/rake/minitest.rb}, %q{lib/ci/reporter/rake/minitest_loader.rb}, %q{lib/ci/reporter/rake/rspec.rb}, %q{lib/ci/reporter/rake/rspec_loader.rb}, %q{lib/ci/reporter/rake/test_unit.rb}, %q{lib/ci/reporter/rake/test_unit_loader.rb}, %q{lib/ci/reporter/rake/utils.rb}, %q{lib/ci/reporter/report_manager.rb}, %q{lib/ci/reporter/rspec.rb}, %q{lib/ci/reporter/test_suite.rb}, %q{lib/ci/reporter/test_unit.rb}, %q{lib/ci/reporter/version.rb}, %q{spec/ci/reporter/cucumber_spec.rb}, %q{spec/ci/reporter/output_capture_spec.rb}, %q{spec/ci/reporter/rake/rake_tasks_spec.rb}, %q{spec/ci/reporter/report_manager_spec.rb}, %q{spec/ci/reporter/rspec_spec.rb}, %q{spec/ci/reporter/test_suite_spec.rb}, %q{spec/ci/reporter/test_unit_spec.rb}, %q{spec/spec_helper.rb}, %q{tasks/ci_reporter.rake}]
s.homepage = %q{http://caldersphere.rubyforge.org/ci_reporter}
s.rdoc_options = [%q{--main}, %q{README.rdoc}, %q{-SHN}, %q{-f}, %q{darkfish}]
s.require_paths = [%q{lib}]
s.rubyforge_project = %q{caldersphere}
s.rubygems_version = %q{1.8.6}
s.summary = %q{CI::Reporter allows you to generate reams of XML for use with continuous integration systems.}
s.test_files = [%q{spec/ci/reporter/cucumber_spec.rb}, %q{spec/ci/reporter/output_capture_spec.rb}, %q{spec/ci/reporter/rake/rake_tasks_spec.rb}, %q{spec/ci/reporter/report_manager_spec.rb}, %q{spec/ci/reporter/rspec_spec.rb}, %q{spec/ci/reporter/test_suite_spec.rb}, %q{spec/ci/reporter/test_unit_spec.rb}]
s.authors = ["Nick Sieger"]
s.date = "2012-08-16"
s.description = "CI::Reporter is an add-on to Test::Unit, RSpec and Cucumber that allows you to generate XML reports of your test, spec and/or feature runs. The resulting files can be read by a continuous integration system that understands Ant's JUnit report XML format, thus allowing your CI system to track test/spec successes and failures."
s.email = "nick@nicksieger.com"
s.extra_rdoc_files = ["History.txt", "LICENSE.txt", "Manifest.txt", "README.rdoc"]
s.files = [".travis.yml", "Gemfile", "Gemfile.lock", "History.txt", "LICENSE.txt", "Manifest.txt", "README.rdoc", "Rakefile", "acceptance/cucumber/cucumber_example.feature", "acceptance/cucumber/step_definitions/development_steps.rb", "acceptance/minitest_example_test.rb", "acceptance/rspec_example_spec.rb", "acceptance/test_unit_example_test.rb", "acceptance/verification_spec.rb", "ci_reporter.gemspec", "lib/ci/reporter/core.rb", "lib/ci/reporter/cucumber.rb", "lib/ci/reporter/minitest.rb", "lib/ci/reporter/rake/cucumber.rb", "lib/ci/reporter/rake/cucumber_loader.rb", "lib/ci/reporter/rake/minitest.rb", "lib/ci/reporter/rake/minitest_loader.rb", "lib/ci/reporter/rake/rspec.rb", "lib/ci/reporter/rake/rspec_loader.rb", "lib/ci/reporter/rake/test_unit.rb", "lib/ci/reporter/rake/test_unit_loader.rb", "lib/ci/reporter/rake/utils.rb", "lib/ci/reporter/report_manager.rb", "lib/ci/reporter/rspec.rb", "lib/ci/reporter/test_suite.rb", "lib/ci/reporter/test_unit.rb", "lib/ci/reporter/version.rb", "spec/ci/reporter/cucumber_spec.rb", "spec/ci/reporter/output_capture_spec.rb", "spec/ci/reporter/rake/rake_tasks_spec.rb", "spec/ci/reporter/report_manager_spec.rb", "spec/ci/reporter/rspec_spec.rb", "spec/ci/reporter/test_suite_spec.rb", "spec/ci/reporter/test_unit_spec.rb", "spec/spec_helper.rb", "stub.rake", "tasks/ci_reporter.rake", ".gemtest"]
s.homepage = "http://caldersphere.rubyforge.org/ci_reporter"
s.rdoc_options = ["--main", "README.rdoc", "-SHN", "-f", "darkfish"]
s.require_paths = ["lib"]
s.rubyforge_project = "caldersphere"
s.rubygems_version = "1.8.15"
s.summary = "CI::Reporter allows you to generate reams of XML for use with continuous integration systems."
s.test_files = ["spec/ci/reporter/cucumber_spec.rb", "spec/ci/reporter/output_capture_spec.rb", "spec/ci/reporter/report_manager_spec.rb", "spec/ci/reporter/rspec_spec.rb", "spec/ci/reporter/test_suite_spec.rb", "spec/ci/reporter/test_unit_spec.rb", "spec/ci/reporter/rake/rake_tasks_spec.rb"]

if s.respond_to? :specification_version then
s.specification_version = 3
Expand Down
2 changes: 1 addition & 1 deletion lib/ci/reporter/version.rb
Expand Up @@ -6,6 +6,6 @@

module CI
module Reporter
VERSION = "1.7.0"
VERSION = "1.7.1"
end
end

0 comments on commit e59f269

Please sign in to comment.