diff --git a/.travis.yml b/.travis.yml index 8fac43f..bc75abb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,11 @@ sudo: false cache: cargo +branches: + only: + - master + - /^test-.*$/ + matrix: include: diff --git a/Cargo.toml b/Cargo.toml index 3c85d6e..1fd4b88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "jsonpath_lib" version = "0.1.1" authors = ["Changseok Han "] -description = "JsonPath for Rust and Webassembly - Webassembly Demo: https://freestrings.github.io/jsonpath" +description = "JsonPath in Rust and Webassembly - Webassembly Demo: https://freestrings.github.io/jsonpath" readme = "README.md" keywords = ["library", "jsonpath", "json", "webassembly"] diff --git a/LICENSE b/LICENSE index e2fab34..05517ff 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) [2017] [Mark Han] +Copyright (c) [2019] [Changseok Han] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/wasm/.appveyor.yml b/wasm/.appveyor.yml deleted file mode 100644 index 50910bd..0000000 --- a/wasm/.appveyor.yml +++ /dev/null @@ -1,11 +0,0 @@ -install: - - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - if not defined RUSTFLAGS rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly - - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - - rustc -V - - cargo -V - -build: false - -test_script: - - cargo test --locked