Skip to content

Commit dd99a0c

Browse files
committed
FinancialModule.jl generated files.
license: MIT authors: rcalxrc08 years: 2017 user: Julia Version 0.5.2 [f4c6c9d]
1 parent 9171c4b commit dd99a0c

9 files changed

+138
-0
lines changed

.codecov.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.jl.cov
2+
*.jl.*.cov
3+
*.jl.mem

.travis.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
## Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- 0.5
8+
- nightly
9+
notifications:
10+
email: false
11+
git:
12+
depth: 99999999
13+
14+
## uncomment the following lines to allow failures on nightly julia
15+
## (tests will run but not make your overall status red)
16+
#matrix:
17+
# allow_failures:
18+
# - julia: nightly
19+
20+
## uncomment and modify the following lines to manually install system packages
21+
#addons:
22+
# apt: # apt-get for linux
23+
# packages:
24+
# - gfortran
25+
#before_script: # homebrew for mac
26+
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
27+
28+
## uncomment the following lines to override the default test script
29+
#script:
30+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("FinancialModule"); Pkg.test("FinancialModule"; coverage=true)'
31+
after_success:
32+
# push coverage results to Coveralls
33+
- julia -e 'cd(Pkg.dir("FinancialModule")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
34+
# push coverage results to Codecov
35+
- julia -e 'cd(Pkg.dir("FinancialModule")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

LICENSE.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
The FinancialModule.jl package is licensed under the MIT "Expat" License:
2+
3+
> Copyright (c) 2017: rcalxrc08.
4+
>
5+
>
6+
> Permission is hereby granted, free of charge, to any person obtaining a copy
7+
>
8+
> of this software and associated documentation files (the "Software"), to deal
9+
>
10+
> in the Software without restriction, including without limitation the rights
11+
>
12+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13+
>
14+
> copies of the Software, and to permit persons to whom the Software is
15+
>
16+
> furnished to do so, subject to the following conditions:
17+
>
18+
>
19+
>
20+
> The above copyright notice and this permission notice shall be included in all
21+
>
22+
> copies or substantial portions of the Software.
23+
>
24+
>
25+
>
26+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27+
>
28+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29+
>
30+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31+
>
32+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33+
>
34+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
35+
>
36+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37+
>
38+
> SOFTWARE.
39+
>
40+
>

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# FinancialModule

REQUIRE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
julia 0.5

appveyor.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
environment:
2+
matrix:
3+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
4+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
5+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
6+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
7+
8+
## uncomment the following lines to allow failures on nightly julia
9+
## (tests will run but not make your overall status red)
10+
#matrix:
11+
# allow_failures:
12+
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
13+
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
14+
15+
branches:
16+
only:
17+
- master
18+
- /release-.*/
19+
20+
notifications:
21+
- provider: Email
22+
on_build_success: false
23+
on_build_failure: false
24+
on_build_status_changed: false
25+
26+
install:
27+
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
28+
# If there's a newer build queued for the same PR, cancel this one
29+
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
30+
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
31+
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
32+
throw "There are newer queued builds for this pull request, failing early." }
33+
# Download most recent Julia Windows binary
34+
- ps: (new-object net.webclient).DownloadFile(
35+
$env:JULIA_URL,
36+
"C:\projects\julia-binary.exe")
37+
# Run installer silently, output to C:\projects\julia
38+
- C:\projects\julia-binary.exe /S /D=C:\projects\julia
39+
40+
build_script:
41+
# Need to convert from shallow to complete for Pkg.clone to work
42+
- IF EXIST .git\shallow (git fetch --unshallow)
43+
- C:\projects\julia\bin\julia -e "versioninfo();
44+
Pkg.clone(pwd(), \"FinancialModule\"); Pkg.build(\"FinancialModule\")"
45+
46+
test_script:
47+
- C:\projects\julia\bin\julia -e "Pkg.test(\"FinancialModule\")"

src/FinancialModule.jl

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module FinancialModule
2+
3+
# package code goes here
4+
5+
end # module

test/runtests.jl

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
using FinancialModule
2+
using Base.Test
3+
4+
# write your own tests here
5+
@test 1 == 2

0 commit comments

Comments
 (0)