Skip to content

Commit 9f322e6

Browse files
committed
Set up package structure
1 parent eeaa092 commit 9f322e6

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The ArraysOfArrays.jl package is licensed under the MIT "Expat" License:
22

3-
> Copyright (c) 2018: Oliver Schulz.
3+
> Copyright (c) 2018: Oliver Schulz <[email protected]>
44
>
55
> Permission is hereby granted, free of charge, to any person obtaining a copy
66
> of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# ArraysOfArrays
1+
# ArraysOfArrays.jl

REQUIRE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
julia 0.6
2+
Compat 0.33

appveyor.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ environment:
1212
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
1313
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
1414

15-
branches:
16-
only:
17-
- master
18-
- /release-.*/
19-
2015
notifications:
2116
- provider: Email
2217
on_build_success: false

src/ArraysOfArrays.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# This file is a part of ArraysOfArrays.jl, licensed under the MIT License (MIT).
2+
3+
__precompile__(true)
4+
15
module ArraysOfArrays
26

37
# package code goes here

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using ArraysOfArrays
2-
using Base.Test
1+
# This file is a part of ArraysOfArrays.jl, licensed under the MIT License (MIT).
32

4-
# write your own tests here
5-
@test 1 == 2
3+
import Compat.Test
4+
Test.@testset "Package ArraysOfArrays" begin
5+
end

0 commit comments

Comments
 (0)