Skip to content

Commit

Permalink
fix(rename): mv youtube-rs to google-apis-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Mar 2, 2015
1 parent e3b6aee commit 11b6fe2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# DO NOT PUBLISH
# This library is just to try out the code that should ultimately go into the code generator !
[package]

name = "youtube3-dev"
version = "0.0.1"
authors = ["Sebastian Thiel <[email protected]>"]
description = "A library to facilitate interacting with your youtube account"
repository = "https://github.com/Byron/youtube-rs"
repository = "https://github.com/Byron/google-apis-rs"
license = "MIT"
keywords = ["youtube", "google", "protocol"]
keywords = ["youtube", "google", "protocol", "not-for-use"]

[dependencies]
# Just to get hyper to work !
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# TODO

* Adjust readme to reflect what this project actually is.

# Old youtube-specific readme

*The following is the previous youtube-specific writing, will have to think about how and if that should be integrated into the generated documentation.*

*Youtube* is a library written in Rust to help interacting with your youtube account.
For now, all functionality is geared towards allowing interruptible video uploads
and adjustments of video meta-data.
Expand Down
6 changes: 3 additions & 3 deletions etc/api/shared.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ api:
# output_dir: optional - not there if unset
cargo:
build_version: "0.0.1"
repo_base_url: https://github.com/Byron/youtube-rs
doc_base_url: http://byron.github.io/youtube-rs
repo_base_url: https://github.com/Byron/google-apis-rs
doc_base_url: http://byron.github.io/google-apis-rs
authors:
- Sebastian Thiel <byronimo@gmail>
keywords: [google, protocol, web, api]
# All APIs should live in the same repository
repository_url: https://github.com/Byron/youtube-rs
repository_url: https://github.com/Byron/google-apis-rs
File renamed without changes.
5 changes: 3 additions & 2 deletions src/mako/cargo.toml.mako
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<%! import util %>\
# DO NOT EDIT !
# This file was generated automatically by '${self.uri}'
# DO NOT EDIT !
[package]
name = "${name}${version[1:]}"
name = "${name}${util.to_api_version(version)}"
version = "${cargo.build_version}"
authors = [${",\n ".join('"%s"' % a for a in cargo.authors)}]
description = "A library to interact with ${canonicalName} (protocol ${version})"
description = "A complete library to interact with ${canonicalName} (protocol ${version})"
repository = "${cargo.repo_base_url}/${OUTPUT_DIR}"
homepage = "${documentationLink}"
documentation = "${cargo.doc_base_url}"
Expand Down

0 comments on commit 11b6fe2

Please sign in to comment.