servant-ruby 0.2.0.0 → 0.2.1.0
raw patch · 2 files changed
+5/−5 lines, 2 files
Files
- servant-ruby.cabal +1/−1
- src/Servant/Ruby.hs +4/−4
servant-ruby.cabal view
@@ -1,5 +1,5 @@ name: servant-ruby-version: 0.2.0.0+version: 0.2.1.0 synopsis: Generate a Ruby client from a Servant API with Net::HTTP. description: Generate a Ruby client from a Servant API with Net::HTTP. homepage: https://github.com/joneshf/servant-ruby#readme
src/Servant/Ruby.hs view
@@ -132,7 +132,7 @@ The request body and headers are translated into keyword arguments, in that order. ->>> let api = Proxy :: Proxy ("foo" :> Capture "fooId" Int :> ReqBody '[JSON] () :> QueryParam "bar" Bool :> Header "Max-Forwards" Int :> Post '[JSON] ())+>>> let api = Proxy :: Proxy ("foo" :> Capture "fooId" Int :> ReqBody '[JSON] () :> QueryParam "barId" Bool :> Header "Max-Forwards" Int :> Post '[JSON] ()) >>> Data.Text.IO.putStr $ ruby (NameSpace [] "Foo") api require "json" require "net/http"@@ -144,8 +144,8 @@ @http = Net::HTTP.new(@origin.host, @origin.port) end <BLANKLINE>- def post_foo_by_foo_id(foo_id, bar, body:, max_forwards:)- uri = URI("#{@origin}/foo/#{fooId}?bar=#{bar}")+ def post_foo_by_foo_id(foo_id, bar_id, body:, max_forwards:)+ uri = URI("#{@origin}/foo/#{foo_id}?barId=#{bar_id}") <BLANKLINE> req = Net::HTTP::Post.new(uri) req["Content-Type"] = "application/json"@@ -303,7 +303,7 @@ segmentTypeToStr :: SegmentType f -> Text segmentTypeToStr (Static s) = s ^. _PathSegment-segmentTypeToStr (Cap s) = "#{" <> s ^. argName._PathSegment <> "}"+segmentTypeToStr (Cap s) = "#{" <> s ^. argName._PathSegment.to snake <> "}" rbParams :: Text -> [QueryArg f] -> Text rbParams _ [] = ""