Commit a99f52f7 authored by Nicolas Lenz's avatar Nicolas Lenz ❄️
Browse files

Update to new name

parent ef186f95
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
config/

# ---> Haskell
*.cabal
dist
dist-*
cabal-dev
+2 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ build:
  stage: build
  script:
    - stack build
    - cp $(stack path --dist-dir)/build/mock-telegram-bot/mock-telegram-bot .
    - cp $(stack path --dist-dir)/build/mock-bot-telegram/mock-bot-telegram .
  artifacts:
    paths:
      - mock-telegram-bot
      - mock-bot-telegram
+2 −2
Original line number Diff line number Diff line
# mock-telegram-bot
# mock-bot-telegram

tELegrAm bOT iNteGratiOn fOR [mOCK](https://git.eisfunke.com/software/mock)

```
stack build
stack -- exec mock-telegram-bot
stack -- exec mock-bot-telegram
```

[![WTFPL-Badge](wtfpl.png)](http://www.wtfpl.net)

mock-telegram-bot.cabal

deleted100644 → 0
+0 −42
Original line number Diff line number Diff line
cabal-version: 2.2

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 7a3dff0fdd818b0e6a8697eb3807dd245287be140a833da3f3031246b85f903b

name:           mock-telegram-bot
version:        0.2.0
synopsis:       tELegrAm bOT iNteGratiOn fOR mOCK
description:    Please see the README at <https://git.eisfunke.com/software/mock-telegram-bot#readme>
category:       Web
author:         Nicolas Lenz
maintainer:     nicolas@eisfunke.com
copyright:      2018 Nicolas Lenz
license:        WTFPL
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://git.eisfunke.com/software/mock-telegram-bot

executable mock-telegram-bot
  main-is: Main.hs
  other-modules:
      Paths_mock_telegram_bot
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base
    , cryptonite
    , memory
    , mock
    , mtl
    , telegram-bot-simple
    , text
  default-language: Haskell2010
+4 −4
Original line number Diff line number Diff line
name:                mock-telegram-bot
name:                mock-bot-telegram
version:             0.2.0
license:             WTFPL
git:                 "https://git.eisfunke.com/software/mock-telegram-bot"
git:                 "https://git.eisfunke.com/software/mock-bot-telegram"
author:              "Nicolas Lenz"
maintainer:          "nicolas@eisfunke.com"
copyright:           "2019 Nicolas Lenz"
@@ -11,7 +11,7 @@ extra-source-files:

synopsis:            tELegrAm bOT iNteGratiOn fOR mOCK
category:            Web
description:         Please see the README at <https://git.eisfunke.com/software/mock-telegram-bot#readme>
description:         Please see the README at <https://git.eisfunke.com/software/mock-bot-telegram#readme>

dependencies:
- base
@@ -23,7 +23,7 @@ dependencies:
- memory

executables:
  mock-telegram-bot:
  mock-bot-telegram:
    main:                Main.hs
    source-dirs:         app
    ghc-options:
Loading