Skip to content

Commit 571392d

Browse files
author
Andre Van Der Merwe
committed
First draft version
0 parents  commit 571392d

13 files changed

+1260
-0
lines changed

.gitattributes

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*md text
2+
*.md text
3+
*.sh text
4+
*.markdown text
5+
.gitattributes text
6+
.gitignore text
7+
8+
* text=auto

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.stack-work/

DemoVirtualMachine.cabal

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: DemoVirtualMachine
2+
version: 0.1.0.0
3+
synopsis: Initial project template from stack
4+
description: Please see README.md
5+
homepage: https://github.com/githubuser/DemoVirtualMachine#readme
6+
license: MIT
7+
license-file: LICENSE
8+
author: Andre Van Der Merwe
9+
maintainer: [email protected]
10+
copyright: 2016 Andre Van Der Merwe
11+
category: Demo
12+
build-type: Simple
13+
-- extra-source-files:
14+
cabal-version: >=1.10
15+
16+
library
17+
hs-source-dirs: src
18+
exposed-modules: VirtualMachine
19+
build-depends: base >= 4.7 && < 5
20+
, protolude
21+
, text
22+
, containers
23+
default-language: Haskell2010
24+
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
25+
26+
executable DemoVirtualMachine-exe
27+
hs-source-dirs: app
28+
main-is: Main.hs
29+
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
30+
build-depends: base
31+
, DemoVirtualMachine
32+
, protolude
33+
, text
34+
, containers
35+
default-language: Haskell2010
36+
37+
test-suite DemoVirtualMachine-test
38+
type: exitcode-stdio-1.0
39+
hs-source-dirs: test
40+
main-is: Spec.hs
41+
build-depends: base
42+
, DemoVirtualMachine
43+
, protolude
44+
, hspec
45+
, containers
46+
, QuickCheck
47+
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
48+
default-language: Haskell2010
49+
50+
source-repository head
51+
type: git
52+
location: https://github.com/andrevdm/DemoVirtualMachine

LICENSE

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

0 commit comments

Comments
 (0)