name: reqcatcher version: 0.1.0.0 synopsis: A local http server to catch the HTTP redirect description: Manage an http server in your local PC to catch the HTTP redirect request from the browser. Especially, you can catch the redirect from oauth providor and will get oauth_verifier. homepage: http://github.com/hiratara/hs-reqcatcher license: BSD3 license-file: LICENSE author: Masahiro Honma maintainer: hiratara@cpan.org category: Web build-type: Simple cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Web.ReqCatcher build-depends: base >= 4.7 && < 4.9 , http-types >= 0.8 && < 1.0 , network >= 2.6 && < 2.7 , text >= 1.2 && < 1.3 , wai >= 3.0 && < 3.3 , warp >= 3.0 && < 3.3 default-language: Haskell2010 test-suite reqcatcher-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: reqcatcher-test.hs build-depends: base , http-client >= 0.4 && < 0.5 , http-types , HUnit >= 1.2 && < 1.4 , lens >= 4.7 && < 4.14 , reqcatcher , tasty >= 0.10 && < 0.12 , tasty-hunit >= 0.9 && < 1.0 , wai , wreq >= 0.3 && < 0.5 ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 source-repository head type: git location: https://github.com/hiratara/hs-reqcatcher