yesod-bin 1.4.3.4 → 1.4.3.5
raw patch · 3 files changed
+10/−4 lines, 3 files
Files
- AddHandler.hs +5/−3
- ChangeLog.md +4/−0
- yesod-bin.cabal +1/−1
AddHandler.hs view
@@ -83,17 +83,19 @@ (spaces, x') = span isSpace x fixRoutes :: String -> String -> String -> String -> String-fixRoutes name pattern methods =- (++ l)+fixRoutes name pattern methods fileContents =+ fileContents ++ l where l = concat- [ pattern+ [ startingCharacter+ , pattern , " " , name , "R " , methods , "\n" ]+ startingCharacter = if "\n" `isSuffixOf` fileContents then "" else "\n" mkHandler :: String -> String -> String -> String mkHandler name pattern methods = unlines
ChangeLog.md view
@@ -1,3 +1,7 @@+## 1.4.3.5++* Fix add-handler putting two routes on one line [#922](https://github.com/yesodweb/yesod/pull/922)+ ## 1.4.3.4 Scaffolding updates:
yesod-bin.cabal view
@@ -1,5 +1,5 @@ name: yesod-bin-version: 1.4.3.4+version: 1.4.3.5 license: MIT license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>