Skip to content

Commit

Permalink
feat(CLI): added first versions of all CLI
Browse files Browse the repository at this point in the history
That way, changes can be tracked.
Also, we make it official.

Future checkins will only be made if major changes were done,
similar to how the APIs are handled.

Related to #64
  • Loading branch information
Byron committed Apr 16, 2015
1 parent fa278a9 commit f5f12c5
Show file tree
Hide file tree
Showing 476 changed files with 190,441 additions and 1,038 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
.pyenv
.virtualenv
gen/doc/
gen/*-cli/
*.go
*.pyc
**target/
Expand Down
30 changes: 30 additions & 0 deletions gen/adexchangebuyer1d3-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# DO NOT EDIT !
# This file was generated automatically from 'src/mako/Cargo.toml.mako'
# DO NOT EDIT !
[package]

name = "google-adexchangebuyer1d3-cli"
version = "0.0.1+20150323"
authors = ["Sebastian Thiel <byronimo@gmail>"]
description = "A complete library to interact with Ad Exchange Buyer (protocol v1.3)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/adexchangebuyer1d3-cli"
homepage = "https://developers.google.com/ad-exchange/buyer-rest"
documentation = "http://byron.github.io/google-apis-rs/google_adexchangebuyer1d3_cli"
license = "MIT"
keywords = ["adexchangebuyer", "google", "cli"]

[[bin]]
name = "adexchangebuyer1d3"

[dependencies]
hyper = "*"
mime = "*"
yup-oauth2 = "*"
docopt = "= 0.6.59"
docopt_macros = "= 0.6.59"
rustc-serialize = "*"
serde = ">= 0.3.0"
serde_macros = "*"

[dependencies.google-adexchangebuyer1d3]
path = "../adexchangebuyer1d3"
30 changes: 30 additions & 0 deletions gen/adexchangebuyer1d3-cli/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!---
DO NOT EDIT !
This file was generated automatically from 'src/mako/LICENSE.md.mako'
DO NOT EDIT !
-->
The MIT License (MIT)
=====================

Copyright © `2015` `Sebastian Thiel`

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the “Software”), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
4 changes: 4 additions & 0 deletions gen/adexchangebuyer1d3-cli/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# HELLO ADEXCHANGEBUYER:V1.3


Include information about application secret files, and how we automatically write a default one.
37 changes: 37 additions & 0 deletions gen/adexchangebuyer1d3-cli/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
site_name: Ad Exchange Buyer v0.0.1+20150323
site_url: http://byron.github.io/google-apis-rs/google-adexchangebuyer1d3-cli
site_description: Write integrating applications with bcore

repo_url: https://github.com/Byron/google-apis-rs/tree/master/gen/adexchangebuyer1d3-cli

docs_dir: docs
site_dir: build_html

pages:
- ['index.md', 'Home']
- ['accounts_get.md', 'Accounts', 'Get']
- ['accounts_list.md', 'Accounts', 'List']
- ['accounts_patch.md', 'Accounts', 'Patch']
- ['accounts_update.md', 'Accounts', 'Update']
- ['billing-info_get.md', 'Billing Info', 'Get']
- ['billing-info_list.md', 'Billing Info', 'List']
- ['budget_get.md', 'Budget', 'Get']
- ['budget_patch.md', 'Budget', 'Patch']
- ['budget_update.md', 'Budget', 'Update']
- ['creatives_get.md', 'Creatives', 'Get']
- ['creatives_insert.md', 'Creatives', 'Insert']
- ['creatives_list.md', 'Creatives', 'List']
- ['direct-deals_get.md', 'Direct Deals', 'Get']
- ['direct-deals_list.md', 'Direct Deals', 'List']
- ['performance-report_list.md', 'Performance Report', 'List']
- ['pretargeting-config_delete.md', 'Pretargeting Config', 'Delete']
- ['pretargeting-config_get.md', 'Pretargeting Config', 'Get']
- ['pretargeting-config_insert.md', 'Pretargeting Config', 'Insert']
- ['pretargeting-config_list.md', 'Pretargeting Config', 'List']
- ['pretargeting-config_patch.md', 'Pretargeting Config', 'Patch']
- ['pretargeting-config_update.md', 'Pretargeting Config', 'Update']

theme: readthedocs

copyright: Copyright &copy; 2015, `Sebastian Thiel`

Loading

0 comments on commit f5f12c5

Please sign in to comment.