-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removing license checking for now. distribution with scarf
- Loading branch information
Showing
9 changed files
with
73 additions
and
46 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
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,9 @@ | ||
FROM debian:stretch | ||
|
||
RUN curl -L https://scarf.sh/install | bash | ||
|
||
ENV PATH $PATH:~/.scarf/bin | ||
|
||
RUN scarf install toodles | ||
|
||
CMD ["toodles","-d","/repo/"] |
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
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,10 +1,10 @@ | ||
name: toodles | ||
version: 1.1.1 | ||
version: 1.2.1 | ||
github: "aviaviavi/toodles" | ||
license: MIT | ||
author: "Avi Press" | ||
maintainer: "[email protected]" | ||
copyright: "2018 Avi Press" | ||
copyright: "2019 Avi Press" | ||
category: Project Management | ||
|
||
extra-source-files: | ||
|
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
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,36 @@ | ||
-- import scarf dhall definitions at the top | ||
-- then, you'll specify a list of distributions (one per platform) | ||
-- `URI` can point to a local tar archive or a remote one | ||
let platforms = ../scarf-server/scarf/example-packages/scarf.dhall | ||
|
||
in { name = | ||
"toodles" | ||
, author = | ||
"Avi Press" | ||
, copyright = | ||
"2019 Avi Press" | ||
, license = | ||
"MIT" | ||
, version = | ||
"1.2.1" | ||
, distributions = | ||
[ { platform = | ||
platforms.mac | ||
, simpleExecutableInstall = | ||
"toodles" | ||
, uri = | ||
"./toodles-1.2.1-mac.tar.gz" | ||
, includes = | ||
[ "web" ] | ||
} | ||
, { platform = | ||
platforms.linux_x86_64 | ||
, simpleExecutableInstall = | ||
"toodles" | ||
, uri = | ||
"./toodles-1.2.1-linux.tar.gz" | ||
, includes = | ||
[ "web" ] | ||
} | ||
] | ||
} |
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 |
---|---|---|
|
@@ -4,18 +4,18 @@ cabal-version: 1.12 | |
-- | ||
-- see: https://github.com/sol/hpack | ||
-- | ||
-- hash: bc494ef165b0b679287cc77c353f22a8bdd36eb0ab597a64bfc9c7180235ea7b | ||
-- hash: f1065a51b86ff48993a22be460338247dcf2d32b7beb90b72f0e4e23622d3f8c | ||
|
||
name: toodles | ||
version: 1.1.1 | ||
version: 1.2.1 | ||
synopsis: Manage the TODO entries in your code | ||
description: Toodles scrapes your entire repository for TODO entries and organizes them so you can manage your project directly from the code. View, filter, sort, and edit your TODO\'s with an easy to use web application. When you make changes via toodles, the edits will be applied directly the TODO entries in your code. When you\'re done, commit and push your changes to share them with your team! | ||
category: Project Management | ||
homepage: https://github.com/aviaviavi/toodles#readme | ||
bug-reports: https://github.com/aviaviavi/toodles/issues | ||
author: Avi Press | ||
maintainer: [email protected] | ||
copyright: 2018 Avi Press | ||
copyright: 2019 Avi Press | ||
license: MIT | ||
license-file: LICENSE | ||
build-type: Simple | ||
|
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
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