mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
Init OCaml repository
This commit is contained in:
parent
e621073c02
commit
a204601429
1
ocaml/.ocamlformat
Normal file
1
ocaml/.ocamlformat
Normal file
@ -0,0 +1 @@
|
||||
profile = default
|
||||
19
ocaml/dune-project
Normal file
19
ocaml/dune-project
Normal file
@ -0,0 +1,19 @@
|
||||
(lang dune 3.11)
|
||||
(generate_opam_files true)
|
||||
|
||||
(name gilded_rose)
|
||||
(source
|
||||
(github emilybache/GildedRose-Refactoring-Kata))
|
||||
(authors "Maiste <dev@maiste.fr>")
|
||||
(maintainers "Maiste <dev@maiste.fr>")
|
||||
(license MIT)
|
||||
(documentation https://github.com/emilybache/GildedRose-Refactoring-Kata)
|
||||
|
||||
(package
|
||||
(name gilded_rose)
|
||||
(synopsis "Gilded Rose Refactoring Kata")
|
||||
(description "The Gilded Rose Refactoring Kata in OCaml")
|
||||
(depends
|
||||
(ocaml (>= 4.08))
|
||||
dune))
|
||||
|
||||
31
ocaml/gilded_rose.opam
Normal file
31
ocaml/gilded_rose.opam
Normal file
@ -0,0 +1,31 @@
|
||||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
synopsis: "Gilded Rose Refactoring Kata"
|
||||
description: "The Gilded Rose Refactoring Kata in OCaml"
|
||||
maintainer: ["Maiste <dev@maiste.fr>"]
|
||||
authors: ["Maiste <dev@maiste.fr>"]
|
||||
license: "MIT"
|
||||
homepage: "https://github.com/emilybache/GildedRose-Refactoring-Kata"
|
||||
doc: "https://github.com/emilybache/GildedRose-Refactoring-Kata"
|
||||
bug-reports:
|
||||
"https://github.com/emilybache/GildedRose-Refactoring-Kata/issues"
|
||||
depends: [
|
||||
"ocaml" {>= "4.08"}
|
||||
"dune" {>= "3.11"}
|
||||
"odoc" {with-doc}
|
||||
]
|
||||
build: [
|
||||
["dune" "subst"] {dev}
|
||||
[
|
||||
"dune"
|
||||
"build"
|
||||
"-p"
|
||||
name
|
||||
"-j"
|
||||
jobs
|
||||
"@install"
|
||||
"@runtest" {with-test}
|
||||
"@doc" {with-doc}
|
||||
]
|
||||
]
|
||||
dev-repo: "git+https://github.com/emilybache/GildedRose-Refactoring-Kata.git"
|
||||
2
ocaml/lib/dune
Normal file
2
ocaml/lib/dune
Normal file
@ -0,0 +1,2 @@
|
||||
(library
|
||||
(name gilded_rose))
|
||||
2
ocaml/test/dune
Normal file
2
ocaml/test/dune
Normal file
@ -0,0 +1,2 @@
|
||||
(test
|
||||
(name gilded_rose))
|
||||
0
ocaml/test/gilded_rose.ml
Normal file
0
ocaml/test/gilded_rose.ml
Normal file
Loading…
Reference in New Issue
Block a user