You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+39-39Lines changed: 39 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,22 @@
1
1
<divalign="center">
2
-
<ahref="http://peter-murach.github.io/github/"><imgwidth="136"src="https://github.com/peter-murach/github/raw/master/icons/github_api.png"alt="github api logo" /></a>
2
+
<ahref="http://piotrmurach.github.io/github/"><imgwidth="136"src="https://github.com/piotrmurach/github/raw/master/icons/github_api.png"alt="github api logo" /></a>
The code base has been extensively documented with examples of how to use each method. Please refer to the [documentation](http://rubydoc.info/github/peter-murach/github/master/frames) under the `Github::Client` class name.
128
+
The code base has been extensively documented with examples of how to use each method. Please refer to the [documentation](http://rubydoc.info/github/piotrmurach/github/master/frames) under the `Github::Client` class name.
129
129
130
130
Alternatively, you can find out which methods are supported by an api by calling `actions` on a class or instance. For example, in order to find out available endpoints for `Github::Client::Repos::Contents` api call `actions` method:
131
131
@@ -140,10 +140,10 @@ The code base is modular. This means that you can work specifically with a given
Please refer to the [documentation](http://rubydoc.info/github/peter-murach/github/master/frames) and look under `Github::Client` to see all available classes.
146
+
Please refer to the [documentation](http://rubydoc.info/github/piotrmurach/github/master/frames) and look under `Github::Client` to see all available classes.
147
147
148
148
### 1.3 Arguments
149
149
@@ -153,34 +153,34 @@ Arguments can be passed directly inside the method called. The `required` argume
In the previous example, the order of arguments is important. However, each method also allows you to specify `required` arguments using hash symbols and thus remove the need for ordering. Therefore, the same example could be rewritten like so:
Please consult the method [documentation](http://rubydoc.info/github/peter-murach/github/master/frames) or [GitHub specification](https://developer.github.com/v3/) to see which arguments are required and what are the option parameters.
203
+
Please consult the method [documentation](http://rubydoc.info/github/piotrmurach/github/master/frames) or [GitHub specification](https://developer.github.com/v3/) to see which arguments are required and what are the option parameters.
204
204
205
205
### 1.4 Response Querying
206
206
@@ -210,7 +210,7 @@ For example, when request is issued to list all the branches on a given reposito
The `ResponseWrapper` allows you to call json attributes directly as method calls. there is no magic here, all calls are delegated to the response body. Therefore, you can directly inspect request body by calling `body` method on the `ResponseWrapper` like so:
@@ -229,7 +229,7 @@ response.body # => Array of branches
229
229
Each response comes packaged with methods allowing for inspection of HTTP start line and headers. For example, to check for rate limits and status codes do:
@@ -679,8 +679,8 @@ The `mock` tests are in the `spec` directory and their primary concern is to tes
679
679
680
680
## Development
681
681
682
-
Questions or problems? Please post them on the [issue tracker](https://github.com/peter-murach/github/issues). You can contribute changes by forking the project and submitting a pull request. You can ensure the tests are passing by running `bundle` and `rake`.
682
+
Questions or problems? Please post them on the [issue tracker](https://github.com/piotrmurach/github/issues). You can contribute changes by forking the project and submitting a pull request. You can ensure the tests are passing by running `bundle` and `rake`.
683
683
684
684
## Copyright
685
685
686
-
Copyright (c) 2011-2014 Piotr Murach. See LICENSE.txt for further details.
686
+
Copyright (c) 2011-2016 Piotr Murach. See LICENSE.txt for further details.
0 commit comments