vendor: github.com/agext/levenshtein@v1.2.2
This commit is contained in:
parent
e4756ddd52
commit
501d106976
2
go.mod
2
go.mod
|
@ -8,7 +8,7 @@ require (
|
||||||
github.com/ChrisTrenkamp/goxpath v0.0.0-20170625215350-4fe035839290 // indirect
|
github.com/ChrisTrenkamp/goxpath v0.0.0-20170625215350-4fe035839290 // indirect
|
||||||
github.com/Unknwon/com v0.0.0-20151008135407-28b053d5a292 // indirect
|
github.com/Unknwon/com v0.0.0-20151008135407-28b053d5a292 // indirect
|
||||||
github.com/abdullin/seq v0.0.0-20160510034733-d5467c17e7af // indirect
|
github.com/abdullin/seq v0.0.0-20160510034733-d5467c17e7af // indirect
|
||||||
github.com/agext/levenshtein v1.2.1
|
github.com/agext/levenshtein v1.2.2
|
||||||
github.com/agl/ed25519 v0.0.0-20150830182803-278e1ec8e8a6 // indirect
|
github.com/agl/ed25519 v0.0.0-20150830182803-278e1ec8e8a6 // indirect
|
||||||
github.com/antchfx/xpath v0.0.0-20170728053731-b5c552e1acbd // indirect
|
github.com/antchfx/xpath v0.0.0-20170728053731-b5c552e1acbd // indirect
|
||||||
github.com/antchfx/xquery v0.0.0-20170730121040-eb8c3c172607 // indirect
|
github.com/antchfx/xquery v0.0.0-20170730121040-eb8c3c172607 // indirect
|
||||||
|
|
2
go.sum
2
go.sum
|
@ -24,6 +24,8 @@ github.com/abdullin/seq v0.0.0-20160510034733-d5467c17e7af h1:DBNMBMuMiWYu0b+8KM
|
||||||
github.com/abdullin/seq v0.0.0-20160510034733-d5467c17e7af/go.mod h1:5Jv4cbFiHJMsVxt52+i0Ha45fjshj6wxYr1r19tB9bw=
|
github.com/abdullin/seq v0.0.0-20160510034733-d5467c17e7af/go.mod h1:5Jv4cbFiHJMsVxt52+i0Ha45fjshj6wxYr1r19tB9bw=
|
||||||
github.com/agext/levenshtein v1.2.1 h1:QmvMAjj2aEICytGiWzmxoE0x2KZvE0fvmqMOfy2tjT8=
|
github.com/agext/levenshtein v1.2.1 h1:QmvMAjj2aEICytGiWzmxoE0x2KZvE0fvmqMOfy2tjT8=
|
||||||
github.com/agext/levenshtein v1.2.1/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558=
|
github.com/agext/levenshtein v1.2.1/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558=
|
||||||
|
github.com/agext/levenshtein v1.2.2 h1:0S/Yg6LYmFJ5stwQeRp6EeOcCbj7xiqQSdNelsXvaqE=
|
||||||
|
github.com/agext/levenshtein v1.2.2/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558=
|
||||||
github.com/agl/ed25519 v0.0.0-20150830182803-278e1ec8e8a6 h1:LoeFxdq5zUCBQPhbQKE6zvoGwHMxCBlqwbH9+9kHoHA=
|
github.com/agl/ed25519 v0.0.0-20150830182803-278e1ec8e8a6 h1:LoeFxdq5zUCBQPhbQKE6zvoGwHMxCBlqwbH9+9kHoHA=
|
||||||
github.com/agl/ed25519 v0.0.0-20150830182803-278e1ec8e8a6/go.mod h1:WPjqKcmVOxf0XSf3YxCJs6N6AOSrOx3obionmG7T0y0=
|
github.com/agl/ed25519 v0.0.0-20150830182803-278e1ec8e8a6/go.mod h1:WPjqKcmVOxf0XSf3YxCJs6N6AOSrOx3obionmG7T0y0=
|
||||||
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
|
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
|
||||||
|
|
|
@ -1,2 +1,53 @@
|
||||||
|
# Ignore docs files
|
||||||
|
_gh_pages
|
||||||
|
_site
|
||||||
|
|
||||||
|
# Ignore temporary files
|
||||||
README.html
|
README.html
|
||||||
coverage.out
|
coverage.out
|
||||||
|
.tmp
|
||||||
|
|
||||||
|
# Numerous always-ignore extensions
|
||||||
|
*.diff
|
||||||
|
*.err
|
||||||
|
*.log
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
*.swo
|
||||||
|
*.swp
|
||||||
|
*.vi
|
||||||
|
*.zip
|
||||||
|
*~
|
||||||
|
|
||||||
|
# OS or Editor folders
|
||||||
|
._*
|
||||||
|
.cache
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.tmproj
|
||||||
|
*.esproj
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
nbproject
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Komodo
|
||||||
|
.komodotools
|
||||||
|
*.komodoproject
|
||||||
|
|
||||||
|
# SCSS-Lint
|
||||||
|
scss-lint-report.xml
|
||||||
|
|
||||||
|
# grunt-contrib-sass cache
|
||||||
|
.sass-cache
|
||||||
|
|
||||||
|
# Jekyll metadata
|
||||||
|
docs/.jekyll-metadata
|
||||||
|
|
||||||
|
# Folders to ignore
|
||||||
|
.build
|
||||||
|
.test
|
||||||
|
bower_components
|
||||||
|
node_modules
|
||||||
|
|
|
@ -1,70 +1,25 @@
|
||||||
language: go
|
language: go
|
||||||
sudo: false
|
sudo: false
|
||||||
go:
|
matrix:
|
||||||
- 1.8
|
fast_finish: true
|
||||||
- 1.7.5
|
include:
|
||||||
- 1.7.4
|
- go: 1.11.x
|
||||||
- 1.7.3
|
env: TEST_METHOD=goveralls
|
||||||
- 1.7.2
|
- go: 1.10.x
|
||||||
- 1.7.1
|
- go: tip
|
||||||
- 1.7
|
- go: 1.9.x
|
||||||
- tip
|
- go: 1.8.x
|
||||||
- 1.6.4
|
- go: 1.7.x
|
||||||
- 1.6.3
|
- go: 1.6.x
|
||||||
- 1.6.2
|
- go: 1.5.x
|
||||||
- 1.6.1
|
allow_failures:
|
||||||
- 1.6
|
- go: tip
|
||||||
- 1.5.4
|
- go: 1.9.x
|
||||||
- 1.5.3
|
- go: 1.8.x
|
||||||
- 1.5.2
|
- go: 1.7.x
|
||||||
- 1.5.1
|
- go: 1.6.x
|
||||||
- 1.5
|
- go: 1.5.x
|
||||||
- 1.4.3
|
script: ./test.sh $TEST_METHOD
|
||||||
- 1.4.2
|
|
||||||
- 1.4.1
|
|
||||||
- 1.4
|
|
||||||
- 1.3.3
|
|
||||||
- 1.3.2
|
|
||||||
- 1.3.1
|
|
||||||
- 1.3
|
|
||||||
- 1.2.2
|
|
||||||
- 1.2.1
|
|
||||||
- 1.2
|
|
||||||
- 1.1.2
|
|
||||||
- 1.1.1
|
|
||||||
- 1.1
|
|
||||||
before_install:
|
|
||||||
- go get github.com/mattn/goveralls
|
|
||||||
script:
|
|
||||||
- $HOME/gopath/bin/goveralls -service=travis-ci
|
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
on_success: never
|
on_success: never
|
||||||
matrix:
|
|
||||||
fast_finish: true
|
|
||||||
allow_failures:
|
|
||||||
- go: tip
|
|
||||||
- go: 1.6.4
|
|
||||||
- go: 1.6.3
|
|
||||||
- go: 1.6.2
|
|
||||||
- go: 1.6.1
|
|
||||||
- go: 1.6
|
|
||||||
- go: 1.5.4
|
|
||||||
- go: 1.5.3
|
|
||||||
- go: 1.5.2
|
|
||||||
- go: 1.5.1
|
|
||||||
- go: 1.5
|
|
||||||
- go: 1.4.3
|
|
||||||
- go: 1.4.2
|
|
||||||
- go: 1.4.1
|
|
||||||
- go: 1.4
|
|
||||||
- go: 1.3.3
|
|
||||||
- go: 1.3.2
|
|
||||||
- go: 1.3.1
|
|
||||||
- go: 1.3
|
|
||||||
- go: 1.2.2
|
|
||||||
- go: 1.2.1
|
|
||||||
- go: 1.2
|
|
||||||
- go: 1.1.2
|
|
||||||
- go: 1.1.1
|
|
||||||
- go: 1.1
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ This package implements distance and similarity metrics for strings, based on th
|
||||||
|
|
||||||
## Project Status
|
## Project Status
|
||||||
|
|
||||||
v1.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.
|
v1.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.
|
||||||
|
|
||||||
This 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.
|
This 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.
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
module github.com/agext/levenshtein
|
|
@ -0,0 +1,10 @@
|
||||||
|
set -ev
|
||||||
|
|
||||||
|
if [[ "$1" == "goveralls" ]]; then
|
||||||
|
echo "Testing with goveralls..."
|
||||||
|
go get github.com/mattn/goveralls
|
||||||
|
$HOME/gopath/bin/goveralls -service=travis-ci
|
||||||
|
else
|
||||||
|
echo "Testing with go test..."
|
||||||
|
go test -v ./...
|
||||||
|
fi
|
|
@ -42,7 +42,7 @@ github.com/ChrisTrenkamp/goxpath/internal/xsort
|
||||||
github.com/ChrisTrenkamp/goxpath/tree/xmltree/xmlnode
|
github.com/ChrisTrenkamp/goxpath/tree/xmltree/xmlnode
|
||||||
# github.com/Unknwon/com v0.0.0-20151008135407-28b053d5a292
|
# github.com/Unknwon/com v0.0.0-20151008135407-28b053d5a292
|
||||||
github.com/Unknwon/com
|
github.com/Unknwon/com
|
||||||
# github.com/agext/levenshtein v1.2.1
|
# github.com/agext/levenshtein v1.2.2
|
||||||
github.com/agext/levenshtein
|
github.com/agext/levenshtein
|
||||||
# github.com/agl/ed25519 v0.0.0-20150830182803-278e1ec8e8a6
|
# github.com/agl/ed25519 v0.0.0-20150830182803-278e1ec8e8a6
|
||||||
github.com/agl/ed25519
|
github.com/agl/ed25519
|
||||||
|
|
Loading…
Reference in New Issue