Pull Request #15 Extract helper functions for most_guessable_match_sequence

Had to introduce a couple additional parameters that previously were being
captured by the closure. Also re-ordered the parameters to be a little more
consistent (always put password first). Hopefully the order I choose makes sense!

Jason Axelson avatar Jason Axelson

Pull request event #31 passed

  • Ran for
  • Total time
  • New branch build
.travis.yml
dist: xenial

language: elixir

elixir:
  - 1.8.1
  - 1.7.4

otp_release:
  - 21.3
  - 20.3.3

env:
  global:
    - MIX_ENV=test
    - NODE_VERSION=10.15.3

before_install:
  - nvm install $NODE_VERSION

script:
  - npm install
  - mix coveralls
Build Config
{
  "env": {
    "global": [
      "MIX_ENV=test",
      "NODE_VERSION=10.15.3"
    ]
  },
  "dist": "xenial",
  "elixir": [
    "1.8.1",
    "1.7.4"
  ],
  "script": [
    "npm install",
    "mix coveralls"
  ],
  "language": "elixir",
  "otp_release": [
    21.3,
    "20.3.3"
  ],
  "before_install": [
    "nvm install $NODE_VERSION"
  ]
}