Skip to content

Commit c32c38d

Browse files
committed
Update references to correct repo
1 parent ada2bf9 commit c32c38d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

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

1010
## Bugfixes
11-
* Refreshing the page while a source file is open works again. Thanks [@HansBug](https://github.com/HansBug) for the report [#94](https://github.com/colszowka/simplecov-html/issues/94) and [@Tietew](https://github.com/Tietew) for the fix!
11+
* Refreshing the page while a source file is open works again. Thanks [@HansBug](https://github.com/HansBug) for the report [#94](https://github.com/simplecov-ruby/simplecov-html/issues/94) and [@Tietew](https://github.com/Tietew) for the fix!
1212

1313
0.12.1 (2020-02-23)
1414
==================
@@ -71,11 +71,11 @@ Changes ruby support to 2.4+, adds branch coverage support. Meant to be used wit
7171

7272
## Bugfixes
7373

74-
* Allow usage with frozen-string-literal-enabled. See [#56](https://github.com/colszowka/simplecov-html/pull/56) (thanks @pat)
74+
* Allow usage with frozen-string-literal-enabled. See [#56](https://github.com/simplecov-ruby/simplecov-html/pull/56) (thanks @pat)
7575

7676
0.10.1 (2017-05-17)
7777
========
7878

7979
## Bugfixes
8080

81-
* circumvent a regression that happens in the new JRuby 9.1.9.0 release. See [#53](https://github.com/colszowka/simplecov-html/pull/53) thanks @koic
81+
* circumvent a regression that happens in the new JRuby 9.1.9.0 release. See [#53](https://github.com/simplecov-ruby/simplecov-html/pull/53) thanks @koic

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Default HTML formatter for SimpleCov
22
====================================
33

4-
***Note: To learn more about SimpleCov, check out the main repo at https://github.com/colszowka/simplecov***
4+
***Note: To learn more about SimpleCov, check out the main repo at https://github.com/simplecov-ruby/simplecov***
55

66
Generates a nice HTML report of your SimpleCov ruby code coverage results on Ruby 2.4+ using client-side Javascript
77
quite extensively.

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require "bundler"
44
Bundler::GemHelper.install_tasks
55

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

simplecov-html.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Gem::Specification.new do |gem|
99
gem.platform = Gem::Platform::RUBY
1010
gem.authors = ["Christoph Olszowka"]
1111
gem.email = ["christoph at olszowka de"]
12-
gem.homepage = "https://github.com/colszowka/simplecov-html"
12+
gem.homepage = "https://github.com/simplecov-ruby/simplecov-html"
1313
gem.description = %(Default HTML formatter for SimpleCov code coverage tool for ruby 2.4+)
1414
gem.summary = gem.description
1515
gem.license = "MIT"

views/layout.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</div>
2727

2828
<div id="footer">
29-
Generated by <a href="https://github.com/colszowka/simplecov">simplecov</a> v<%= SimpleCov::VERSION %>
29+
Generated by <a href="https://github.com/simplecov-ruby/simplecov">simplecov</a> v<%= SimpleCov::VERSION %>
3030
and simplecov-html v<%= SimpleCov::Formatter::HTMLFormatter::VERSION %><br/>
3131
using <%= result.command_name %>
3232
</div>

0 commit comments

Comments
 (0)