renamed project to gemcap

It was brought to my attention that there is a rust package named gemserv. I changed the name to avoid any potential confusion.
This commit is contained in:
2021-11-17 13:15:36 -05:00
parent 735719aaa7
commit f751ccf191
8 changed files with 42 additions and 42 deletions

View File

@@ -1,6 +1,6 @@
{-
gemserv
gemcap
Cooyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
@@ -20,7 +20,7 @@ License along with this program. If not, see
-}
module Network.GemServ.InternalSpec (spec) where
module Network.Gemini.Capsule.InternalSpec (spec) where
import Test.Hspec (Spec, describe)

View File

@@ -1,6 +1,6 @@
{-
gemserv
gemcap
Cooyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
@@ -20,17 +20,17 @@ License along with this program. If not, see
-}
module Network.GemServSpec (spec) where
module Network.Gemini.CapsuleSpec (spec) where
import Test.Hspec (Spec, context, describe, it, shouldBe)
import qualified Network.GemServ.InternalSpec as Internal
import qualified Network.Gemini.Capsule.InternalSpec as Internal
import Network.GemServ
import Network.GemServ.Types
import Network.Gemini.Capsule
import Network.Gemini.Capsule.Types
spec :: Spec
spec = describe "Network.GemServ" $ do
spec = describe "Network.Gemini.Capsule" $ do
Internal.spec
encodeGemURLSpec
decodeGemURLSpec

View File

@@ -1,6 +1,6 @@
{-
gemserv
gemcap
Cooyright (C) Jonathan Lamothe <jonathan@jlamothe.net>
@@ -23,9 +23,9 @@ License along with this program. If not, see
module Main (main) where
import Test.Hspec (hspec)
import qualified Network.GemServSpec as GemServ
import qualified Network.Gemini.CapsuleSpec as GemCap
main :: IO ()
main = hspec GemServ.spec
main = hspec GemCap.spec
--jl