forked from patricoferris/get-activity
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize the code and expose get-activity-lib
- Loading branch information
Showing
13 changed files
with
55 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
(executable | ||
(name main) | ||
(public_name get-activity) | ||
(package get-activity) | ||
(libraries cmdliner get-activity-lib)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
open Get_activity | ||
|
||
let ( / ) = Filename.concat | ||
|
||
let or_die = function | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
(lang dune 2.3) | ||
(lang dune 2.8) | ||
(name get-activity) | ||
(formatting disabled) | ||
(generate_opam_files true) | ||
(source (github tarides/get-activity)) | ||
(authors "[email protected]") | ||
(maintainers "Guillaume Petiot <[email protected]>") | ||
|
||
(package | ||
(name get-activity) | ||
(synopsis "Collect activity as markdown") | ||
(depends | ||
(cmdliner (>= 1.1.1)) | ||
get-activity (= :version))) | ||
|
||
(package | ||
(name get-activity-lib) | ||
(synopsis "Collect activity as markdown") | ||
(depends | ||
cohttp | ||
cohttp-lwt | ||
cohttp-lwt-unix | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Collect activity as markdown" | ||
maintainer: ["Guillaume Petiot <[email protected]>"] | ||
authors: ["[email protected]"] | ||
homepage: "https://github.com/tarides/get-activity" | ||
bug-reports: "https://github.com/tarides/get-activity/issues" | ||
depends: [ | ||
"dune" {>= "2.8"} | ||
"cohttp" | ||
"cohttp-lwt" | ||
"cohttp-lwt-unix" | ||
"yojson" | ||
"ocaml" {>= "4.08"} | ||
"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/tarides/get-activity.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,14 @@ authors: ["[email protected]"] | |
homepage: "https://github.com/tarides/get-activity" | ||
bug-reports: "https://github.com/tarides/get-activity/issues" | ||
depends: [ | ||
"dune" {>= "2.3"} | ||
"dune" {>= "2.8"} | ||
"cmdliner" {>= "1.1.1"} | ||
"cohttp" | ||
"cohttp-lwt" | ||
"cohttp-lwt-unix" | ||
"yojson" | ||
"ocaml" {>= "4.08"} | ||
"get-activity" | ||
"=" {version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
(library | ||
(name get_activity) | ||
(public_name get-activity-lib) | ||
(libraries cohttp cohttp-lwt cohttp-lwt-unix yojson)) |
File renamed without changes.
File renamed without changes.
File renamed without changes.