aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/agext/levenshtein
diff options
context:
space:
mode:
authorNathan Dench <ndenc2@gmail.com>2019-05-24 15:16:44 +1000
committerNathan Dench <ndenc2@gmail.com>2019-05-24 15:16:44 +1000
commit107c1cdb09c575aa2f61d97f48d8587eb6bada4c (patch)
treeca7d008643efc555c388baeaf1d986e0b6b3e28c /vendor/github.com/agext/levenshtein
parent844b5a68d8af4791755b8f0ad293cc99f5959183 (diff)
downloadterraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.tar.gz
terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.tar.zst
terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.zip
Upgrade to 0.12
Diffstat (limited to 'vendor/github.com/agext/levenshtein')
-rw-r--r--vendor/github.com/agext/levenshtein/.gitignore51
-rw-r--r--vendor/github.com/agext/levenshtein/.travis.yml83
-rw-r--r--vendor/github.com/agext/levenshtein/README.md2
-rw-r--r--vendor/github.com/agext/levenshtein/go.mod1
-rw-r--r--vendor/github.com/agext/levenshtein/test.sh10
5 files changed, 82 insertions, 65 deletions
diff --git a/vendor/github.com/agext/levenshtein/.gitignore b/vendor/github.com/agext/levenshtein/.gitignore
index 404365f..4473da1 100644
--- a/vendor/github.com/agext/levenshtein/.gitignore
+++ b/vendor/github.com/agext/levenshtein/.gitignore
@@ -1,2 +1,53 @@
1# Ignore docs files
2_gh_pages
3_site
4
5# Ignore temporary files
1README.html 6README.html
2coverage.out 7coverage.out
8.tmp
9
10# Numerous always-ignore extensions
11*.diff
12*.err
13*.log
14*.orig
15*.rej
16*.swo
17*.swp
18*.vi
19*.zip
20*~
21
22# OS or Editor folders
23._*
24.cache
25.DS_Store
26.idea
27.project
28.settings
29.tmproj
30*.esproj
31*.sublime-project
32*.sublime-workspace
33nbproject
34Thumbs.db
35
36# Komodo
37.komodotools
38*.komodoproject
39
40# SCSS-Lint
41scss-lint-report.xml
42
43# grunt-contrib-sass cache
44.sass-cache
45
46# Jekyll metadata
47docs/.jekyll-metadata
48
49# Folders to ignore
50.build
51.test
52bower_components
53node_modules
diff --git a/vendor/github.com/agext/levenshtein/.travis.yml b/vendor/github.com/agext/levenshtein/.travis.yml
index 95be94a..a51a144 100644
--- a/vendor/github.com/agext/levenshtein/.travis.yml
+++ b/vendor/github.com/agext/levenshtein/.travis.yml
@@ -1,70 +1,25 @@
1language: go 1language: go
2sudo: false 2sudo: false
3go:
4 - 1.8
5 - 1.7.5
6 - 1.7.4
7 - 1.7.3
8 - 1.7.2
9 - 1.7.1
10 - 1.7
11 - tip
12 - 1.6.4
13 - 1.6.3
14 - 1.6.2
15 - 1.6.1
16 - 1.6
17 - 1.5.4
18 - 1.5.3
19 - 1.5.2
20 - 1.5.1
21 - 1.5
22 - 1.4.3
23 - 1.4.2
24 - 1.4.1
25 - 1.4
26 - 1.3.3
27 - 1.3.2
28 - 1.3.1
29 - 1.3
30 - 1.2.2
31 - 1.2.1
32 - 1.2
33 - 1.1.2
34 - 1.1.1
35 - 1.1
36before_install:
37 - go get github.com/mattn/goveralls
38script:
39 - $HOME/gopath/bin/goveralls -service=travis-ci
40notifications:
41 email:
42 on_success: never
43matrix: 3matrix:
44 fast_finish: true 4 fast_finish: true
5 include:
6 - go: 1.11.x
7 env: TEST_METHOD=goveralls
8 - go: 1.10.x
9 - go: tip
10 - go: 1.9.x
11 - go: 1.8.x
12 - go: 1.7.x
13 - go: 1.6.x
14 - go: 1.5.x
45 allow_failures: 15 allow_failures:
46 - go: tip 16 - go: tip
47 - go: 1.6.4 17 - go: 1.9.x
48 - go: 1.6.3 18 - go: 1.8.x
49 - go: 1.6.2 19 - go: 1.7.x
50 - go: 1.6.1 20 - go: 1.6.x
51 - go: 1.6 21 - go: 1.5.x
52 - go: 1.5.4 22script: ./test.sh $TEST_METHOD
53 - go: 1.5.3 23notifications:
54 - go: 1.5.2 24 email:
55 - go: 1.5.1 25 on_success: never
56 - go: 1.5
57 - go: 1.4.3
58 - go: 1.4.2
59 - go: 1.4.1
60 - go: 1.4
61 - go: 1.3.3
62 - go: 1.3.2
63 - go: 1.3.1
64 - go: 1.3
65 - go: 1.2.2
66 - go: 1.2.1
67 - go: 1.2
68 - go: 1.1.2
69 - go: 1.1.1
70 - go: 1.1
diff --git a/vendor/github.com/agext/levenshtein/README.md b/vendor/github.com/agext/levenshtein/README.md
index 90509c2..9e42558 100644
--- a/vendor/github.com/agext/levenshtein/README.md
+++ b/vendor/github.com/agext/levenshtein/README.md
@@ -11,7 +11,7 @@ This package implements distance and similarity metrics for strings, based on th
11 11
12## Project Status 12## Project Status
13 13
14v1.2.1 Stable: Guaranteed no breaking changes to the API in future v1.x releases. Probably safe to use in production, though provided on "AS IS" basis. 14v1.2.2 Stable: Guaranteed no breaking changes to the API in future v1.x releases. Probably safe to use in production, though provided on "AS IS" basis.
15 15
16This package is being actively maintained. If you encounter any problems or have any suggestions for improvement, please [open an issue](https://github.com/agext/levenshtein/issues). Pull requests are welcome. 16This package is being actively maintained. If you encounter any problems or have any suggestions for improvement, please [open an issue](https://github.com/agext/levenshtein/issues). Pull requests are welcome.
17 17
diff --git a/vendor/github.com/agext/levenshtein/go.mod b/vendor/github.com/agext/levenshtein/go.mod
new file mode 100644
index 0000000..545d432
--- /dev/null
+++ b/vendor/github.com/agext/levenshtein/go.mod
@@ -0,0 +1 @@
module github.com/agext/levenshtein
diff --git a/vendor/github.com/agext/levenshtein/test.sh b/vendor/github.com/agext/levenshtein/test.sh
new file mode 100644
index 0000000..c5ed724
--- /dev/null
+++ b/vendor/github.com/agext/levenshtein/test.sh
@@ -0,0 +1,10 @@
1set -ev
2
3if [[ "$1" == "goveralls" ]]; then
4 echo "Testing with goveralls..."
5 go get github.com/mattn/goveralls
6 $HOME/gopath/bin/goveralls -service=travis-ci
7else
8 echo "Testing with go test..."
9 go test -v ./...
10fi