This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pid | running_time | client_addr | client_port | application_name | state | query | |
-------+------------------+--------------+-------------+------------------+---------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule MdToolbox.Api.SoapMethod do | |
alias __MODULE__ | |
alias MdToolbox.Api.Request | |
@doc "Builds the request from params" | |
@callback build_request(params :: list()) :: map() | |
@doc "Parses the request's response into data" | |
@callback parse_response(request :: Request.t()) :: Request.t() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
git checkout -b gh-temp | |
gulp build | |
echo '!public' >> .gitignore | |
git add -A | |
git commit -m "lib for gh-pages" | |
git subtree split --prefix public -b gh-pages | |
git push origin gh-pages --force | |
git checkout master | |
git branch -D gh-temp |