Skip to content

Commit b8f2874

Browse files
committed
Update references to Brigade
Ensure links/references are up to date now that we've transferred ownership.
1 parent 717d929 commit b8f2874

File tree

8 files changed

+25
-26
lines changed

8 files changed

+25
-26
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@
503503
* Disable almost all hooks by default. You will now need to explicitly enable
504504
almost all hooks yourself in your `.overcommit.yml`. If you are migrating from
505505
`overcommit` 0.23.0 and want to use the default configuration that shipped
506-
with that version, copy the [default configuration from 0.23.0](https://github.com/brigade/overcommit/blob/9f03e9c82b385d375a836ca7146b117dbde5c822/config/default.yml)
506+
with that version, copy the [default configuration from 0.23.0](https://github.com/sds/overcommit/blob/9f03e9c82b385d375a836ca7146b117dbde5c822/config/default.yml)
507507
* Update `ScssLint` pre-commit hook to properly handle special exit code that
508508
signals all files were filtered by exclusions (new as of `scss-lint` 0.36.0)
509509
* Update `childprocess` dependency to minimum 0.5.6
@@ -861,7 +861,7 @@
861861
## 0.2.6
862862

863863
* Added check for linting HAML files with
864-
[haml-lint](https://github.com/brigade/haml-lint)
864+
[haml-lint](https://github.com/sds/haml-lint)
865865

866866
## 0.2.5
867867

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The reasoning for this perhaps odd naming scheme is to strike a balance between
7373
consistency, familiarity for those who already know the tool, and Overcommit's
7474
ability to deduce the name of a hook from its filename and vice versa.
7575

76-
[1]: https://github.com/brigade/overcommit/issues
76+
[1]: https://github.com/sds/overcommit/issues
7777
[2]: https://medium.com/brigade-engineering/the-secrets-to-great-commit-messages-106fc0a92a25
7878
[3]: https://travis-ci.org/
7979

@@ -82,4 +82,4 @@ ability to deduce the name of a hook from its filename and vice versa.
8282
This project adheres to the [Open Code of Conduct][code-of-conduct]. By
8383
participating, you are expected to honor this code.
8484

85-
[code-of-conduct]: https://github.com/brigade/code-of-conduct
85+
[code-of-conduct]: https://github.com/civiccc/code-of-conduct

MIT-LICENSE

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Copyright (c) 2013-2015 Brigade Engineering, Aiden Scandella, Shane da Silva
2-
https://www.brigade.com/
1+
Copyright (c) 2013-2019 Shane da Silva, Aiden Scandella
32

43
Permission is hereby granted, free of charge, to any person obtaining
54
a copy of this software and associated documentation files (the

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[![Gem Version](https://badge.fury.io/rb/overcommit.svg)](https://badge.fury.io/rb/overcommit)
2-
[![Build Status](https://travis-ci.org/brigade/overcommit.svg?branch=master)](https://travis-ci.org/brigade/overcommit)
3-
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/iqsr6jtrq6y0jhqq/branch/master?svg=true)](https://ci.appveyor.com/project/brigade/overcommit/branch/master)
4-
[![Coverage Status](https://coveralls.io/repos/github/brigade/overcommit/badge.svg?branch=master)](https://coveralls.io/github/brigade/overcommit?branch=master)
5-
[![Code Climate](https://codeclimate.com/github/brigade/overcommit.svg)](https://codeclimate.com/github/brigade/overcommit)
6-
[![Inline docs](http://inch-ci.org/github/brigade/overcommit.svg?branch=master)](http://inch-ci.org/github/brigade/overcommit)
2+
[![Build Status](https://travis-ci.org/sds/overcommit.svg?branch=master)](https://travis-ci.org/sds/overcommit)
3+
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/iqsr6jtrq6y0jhqq/branch/master?svg=true)](https://ci.appveyor.com/project/sds/overcommit/branch/master)
4+
[![Coverage Status](https://coveralls.io/repos/github/sds/overcommit/badge.svg?branch=master)](https://coveralls.io/github/sds/overcommit?branch=master)
5+
[![Code Climate](https://codeclimate.com/github/sds/overcommit.svg)](https://codeclimate.com/github/sds/overcommit)
6+
[![Inline docs](http://inch-ci.org/github/sds/overcommit.svg?branch=master)](http://inch-ci.org/github/sds/overcommit)
77

88
<p align="center">
9-
<img src="https://raw.githubusercontent.com/brigade/overcommit/master/logo/horizontal.png" width="65%" alt="Overcommit Logo"/>
9+
<img src="https://raw.githubusercontent.com/sds/overcommit/master/logo/horizontal.png" width="65%" alt="Overcommit Logo"/>
1010
</p>
1111

1212
`overcommit` is a tool to manage and configure
1313
[Git hooks](http://git-scm.com/book/en/Customizing-Git-Git-Hooks).
1414

15-
![Demonstration](https://brigade.github.io/overcommit/overcommit.gif)
15+
![Demonstration](https://sds.github.io/overcommit/overcommit.gif)
1616

1717
In addition to supporting a wide variety of hooks that can be used across
1818
multiple repositories, you can also define hooks specific to a repository which
@@ -60,7 +60,7 @@ This project aims to support the following Ruby runtimes on both \*nix and Windo
6060

6161
Some of the hooks have third-party dependencies. For example, to lint your
6262
[SCSS](http://sass-lang.com/) files, you're going to need our
63-
[scss_lint gem](https://github.com/brigade/scss-lint).
63+
[scss_lint gem](https://github.com/sds/scss-lint).
6464

6565
Depending on the hooks you enable/disable for your repository, you'll need to
6666
ensure your development environment already has those dependencies installed.
@@ -476,7 +476,7 @@ instead of whatever contents are in your working tree (as you don't want
476476
unstaged changes to taint your results). Overcommit takes care
477477
of this for you, but to do it in a generalized way introduces this
478478
limitation. See the [thread tracking this
479-
issue](https://github.com/brigade/overcommit/issues/238) for more details.
479+
issue](https://github.com/sds/overcommit/issues/238) for more details.
480480

481481
* [`*`AuthorEmail](lib/overcommit/hook/pre_commit/author_email.rb)
482482
* [`*`AuthorName](lib/overcommit/hook/pre_commit/author_name.rb)
@@ -592,9 +592,9 @@ Out of the box, `overcommit` comes with a set of hooks that enforce a variety of
592592
styles and lints. However, some hooks only make sense in the context of a
593593
specific repository.
594594

595-
At Brigade, for example, we have a number of simple checks that we run
596-
against our code to catch common errors. For example, since we use
597-
[RSpec](http://rspec.info/), we want to make sure all spec files contain the
595+
For example, you can have a number of simple checks that run
596+
against your code to catch common errors. For example, if you use
597+
[RSpec](http://rspec.info/), you can make sure all spec files contain the
598598
line `require 'spec_helper'`.
599599

600600
Inside our repository, we can add the file
@@ -704,7 +704,7 @@ ensure your thoughts, ideas, or code get merged.
704704
## Community
705705

706706
All major discussion surrounding Overcommit happens on the
707-
[GitHub issues list](https://github.com/brigade/overcommit/issues).
707+
[GitHub issues list](https://github.com/sds/overcommit/issues).
708708

709709
You can also follow [@git_overcommit on Twitter](https://twitter.com/git_overcommit).
710710

config/starter.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Use this file to configure the Overcommit hooks you wish to use. This will
22
# extend the default configuration defined in:
3-
# https://github.com/brigade/overcommit/blob/master/config/default.yml
3+
# https://github.com/sds/overcommit/blob/master/config/default.yml
44
#
55
# At the topmost level of this YAML file is a key representing type of hook
66
# being run (e.g. pre-commit, commit-msg, etc.). Within each type you can
77
# customize each hook, such as whether to only run it on certain files (via
88
# `include`), whether to only display output if it fails (via `quiet`), etc.
99
#
1010
# For a complete list of hooks, see:
11-
# https://github.com/brigade/overcommit/tree/master/lib/overcommit/hook
11+
# https://github.com/sds/overcommit/tree/master/lib/overcommit/hook
1212
#
1313
# For a complete list of options that you can use to customize hooks, see:
14-
# https://github.com/brigade/overcommit#configuration
14+
# https://github.com/sds/overcommit#configuration
1515
#
1616
# Uncomment the following lines to make the configuration take effect.
1717

lib/overcommit/constants.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ module Overcommit
77

88
HOOK_DIRECTORY = File.join(HOME, 'lib', 'overcommit', 'hook').freeze
99

10-
REPO_URL = 'https://github.com/brigade/overcommit'
10+
REPO_URL = 'https://github.com/sds/overcommit'
1111
BUG_REPORT_URL = "#{REPO_URL}/issues"
1212
end

lib/overcommit/hook/pre_commit/scss_lint.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module Overcommit::Hook::PreCommit
44
# Runs `scss-lint` against any modified SCSS files.
55
#
6-
# @see https://github.com/brigade/scss-lint
6+
# @see https://github.com/sds/scss-lint
77
class ScssLint < Base
88
def run
99
result = execute(command, args: applicable_files)

overcommit.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
99
s.license = 'MIT'
1010
s.summary = 'Git hook manager'
1111
s.description = 'Utility to install, configure, and extend Git hooks'
12-
s.authors = ['Brigade Engineering', 'Shane da Silva']
13-
s.email = ['[email protected]', 'shane[email protected]']
12+
s.authors = ['Shane da Silva']
13+
s.email = ['shane@dasilva.io']
1414
s.homepage = Overcommit::REPO_URL
1515
s.post_install_message =
1616
'Install hooks by running `overcommit --install` in your Git repository'

0 commit comments

Comments
 (0)