blergh everything is terrible

This commit is contained in:
Brendan Forster
2014-02-20 11:41:01 +11:00
parent 5106db8f17
commit 5e32c4e0ed
4 changed files with 19 additions and 0 deletions
@@ -205,11 +205,14 @@ namespace Octokit.Reactive
/// <returns>The updated <see cref="T:Octokit.Repository"/></returns>
IObservable<Repository> Edit(string owner, string name, RepositoryUpdate update);
/// <summary>
/// A client for GitHub's Repo Collaborators.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/repos/collaborators/">Collaborators API documentation</a> for more details
/// </remarks>
IObservableRepoCollaboratorsClient RepoCollaborators { get; }
IObservablePullRequestsClient PullRequest { get; }
}
}
@@ -23,6 +23,7 @@ namespace Octokit.Reactive
RepoCollaborators = new ObservableRepoCollaboratorsClient(client);
Deployment = new ObservableDeploymentsClient(client);
Statistics = new ObservableStatisticsClient(client);
PullRequest = new ObservablePullRequestsClient(client);
}
/// <summary>
@@ -318,11 +319,20 @@ namespace Octokit.Reactive
return _client.Edit(owner, name, update).ToObservable();
}
/// <summary>
/// A client for GitHub's Repo Collaborators.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/repos/collaborators/">Collaborators API documentation</a> for more details
/// </remarks>
public IObservableRepoCollaboratorsClient RepoCollaborators { get; private set; }
/// <summary>
/// Client for managing pull requests.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/pulls/">Pull Requests API documentation</a> for more details
/// </remarks>
public IObservablePullRequestsClient PullRequest { get; private set; }
}
}
+3
View File
@@ -17,6 +17,9 @@ namespace Octokit
/// <summary>
/// Client for managing pull requests.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/pulls/">Pull Requests API documentation</a> for more details
/// </remarks>
IPullRequestsClient PullRequest { get; }
/// <summary>
+3
View File
@@ -281,6 +281,9 @@ namespace Octokit
/// <summary>
/// Client for managing pull requests.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/pulls/">Pull Requests API documentation</a> for more details
/// </remarks>
public IPullRequestsClient PullRequest { get; private set; }
/// <summary>