Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
tags
target
*.ibc
*.swp
elba.lock
20 changes: 20 additions & 0 deletions elba.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "vmchale/permutations"
version = "0.2.0"
authors = [ "Vanessa McHale" ]

[dev_dependencies]
"pheymann/specdris" = { git = "https://github.com/pheymann/specdris/" }

[targets.lib]
mods = [ "Control.Permutation"
, "Control.Permutation.Types"
, "Control.Permutation.Mod"
, "Control.Permutation.Proofs"
, "Data.Group"
]

[[targets.test]]
path = "src"
main = "Test.Spec.specSuite"
idris_opts = [ "-p", "contrib"]
2 changes: 2 additions & 0 deletions permutations.ipkg
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ author = Vanessa McHale
sourceloc = git://[email protected]:vmchale/permutations.git
bugtracker = http://www.github.com/vmchale/permutations/issues

sourcedir = src

modules = Control.Permutation,
Control.Permutation.Types,
Control.Permutation.Mod,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions test.ipkg
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ modules = Control.Permutation.Types
, Data.Group
, Test.Spec

sourcedir = src

tests = Test.Spec.specSuite