Skip to content

Commit b8efc89

Browse files
committed
more renames not to forget something
1 parent c244f9b commit b8efc89

15 files changed

+198
-198
lines changed

CHANGELOG.md

Lines changed: 175 additions & 175 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Reporting Issues
22

3-
You can report issues at https://github.com/colszowka/simplecov/issues
3+
You can report issues at https://github.com/simplecov-ruby/simplecov/issues
44

55
Before you go ahead please search existing issues for your problem, chances are someone else already reported it.
66

@@ -10,7 +10,7 @@ To make sure that we can help you quickly please include and check the following
1010
- please ensure you are requiring and starting SimpleCov before requiring any application code.
1111
- If running via rake, please ensure you are requiring SimpleCov at the top of your Rakefile
1212
For example, if running via RSpec, this would be at the top of your spec_helper.
13-
- Have you tried using a [`.simplecov` file](https://github.com/colszowka/simplecov#using-simplecov-for-centralized-config)?
13+
- Have you tried using a [`.simplecov` file](https://github.com/simplecov-ruby/simplecov#using-simplecov-for-centralized-config)?
1414
* Include the SimpleCov version you are running in your report.
1515
* If you are not running the latest version (please check), and you cannot update it,
1616
please specify in your report why you can't update to the latest version.
@@ -28,7 +28,7 @@ Thanks!
2828

2929
To fetch & test the library for development, do:
3030

31-
$ git clone https://github.com/colszowka/simplecov.git
31+
$ git clone https://github.com/simplecov-ruby/simplecov.git
3232
$ cd simplecov
3333
$ bundle
3434
$ bundle exec rake

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source "https://rubygems.org"
66
# gem "simplecov-html", path: File.dirname(__FILE__) + "/../simplecov-html"
77

88
# Uncomment this to use development version of html formatter from github
9-
# gem "simplecov-html", github: "colszowka/simplecov-html"
9+
# gem "simplecov-html", github: "simplecov-ruby/simplecov-html"
1010

1111
group :development do
1212
gem "apparition", "~> 0.6.0"

ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To make sure that we can help you quickly please include and check the following
88
- please ensure you are requiring and starting SimpleCov before requiring any application code.
99
- If running via rake, please ensure you are requiring SimpleCov at the top of your Rakefile
1010
For example, if running via RSpec, this would be at the top of your spec_helper.
11-
- Have you tried using a [`.simplecov` file](https://github.com/colszowka/simplecov#using-simplecov-for-centralized-config)?
11+
- Have you tried using a [`.simplecov` file](https://github.com/simplecov-ruby/simplecov#using-simplecov-for-centralized-config)?
1212
* Include the SimpleCov version you are running in your report.
1313
* If you are not running the latest version (please check), and you cannot update it,
1414
please specify in your report why you can't update to the latest version.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ SimpleCov [![Gem Version](https://badge.fury.io/rb/simplecov.svg)](https://badge
1010
* [Continuous Integration]
1111

1212
[Coverage]: https://ruby-doc.org/stdlib/libdoc/coverage/rdoc/Coverage.html "API doc for Ruby's Coverage library"
13-
[Source Code]: https://github.com/colszowka/simplecov "Source Code @ GitHub"
13+
[Source Code]: https://github.com/simplecov-ruby/simplecov "Source Code @ GitHub"
1414
[API documentation]: http://rubydoc.info/gems/simplecov/frames "RDoc API Documentation at Rubydoc.info"
1515
[Configuration]: http://rubydoc.info/gems/simplecov/SimpleCov/Configuration "Configuration options API documentation"
1616
[Changelog]: https://github.com/simplecov-ruby/simplecov/blob/main/CHANGELOG.md "Project Changelog"
1717
[Rubygem]: http://rubygems.org/gems/simplecov "SimpleCov @ rubygems.org"
1818
[Continuous Integration]: https://github.com/simplecov-ruby/simplecov/actions?query=workflow%3Astable "SimpleCov is built around the clock by github.com"
19-
[Dependencies]: https://gemnasium.com/colszowka/simplecov "SimpleCov dependencies on Gemnasium"
20-
[simplecov-html]: https://github.com/colszowka/simplecov-html "SimpleCov HTML Formatter Source Code @ GitHub"
19+
[Dependencies]: https://gemnasium.com/simplecov-ruby/simplecov "SimpleCov dependencies on Gemnasium"
20+
[simplecov-html]: https://github.com/simplecov-ruby/simplecov-html "SimpleCov HTML Formatter Source Code @ GitHub"
2121

2222
SimpleCov is a code coverage analysis tool for Ruby. It uses [Ruby's built-in Coverage][Coverage] library to gather code
2323
coverage data, but makes processing its results much easier by providing a clean API to filter, group, merge, format,

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require "rubygems"
44
require "bundler/setup"
55
Bundler::GemHelper.install_tasks
66

7-
# See https://github.com/colszowka/simplecov/issues/171
7+
# See https://github.com/simplecov-ruby/simplecov/issues/171
88
desc "Set permissions on all files so they are compatible with both user-local and system-wide installs"
99
task :fix_permissions do
1010
system 'bash -c "find . -type f -exec chmod 644 {} \; && find . -type d -exec chmod 755 {} \;"'

doc/alternate-formatters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Alternate coverage report formatters
22

33
The community around simplecov provides a whole bunch of alternate formatters beyond the official
4-
[simplecov-html](https://github.com/colszowka/simplecov-html) gem.
4+
[simplecov-html](https://github.com/simplecov-ruby/simplecov-html) gem.
55

66
If you have built or found one that is missing here, please send a Pull Request for this document!
77

lib/minitest/simplecov_plugin.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
# How minitest plugins. See https://github.com/colszowka/simplecov/pull/756 for why we need this.
3+
# How minitest plugins. See https://github.com/simplecov-ruby/simplecov/pull/756 for why we need this.
44
# https://github.com/seattlerb/minitest#writing-extensions
55
module Minitest
66
def self.plugin_simplecov_init(_options)

lib/simplecov.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
# @see https://github.com/jruby/jruby/issues/1196
99
# @see https://github.com/metricfu/metric_fu/pull/226
10-
# @see https://github.com/colszowka/simplecov/issues/420
11-
# @see https://github.com/colszowka/simplecov/issues/86
10+
# @see https://github.com/simplecov-ruby/simplecov/issues/420
11+
# @see https://github.com/simplecov-ruby/simplecov/issues/86
1212
# @see https://jira.codehaus.org/browse/JRUBY-6106
1313

1414
unless org.jruby.RubyInstanceConfig.FULL_TRACE_ENABLED
@@ -314,7 +314,7 @@ def start_coverage_measurement
314314
# This blog post gives a good run down of the coverage criterias introduced
315315
# in Ruby 2.5: https://blog.bigbinary.com/2018/04/11/ruby-2-5-supports-measuring-branch-and-method-coverages.html
316316
# There is also a nice writeup of the different coverage criteria made in this
317-
# comment https://github.com/colszowka/simplecov/pull/692#discussion_r281836176 :
317+
# comment https://github.com/simplecov-ruby/simplecov/pull/692#discussion_r281836176 :
318318
# Ruby < 2.5:
319319
# https://github.com/ruby/ruby/blob/v1_9_3_374/ext/coverage/coverage.c
320320
# traditional mode (Array)

lib/simplecov/result.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def self.from_hash(hash)
8686
# We changed the format of the raw result data in simplecov, as people are likely
8787
# to have "old" resultsets lying around (but not too old so that they're still
8888
# considered we can adapt them).
89-
# See https://github.com/colszowka/simplecov/pull/824#issuecomment-576049747
89+
# See https://github.com/simplecov-ruby/simplecov/pull/824#issuecomment-576049747
9090
def adapt_result(result)
9191
if pre_simplecov_0_18_result?(result)
9292
adapt_pre_simplecov_0_18_result(result)

simplecov.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ Gem::Specification.new do |gem|
2121
gem.platform = Gem::Platform::RUBY
2222
gem.authors = ["Christoph Olszowka"]
2323
gem.email = ["christoph at olszowka de"]
24-
gem.homepage = "https://github.com/colszowka/simplecov"
24+
gem.homepage = "https://github.com/simplecov-ruby/simplecov"
2525
gem.summary = "Code coverage for Ruby"
2626
gem.description = %(Code coverage for Ruby with a powerful configuration library and automatic merging of coverage across test suites)
2727
gem.license = "MIT"
2828
gem.metadata = {
29-
"bug_tracker_uri" => "https://github.com/colszowka/simplecov/issues",
30-
"changelog_uri" => "https://github.com/colszowka/simplecov/blob/master/CHANGELOG.md",
29+
"bug_tracker_uri" => "https://github.com/simplecov-ruby/simplecov/issues",
30+
"changelog_uri" => "https://github.com/simplecov-ruby/simplecov/blob/master/CHANGELOG.md",
3131
"documentation_uri" => "https://www.rubydoc.info/gems/simplecov/#{gem.version}",
3232
"mailing_list_uri" => "https://groups.google.com/forum/#!forum/simplecov",
33-
"source_code_uri" => "https://github.com/colszowka/simplecov/tree/v#{gem.version}"
33+
"source_code_uri" => "https://github.com/simplecov-ruby/simplecov/tree/v#{gem.version}"
3434
}
3535

3636
gem.required_ruby_version = ">= 2.5.0"

spec/deleted_source_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require "helper"
44

55
# Test to verify correct handling of deleted files
6-
# See https://github.com/colszowka/simplecov/issues/9
6+
# See https://github.com/simplecov-ruby/simplecov/issues/9
77
describe "A source file which is subsequently deleted" do
88
it "does not cause an error" do
99
Dir.chdir(File.join(File.dirname(__FILE__), "fixtures")) do

spec/fixtures/branch_tester_script.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Adapted from https://github.com/colszowka/simplecov/pull/694#issuecomment-562097006
1+
# Adapted from https://github.com/simplecov-ruby/simplecov/pull/694#issuecomment-562097006
22
# rubocop:disable all
33
x = 1
44
x.eql?(4) ? "4" : x

spec/multi_formatter_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
describe SimpleCov::Formatter::MultiFormatter do
88
describe ".[]" do
9-
# Regression test for https://github.com/colszowka/simplecov/issues/428
9+
# Regression test for https://github.com/simplecov-ruby/simplecov/issues/428
1010
it "constructs a formatter with multiple children" do
1111
# Silence deprecation warnings.
1212
allow(described_class).to receive(:warn)

spec/return_codes_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require "helper"
44

55
# Make sure that exit codes of tests are propagated properly
6-
# See https://github.com/colszowka/simplecov/issues/5
6+
# See https://github.com/simplecov-ruby/simplecov/issues/5
77
describe "return codes" do
88
context "inside fixtures/frameworks" do
99
around do |test|

0 commit comments

Comments
 (0)