aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-12-10merge conflictspr/96Nick Merwin12-26/+113
2015-12-10Merge pull request #88 from fracmak/feature/service_pull_requestNick Merwin2-0/+4
Added support for service_pull_request in jenkins
2015-12-10Merge pull request #108 from daleharvey/80Nick Merwin1-1/+1
Use HEAD to pick up git info
2015-12-10Merge branch 'pr/111'Nick Merwin1-1/+1
2015-12-10Merge branch 'pr/110'Nick Merwin3-4/+6
2015-12-10Merge pull request #76 from jacob-meacham/feature/user-optionsNick Merwin3-5/+21
allow users to pass options through.
2015-12-04Resolve Lodash deprecation warningRussell Dempsey1-1/+1
coveralls@^2.6.1 resolves to [email protected], depends on [email protected] - https://github.com/nickmerwin/node-coveralls/blob/master/package.json#L35 [email protected] depends on form-data@~0.1.0 - https://github.com/request/request/blob/v2.40.0/package.json#L33 (so does 3.0, watch out) form-data@~0.1.0 resolves to @0.1.4, depends on async0.9.2 - https://github.com/form-data/form-data/blob/0.1.4/package.json#L20 async0.9.2 depends on deprecated [email protected] - https://github.com/caolan/async/blob/0.9.2/package.json#L28 coveralls@master also depends on [email protected] and should be updated to - https://github.com/request/request/blob/v2.67.0/package.json#L29
2015-11-06rm unneeded options, bump node in travisAndrii Shumada3-4/+6
2015-10-16Use HEAD to pick up git infoDale Harvey1-1/+1
2015-08-12version bumpNick Merwin1-1/+1
2015-08-12Merge pull request #106 from job13er/add-enterprise-supportNick Merwin2-3/+35
Added support for process.env.COVERALLS_ENDPOINT
2015-08-12Added support for process.env.COVERALLS_ENDPOINTAdam Meadows2-3/+35
To allow using this tool with Coveralls Enterprise, I've added support in `sendToCoveralls` to read the host from a `COVERALLS_ENDPOINT` environment variable (if it exists), else default to coveralls.io (as before).
2015-08-07removed dash from "circleci" in readmeNick Merwin1-1/+1
* closes #104
2015-08-06Merge pull request #105 from eagleeye/patch-1Nick Merwin1-2/+2
put test deps in dev-dependencies
2015-08-06put test deps in dev-dependenciesAndrii Shumada1-2/+2
2015-07-28Merge pull request #74 from JonathanPorta/add-command-line-paramsNick Merwin1-0/+8
Add command line params to README
2015-07-18updated package.json repoNick Merwin1-2/+2
2015-07-16Merge pull request #101 from ejlangev/support-pull-requestsNick Merwin4-0/+22
Pass CI_PULL_REQUEST through to coveralls if it is set
2015-07-14Pass CI_PULL_REQUEST through to coveralls if it is setEthan Langevin4-0/+22
2015-07-13package updated version + maintainers2.11.3Nick Merwin2-14/+13
README badges updates
2015-07-13Merge pull request #99 from benchling/masterNick Merwin1-1/+1
Fix parsing git message with REGEX_COMMIT_DETAILS
2015-07-13Fix parsing git message with REGEX_COMMIT_DETAILSJoshua Ma1-1/+1
Given the commit message ``` tree 2d257d54add0901a72fbe492538aec4a35b4f4a5 parent 21d9ce4eb278af46561e069d6410e72a88c38036 author Joshua Ma <[email protected]> 1436838814 -0700 committer Joshua Ma <[email protected]> 1436839048 -0700 main message secondary detail ``` REGEX_COMMIT_DETAILS previously incorrectly matched `secondary detail` as the message - it lets an optional newline match (A), followed by nongreedy `[\S\s]+`, until a double-newline (B) is found. The message used is what follows B. Since there's two double-newlines, before `main message` and `secondary detail`, the first double-newline is used towards (A) and the second set is the one that matches (B). So the message ends up being `secondary detail`. This change simplifies the regex to just a nongreedy `[\S\s]*` until the first double-newline, after which the message is expected.
2015-07-02updated travis badgeNick Merwin1-2/+2
2015-05-23slight tweak to READMEBenjamin Coe1-4/+4
2015-05-23added documentation for nyc and node-tapBenjamin Coe1-10/+21
2015-04-21Added support for service_pull_request in jenkins using the github pull ↵Merrifield, Jay2-0/+4
request plugin's environment variables
2015-04-15Merge pull request #78 from stevemao/patch-1Gregg Caines1-4/+4
Fix mocha's link
2015-04-05Merge pull request #84 from mgartner/patch-1Gregg Caines1-2/+1
Update README to be more clear
2015-04-04Update README to be more clearMarcus Gartner1-2/+1
2015-02-27Fix mocha's linkSteve Mao1-4/+4
It should be http://mochajs.org/
2015-01-29allow users to pass options through.Jacob Meacham3-5/+21
2014-11-29Merge pull request #72 from StevenWeathers/wercker-ciGregg Caines3-1/+35
Add Wercker CI support with tests.
2014-11-10TypoJonathan Porta1-0/+1
2014-11-10Document possible command line paramsJonathan Porta1-0/+7
2014-11-04Add Wercker CI support with tests.Steven Weathers3-1/+35
Fix minor lint error where a second semicolon appears in lib/fetchGitData.js
2014-09-21Merge pull request #68 from geek/patch-1Gregg Caines1-0/+6
Adding instructions on using lab with coveralls
2014-09-21version bump 2.11.2.Gregg Caines1-1/+1
2014-09-21Merge pull request #70 from mschaaf/patch-1Gregg Caines1-1/+1
fix parsing of multiline header responses
2014-09-11fetch all characters by selecting all whitespace and all none whitespaceSchaaf, Martin1-1/+1
2014-09-11fix parsing of multiline header responsesSchaaf, Martin1-1/+1
takes not known headers into account
2014-09-04Update README.mdWyatt Preul1-1/+1
2014-09-04Adding instructions on using lab with coverallsWyatt Preul1-0/+6
2014-08-18Merge pull request #64 from pdehaan/patch-1Gregg Caines1-1/+1
Update request dependency
2014-08-18Merge pull request #65 from washimimizuku/patch-1Gregg Caines1-0/+9
README Patch: Jasmine instructions
2014-08-15Update README.mdNuno Barreto1-2/+2
2014-08-15Update README.mdNuno Barreto1-0/+9
2014-08-14Update request dependencyPeter deHaan1-1/+1
See mikeal/request#993
2014-07-31Merge pull request #62 from wlabranche/patch-1Gregg Caines1-1/+1
Removed dead link
2014-07-31Removed dead linkWill LaBranche1-1/+1
Seems to be taken off the blog entirely.
2014-07-31Merge pull request #61 from rogierslag/masterGregg Caines1-1/+1
Correct the Coveralls-image in README