Skip to content

Commit d3c5538

Browse files
committed
Updates for 0.12
1 parent 163b1ba commit d3c5538

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"package.json"
1818
],
1919
"dependencies": {
20-
"purescript-generics": "^4.0.0"
20+
"purescript-either": "#compiler/0.12",
21+
"purescript-strings": "#compiler/0.12"
2122
}
2223
}

src/Data/HTTP/Method.purs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ module Data.HTTP.Method
99
import Prelude
1010

1111
import Data.Either (Either(..), either)
12-
import Data.Generic (class Generic)
1312
import Data.String as Str
1413

1514
data Method
@@ -37,7 +36,6 @@ data Method
3736

3837
derive instance eqMethod :: Eq Method
3938
derive instance ordMethod :: Ord Method
40-
derive instance genericMethod :: Generic Method
4139

4240
instance showMethod :: Show Method where
4341
show OPTIONS = "OPTIONS"
@@ -64,7 +62,6 @@ unCustomMethod (CustomMethod m) = m
6462

6563
derive instance eqCustomMethod :: Eq CustomMethod
6664
derive instance ordCustomMethod :: Ord CustomMethod
67-
derive instance genericCustomMethod :: Generic CustomMethod
6865

6966
instance showCustomMethod :: Show CustomMethod where
7067
show (CustomMethod m) = "(CustomMethod " <> show m <> ")"

0 commit comments

Comments
 (0)