packages feed

bird 0.0.15 → 0.0.16

raw patch · 2 files changed

+5/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

bin/bird.hs view
@@ -65,7 +65,7 @@ configFile a =    "module " ++ a ++ ".Config where\n\n" ++   "import Bird\n\n" ++ -  "config :: BirdConfig" +++  "config :: BirdConfig\n" ++   "config = def\n"  mainFile a =@@ -98,7 +98,9 @@   "    Bird.PUT -> put $ path r\n" ++   "    Bird.DELETE -> delete $ path r\n\n" ++ -  "main = run app\n"+  "main = do\n" +++  "  putStrLn \"A bird was just spotted in flight at http://localhost:3000\"\n" +++  "  run app\n"  split :: Char -> String -> [String] split d s
bird.cabal view
@@ -1,5 +1,5 @@ Name:                 bird-Version:              0.0.15+Version:              0.0.16 Build-type:           Simple Synopsis:             A simple, sinatra-inspired web framework. Description:          Bird is a hack-compatible framework for simple websites.