mirror of
https://github.com/Smaug123/ClassicalCiphers.jl
synced 2025-10-05 01:18:48 +00:00
ClassicalCiphers.jl generated files.
license: BSD authors: Smaug123 years: 2016 user: Smaug123 Julia Version 0.4.1 [cbe1bee*]
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
*.jl.cov
|
||||||
|
*.jl.*.cov
|
||||||
|
*.jl.mem
|
14
.travis.yml
Normal file
14
.travis.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# Documentation: http://docs.travis-ci.com/user/languages/julia/
|
||||||
|
language: julia
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
- osx
|
||||||
|
julia:
|
||||||
|
- release
|
||||||
|
- nightly
|
||||||
|
notifications:
|
||||||
|
email: false
|
||||||
|
# uncomment the following lines to override the default test script
|
||||||
|
#script:
|
||||||
|
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
||||||
|
# - julia -e 'Pkg.clone(pwd()); Pkg.build("ClassicalCiphers"); Pkg.test("ClassicalCiphers"; coverage=true)'
|
25
LICENSE.md
Normal file
25
LICENSE.md
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
The ClassicalCiphers.jl package is licensed under the Simplified "2-clause" BSD License:
|
||||||
|
|
||||||
|
> Copyright (c) 2016: Smaug123.
|
||||||
|
>
|
||||||
|
> Redistribution and use in source and binary forms, with or without
|
||||||
|
> modification, are permitted provided that the following conditions are
|
||||||
|
> met:
|
||||||
|
>
|
||||||
|
> 1. Redistributions of source code must retain the above copyright
|
||||||
|
> notice, this list of conditions and the following disclaimer.
|
||||||
|
> 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
> notice, this list of conditions and the following disclaimer in the
|
||||||
|
> documentation and/or other materials provided with the distribution.
|
||||||
|
>
|
||||||
|
> THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
> "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
> LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
> A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
> OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
> SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
> LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
> DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
> THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
> (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
> OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
3
README.md
Normal file
3
README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# ClassicalCiphers
|
||||||
|
|
||||||
|
[](https://travis-ci.org/Smaug123/ClassicalCiphers.jl)
|
34
appveyor.yml
Normal file
34
appveyor.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
- JULIAVERSION: "julialang/bin/winnt/x86/0.4/julia-0.4-latest-win32.exe"
|
||||||
|
- JULIAVERSION: "julialang/bin/winnt/x64/0.4/julia-0.4-latest-win64.exe"
|
||||||
|
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
|
||||||
|
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
|
||||||
|
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
- /release-.*/
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
- provider: Email
|
||||||
|
on_build_success: false
|
||||||
|
on_build_failure: false
|
||||||
|
on_build_status_changed: false
|
||||||
|
|
||||||
|
install:
|
||||||
|
# Download most recent Julia Windows binary
|
||||||
|
- ps: (new-object net.webclient).DownloadFile(
|
||||||
|
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
|
||||||
|
"C:\projects\julia-binary.exe")
|
||||||
|
# Run installer silently, output to C:\projects\julia
|
||||||
|
- C:\projects\julia-binary.exe /S /D=C:\projects\julia
|
||||||
|
|
||||||
|
build_script:
|
||||||
|
# Need to convert from shallow to complete for Pkg.clone to work
|
||||||
|
- IF EXIST .git\shallow (git fetch --unshallow)
|
||||||
|
- C:\projects\julia\bin\julia -e "versioninfo();
|
||||||
|
Pkg.clone(pwd(), \"ClassicalCiphers\"); Pkg.build(\"ClassicalCiphers\")"
|
||||||
|
|
||||||
|
test_script:
|
||||||
|
- C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"ClassicalCiphers\")"
|
5
src/ClassicalCiphers.jl
Normal file
5
src/ClassicalCiphers.jl
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
module ClassicalCiphers
|
||||||
|
|
||||||
|
# package code goes here
|
||||||
|
|
||||||
|
end # module
|
5
test/runtests.jl
Normal file
5
test/runtests.jl
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
using ClassicalCiphers
|
||||||
|
using Base.Test
|
||||||
|
|
||||||
|
# write your own tests here
|
||||||
|
@test 1 == 1
|
Reference in New Issue
Block a user