Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-10-11 06:29:21 +0400
committerChris Rebert <code@rebertia.com>2014-10-11 06:29:21 +0400
commit7dc3910e61ebc15497bc597766b750d1b1b1e349 (patch)
tree6be70339370c7c036695959f53569fabda9636b8
parent177fce3939c6866b08a730a3e947d988a87fbd25 (diff)
reflect move to twbs org
-rw-r--r--README.md2
-rw-r--r--src/main/resources/application.conf2
-rw-r--r--src/main/scala/com/getbootstrap/rorschach/auditing/BaseAndHeadBranchesAuditor.scala4
-rw-r--r--src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala6
-rw-r--r--src/main/scala/com/getbootstrap/rorschach/github/GitHubPullRequestCommenter.scala2
5 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 351a760..a5e0a6d 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
Rorschach
=========
-[![Build Status](https://travis-ci.org/cvrebert/rorschach.svg?branch=master)](https://travis-ci.org/cvrebert/rorschach)
+[![Build Status](https://travis-ci.org/twbs/rorschach.svg?branch=master)](https://travis-ci.org/twbs/rorschach)
[Bootstrap](https://github.com/twbs/bootstrap/) pull request sanity checker
diff --git a/src/main/resources/application.conf b/src/main/resources/application.conf
index 26456d3..9427aa5 100644
--- a/src/main/resources/application.conf
+++ b/src/main/resources/application.conf
@@ -8,7 +8,7 @@ spray.can {
}
client {
- user-agent-header = "TwbsRorschach/0.1 (https://github.com/cvrebert/rorschach)"
+ user-agent-header = "TwbsRorschach/0.1 (https://github.com/twbs/rorschach)"
request-timeout = 20 s
idle-timeout = 15 s
}
diff --git a/src/main/scala/com/getbootstrap/rorschach/auditing/BaseAndHeadBranchesAuditor.scala b/src/main/scala/com/getbootstrap/rorschach/auditing/BaseAndHeadBranchesAuditor.scala
index 6480ac6..d575ae7 100644
--- a/src/main/scala/com/getbootstrap/rorschach/auditing/BaseAndHeadBranchesAuditor.scala
+++ b/src/main/scala/com/getbootstrap/rorschach/auditing/BaseAndHeadBranchesAuditor.scala
@@ -10,14 +10,14 @@ object BaseAndHeadBranchesAuditor {
def auditThatNotAgainstGhPages(baseBranch: String): Option[String] = {
baseBranch match {
- case "gh-pages" => Some("[Normal pull requests should never be against the `gh-pages` branch.](https://github.com/cvrebert/rorschach/blob/master/docs/against-gh-pages.md)")
+ case "gh-pages" => Some("[Normal pull requests should never be against the `gh-pages` branch.](https://github.com/twbs/rorschach/blob/master/docs/against-gh-pages.md)")
case _ => None
}
}
def auditThatNotMergingGhPagesIntoMaster(baseBranch: String, headBranch: String): Option[String] = {
(headBranch, baseBranch) match {
- case ("gh-pages", "master") => Some("[Normally, the `gh-pages` branch should never be merged into `master` branch.](https://github.com/cvrebert/rorschach/blob/master/docs/gh-pages-into-master.md)")
+ case ("gh-pages", "master") => Some("[Normally, the `gh-pages` branch should never be merged into `master` branch.](https://github.com/twbs/rorschach/blob/master/docs/gh-pages-into-master.md)")
case _ => None
}
}
diff --git a/src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala b/src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala
index 3a4bbcc..65803c1 100644
--- a/src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala
+++ b/src/main/scala/com/getbootstrap/rorschach/auditing/ModifiedFilesAuditor.scala
@@ -22,7 +22,7 @@ object ModifiedFilesAuditor {
val cssModified = filepaths.exists{ _.isDistCss }
val lessModified = filepaths.exists{ _.isSourceLess }
if (cssModified && !lessModified) {
- Some("[Changes must be made to the original Less source code file(s), not just the compiled CSS file(s).](https://github.com/cvrebert/rorschach/blob/master/docs/css.md)")
+ Some("[Changes must be made to the original Less source code file(s), not just the compiled CSS file(s).](https://github.com/twbs/rorschach/blob/master/docs/css.md)")
}
else {
None
@@ -36,7 +36,7 @@ object ModifiedFilesAuditor {
val distJsModified = filepaths.exists{ _.isDistJs }
val sourceJsModified = filepaths.exists{ _.isSourceJs }
if (distJsModified && !sourceJsModified) {
- Some("[Changes must be made to the original JS source code file(s), not just the generated concatenated JS file(s).](https://github.com/cvrebert/rorschach/blob/master/docs/js.md)")
+ Some("[Changes must be made to the original JS source code file(s), not just the generated concatenated JS file(s).](https://github.com/twbs/rorschach/blob/master/docs/js.md)")
}
else {
None
@@ -45,7 +45,7 @@ object ModifiedFilesAuditor {
private def auditCname(filepaths: Set[String]): Option[String] = {
if (filepaths.contains("CNAME")) {
- Some("[The `CNAME` file should never be modified.](https://github.com/cvrebert/rorschach/blob/master/docs/cname.md)")
+ Some("[The `CNAME` file should never be modified.](https://github.com/twbs/rorschach/blob/master/docs/cname.md)")
}
else {
None
diff --git a/src/main/scala/com/getbootstrap/rorschach/github/GitHubPullRequestCommenter.scala b/src/main/scala/com/getbootstrap/rorschach/github/GitHubPullRequestCommenter.scala
index 855d0e0..6ea49f0 100644
--- a/src/main/scala/com/getbootstrap/rorschach/github/GitHubPullRequestCommenter.scala
+++ b/src/main/scala/com/getbootstrap/rorschach/github/GitHubPullRequestCommenter.scala
@@ -44,7 +44,7 @@ class GitHubPullRequestCommenter extends GitHubActorWithLogging {
|You'll need to **fix these mistakes** and revise your pull request before we can proceed further.
|Thanks!
|
- |(*Please note that this is a [fully automated](https://github.com/cvrebert/rorschach) comment.*)
+ |(*Please note that this is a [fully automated](https://github.com/twbs/rorschach) comment.*)
""".stripMargin
tryToCommentOn(repo, prNum, commentMarkdown) match {