├── .travis.yml ├── LICENSE ├── README.md ├── core └── src │ ├── main │ ├── contraband-scala │ │ └── gigahorse │ │ │ └── github │ │ │ └── response │ │ │ ├── Authorization.scala │ │ │ ├── AuthorizationFormats.scala │ │ │ ├── BlobRef.scala │ │ │ ├── BlobRefFormats.scala │ │ │ ├── CustomJsonProtocol.scala │ │ │ ├── GitBlob.scala │ │ │ ├── GitBlobFormats.scala │ │ │ ├── GitCommit.scala │ │ │ ├── GitCommitFormats.scala │ │ │ ├── GitObject.scala │ │ │ ├── GitObjectFormats.scala │ │ │ ├── GitRef.scala │ │ │ ├── GitRefFormats.scala │ │ │ ├── GitShaUrl.scala │ │ │ ├── GitShaUrlFormats.scala │ │ │ ├── GitTree.scala │ │ │ ├── GitTreeFormats.scala │ │ │ ├── GitTrees.scala │ │ │ ├── GitTreesFormats.scala │ │ │ ├── GitUser.scala │ │ │ ├── GitUserFormats.scala │ │ │ ├── Issue.scala │ │ │ ├── IssueFormats.scala │ │ │ ├── IssueState.scala │ │ │ ├── IssueStateFormats.scala │ │ │ ├── Label.scala │ │ │ ├── LabelFormats.scala │ │ │ ├── Milestone.scala │ │ │ ├── MilestoneFormats.scala │ │ │ ├── PullRequest.scala │ │ │ ├── PullRequestFormats.scala │ │ │ ├── Repo.scala │ │ │ ├── RepoFormats.scala │ │ │ ├── SearchTerm.scala │ │ │ ├── SearchTermFormats.scala │ │ │ ├── TextMatch.scala │ │ │ ├── TextMatchFormats.scala │ │ │ ├── TextMatches.scala │ │ │ ├── TextMatchesFormats.scala │ │ │ ├── User.scala │ │ │ └── UserFormats.scala │ ├── contraband │ │ └── responses.contra │ └── scala │ │ └── gigahorse │ │ └── github │ │ ├── Github.scala │ │ ├── auths.scala │ │ ├── mimes.scala │ │ ├── requests.scala │ │ ├── response │ │ └── Paged.scala │ │ └── show.scala │ └── test │ └── scala │ └── githubspec.scala ├── notes ├── 0.1.0.markdown └── about.markdown └── project ├── Dependecies.scala ├── build.properties └── plugins.sbt /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/README.md -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/Authorization.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/Authorization.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/AuthorizationFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/AuthorizationFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/BlobRef.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/BlobRef.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/BlobRefFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/BlobRefFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/CustomJsonProtocol.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/CustomJsonProtocol.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitBlob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitBlob.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitBlobFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitBlobFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitCommit.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitCommit.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitCommitFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitCommitFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitObject.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitObjectFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitObjectFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitRef.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitRef.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitRefFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitRefFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitShaUrl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitShaUrl.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitShaUrlFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitShaUrlFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitTree.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitTree.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitTreeFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitTreeFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitTrees.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitTrees.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitTreesFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitTreesFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitUser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitUser.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/GitUserFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/GitUserFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/Issue.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/Issue.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/IssueFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/IssueFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/IssueState.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/IssueState.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/IssueStateFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/IssueStateFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/Label.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/Label.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/LabelFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/LabelFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/Milestone.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/Milestone.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/MilestoneFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/MilestoneFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/PullRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/PullRequest.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/PullRequestFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/PullRequestFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/Repo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/Repo.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/RepoFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/RepoFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/SearchTerm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/SearchTerm.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/SearchTermFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/SearchTermFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/TextMatch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/TextMatch.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/TextMatchFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/TextMatchFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/TextMatches.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/TextMatches.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/TextMatchesFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/TextMatchesFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/User.scala -------------------------------------------------------------------------------- /core/src/main/contraband-scala/gigahorse/github/response/UserFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband-scala/gigahorse/github/response/UserFormats.scala -------------------------------------------------------------------------------- /core/src/main/contraband/responses.contra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/contraband/responses.contra -------------------------------------------------------------------------------- /core/src/main/scala/gigahorse/github/Github.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/scala/gigahorse/github/Github.scala -------------------------------------------------------------------------------- /core/src/main/scala/gigahorse/github/auths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/scala/gigahorse/github/auths.scala -------------------------------------------------------------------------------- /core/src/main/scala/gigahorse/github/mimes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/scala/gigahorse/github/mimes.scala -------------------------------------------------------------------------------- /core/src/main/scala/gigahorse/github/requests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/scala/gigahorse/github/requests.scala -------------------------------------------------------------------------------- /core/src/main/scala/gigahorse/github/response/Paged.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/scala/gigahorse/github/response/Paged.scala -------------------------------------------------------------------------------- /core/src/main/scala/gigahorse/github/show.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/main/scala/gigahorse/github/show.scala -------------------------------------------------------------------------------- /core/src/test/scala/githubspec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/core/src/test/scala/githubspec.scala -------------------------------------------------------------------------------- /notes/0.1.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/notes/0.1.0.markdown -------------------------------------------------------------------------------- /notes/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/notes/about.markdown -------------------------------------------------------------------------------- /project/Dependecies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/project/Dependecies.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.16-M1 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eed3si9n/gigahorse-github/HEAD/project/plugins.sbt --------------------------------------------------------------------------------