dancroak-le-git 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.textile CHANGED
@@ -9,11 +9,18 @@ h2. Example usage
9
9
  require 'rubygems'
10
10
  require 'le_git'
11
11
 
12
- user = Github::User.find "defunkt"
12
+ >> user = Github::User.find("dancroak")
13
+ => #<Github::User:0x110655c @followers=50, @location="Boston", @repos=18, @language="Ruby", @created=#<DateTime: 42413926183/17280,0,2299161>, type"user", fullname"Dan Croak", actions35, name"dancroak", pushed#<DateTime: 106054886255767/43200000,0,2299161, @username="dancroak", @score=3.8655705, @id="user-198">
14
+
15
+ >> repository = user.repositories.last
16
+ => #<Github::Repository:0x301100 @private=false, @forks=0, @url="http://github.com/dancroak/le-git", @homepage="", @watchers=1, @name="le-git", @description="Ruby wrapper for the GitHub API v2.", @fork=true, @owner="dancroak">
17
+
18
+ >> repository.commits.first
19
+ => #<Github::Commit:0x12db33c @message="updating Repository model to use v2 API. associated User & Repository models. filled out complete API for User.", @tree="d27ed042222fe8a55681e1af260e3eb2847e9f33", @url="http://github.com/dancroak/le-git/commit/1f0111c91344062052f65922171d220a06810d4a", @id="1f0111c91344062052f65922171d220a06810d4a">
13
20
 
14
21
  h2. Maintainers
15
22
 
16
23
  Running the test suite requires:
17
24
 
18
- sudo gem install happymapper fakeweb rcov jeremymcanally-context jeremymcanally-matchy jeremymcanally-pending thoughtbot-quietbacktrace redgreen
25
+ sudo gem install rest-client happymapper fakeweb jeremymcanally-context jeremymcanally-matchy jeremymcanally-pending thoughtbot-quietbacktrace redgreen rcov
19
26
 
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 0
4
- :patch: 3
4
+ :patch: 5
data/lib/le_git/commit.rb CHANGED
@@ -2,31 +2,14 @@ module Github
2
2
  class Commit
3
3
  include HappyMapper
4
4
 
5
- element :url, String
6
- element :tree, String
7
5
  element :message, String
6
+ element :url, String
8
7
  element :id, String
8
+ element :tree, String
9
9
 
10
- def self.find(username, repository, hash_or_all)
11
- case hash_or_all
12
- when :all
13
- self.find_all username, repository
14
- else
15
- self.find_by_hash username, repository, hash_or_all
16
- end
17
- end
18
-
19
- protected
20
-
21
- def self.find_all(username, repository)
22
- xml = RestClient.get("http://github.com/api/v1/xml/#{username}/#{repository}/commits/master")
10
+ def self.master(repo_owner, repo_name)
11
+ xml = RestClient.get("http://github.com/api/v2/xml/commits/list/#{repo_owner}/#{repo_name}/master")
23
12
  parse(xml)
24
13
  end
25
-
26
- def self.find_by_hash(username, repository, hash)
27
- xml = RestClient.get("http://github.com/api/v1/xml/#{username}/#{repository}/commit/#{hash}")
28
- commits = parse(xml)
29
- commits.first
30
- end
31
14
  end
32
15
  end
@@ -16,5 +16,9 @@ module Github
16
16
  xml = RestClient.get("http://github.com/api/v2/xml/repos/show/#{name}")
17
17
  parse(xml)
18
18
  end
19
+
20
+ def commits(branch = "master")
21
+ Github::Commit.master(owner, name)
22
+ end
19
23
  end
20
24
  end
@@ -0,0 +1,633 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <commits type="array">
3
+ <commit>
4
+ <message>updating Repository model to use v2 API. associated User &amp; Repository models. filled out complete API for User.</message>
5
+ <parents type="array">
6
+ <parent>
7
+ <id>690c79a261ed5b078c08742b796cb3056f685698</id>
8
+ </parent>
9
+ </parents>
10
+ <url>http://github.com/dancroak/le-git/commit/1f0111c91344062052f65922171d220a06810d4a</url>
11
+ <author>
12
+ <name>Dan Croak</name>
13
+ <email>dcroak@thoughtbot.com</email>
14
+ </author>
15
+ <id>1f0111c91344062052f65922171d220a06810d4a</id>
16
+ <committed-date>2009-05-25T19:11:27-07:00</committed-date>
17
+ <authored-date>2009-05-25T19:11:27-07:00</authored-date>
18
+ <tree>d27ed042222fe8a55681e1af260e3eb2847e9f33</tree>
19
+ <committer>
20
+ <name>Dan Croak</name>
21
+ <email>dcroak@thoughtbot.com</email>
22
+ </committer>
23
+ </commit>
24
+ <commit>
25
+ <message>Version bump to 0.0.3</message>
26
+ <parents type="array">
27
+ <parent>
28
+ <id>d2e18e210dcf695318281edffacd5c08d0e7807a</id>
29
+ </parent>
30
+ </parents>
31
+ <url>http://github.com/dancroak/le-git/commit/690c79a261ed5b078c08742b796cb3056f685698</url>
32
+ <author>
33
+ <name>Dan Croak</name>
34
+ <email>dcroak@thoughtbot.com</email>
35
+ </author>
36
+ <id>690c79a261ed5b078c08742b796cb3056f685698</id>
37
+ <committed-date>2009-05-25T19:10:38-07:00</committed-date>
38
+ <authored-date>2009-05-25T19:10:38-07:00</authored-date>
39
+ <tree>e4050ad8156d4008c0c467a7612603558c49eebf</tree>
40
+ <committer>
41
+ <name>Dan Croak</name>
42
+ <email>dcroak@thoughtbot.com</email>
43
+ </committer>
44
+ </commit>
45
+ <commit>
46
+ <message>user model now working with basic v2 API mapping</message>
47
+ <parents type="array">
48
+ <parent>
49
+ <id>f7dbf5a92d52a9032514a48aa8ae51cea7292546</id>
50
+ </parent>
51
+ </parents>
52
+ <url>http://github.com/dancroak/le-git/commit/d2e18e210dcf695318281edffacd5c08d0e7807a</url>
53
+ <author>
54
+ <name>Dan Croak</name>
55
+ <email>dcroak@thoughtbot.com</email>
56
+ </author>
57
+ <id>d2e18e210dcf695318281edffacd5c08d0e7807a</id>
58
+ <committed-date>2009-05-25T18:24:55-07:00</committed-date>
59
+ <authored-date>2009-05-25T18:24:55-07:00</authored-date>
60
+ <tree>b66caf919e88a8c6f0eb10fb448c309d9252db19</tree>
61
+ <committer>
62
+ <name>Dan Croak</name>
63
+ <email>dcroak@thoughtbot.com</email>
64
+ </committer>
65
+ </commit>
66
+ <commit>
67
+ <message>Version bump to 0.0.2</message>
68
+ <parents type="array">
69
+ <parent>
70
+ <id>5d8448609cf4c531bd27358c5251f0b5e8c841b1</id>
71
+ </parent>
72
+ </parents>
73
+ <url>http://github.com/dancroak/le-git/commit/f7dbf5a92d52a9032514a48aa8ae51cea7292546</url>
74
+ <author>
75
+ <name>Dan Croak</name>
76
+ <email>dcroak@thoughtbot.com</email>
77
+ </author>
78
+ <id>f7dbf5a92d52a9032514a48aa8ae51cea7292546</id>
79
+ <committed-date>2009-05-25T18:24:17-07:00</committed-date>
80
+ <authored-date>2009-05-25T18:24:17-07:00</authored-date>
81
+ <tree>7383039c8722dbf3efdc621a1e1be5a9653feff0</tree>
82
+ <committer>
83
+ <name>Dan Croak</name>
84
+ <email>dcroak@thoughtbot.com</email>
85
+ </committer>
86
+ </commit>
87
+ <commit>
88
+ <message>generated gemspec</message>
89
+ <parents type="array">
90
+ <parent>
91
+ <id>b5a436606dde4de7ab250c8f130e2268b3ad7387</id>
92
+ </parent>
93
+ </parents>
94
+ <url>http://github.com/dancroak/le-git/commit/5d8448609cf4c531bd27358c5251f0b5e8c841b1</url>
95
+ <author>
96
+ <name>Dan Croak</name>
97
+ <email>dcroak@thoughtbot.com</email>
98
+ </author>
99
+ <id>5d8448609cf4c531bd27358c5251f0b5e8c841b1</id>
100
+ <committed-date>2009-05-25T18:04:49-07:00</committed-date>
101
+ <authored-date>2009-05-25T18:04:49-07:00</authored-date>
102
+ <tree>c95c34ee48658ef527f556d8211987b3f958f2ec</tree>
103
+ <committer>
104
+ <name>Dan Croak</name>
105
+ <email>dcroak@thoughtbot.com</email>
106
+ </committer>
107
+ </commit>
108
+ <commit>
109
+ <message>Version bump to 0.0.1</message>
110
+ <parents type="array">
111
+ <parent>
112
+ <id>edbfb1015e1a0227324d44c90261bfb055a80774</id>
113
+ </parent>
114
+ </parents>
115
+ <url>http://github.com/dancroak/le-git/commit/b5a436606dde4de7ab250c8f130e2268b3ad7387</url>
116
+ <author>
117
+ <name>Dan Croak</name>
118
+ <email>dcroak@thoughtbot.com</email>
119
+ </author>
120
+ <id>b5a436606dde4de7ab250c8f130e2268b3ad7387</id>
121
+ <committed-date>2009-05-25T18:04:40-07:00</committed-date>
122
+ <authored-date>2009-05-25T18:04:40-07:00</authored-date>
123
+ <tree>50e08c69ab26ae6e40fce015e61834a62bdbed46</tree>
124
+ <committer>
125
+ <name>Dan Croak</name>
126
+ <email>dcroak@thoughtbot.com</email>
127
+ </committer>
128
+ </commit>
129
+ <commit>
130
+ <message>reviewed all files. updated name to le git. updated README to include laundry list of needed gems. got tests running (but failing).</message>
131
+ <parents type="array">
132
+ <parent>
133
+ <id>0f4ea3c42320e9abb4d1e492c578dcce0894e43a</id>
134
+ </parent>
135
+ </parents>
136
+ <url>http://github.com/dancroak/le-git/commit/edbfb1015e1a0227324d44c90261bfb055a80774</url>
137
+ <author>
138
+ <name>Dan Croak</name>
139
+ <email>dcroak@thoughtbot.com</email>
140
+ </author>
141
+ <id>edbfb1015e1a0227324d44c90261bfb055a80774</id>
142
+ <committed-date>2009-05-25T18:04:07-07:00</committed-date>
143
+ <authored-date>2009-05-25T18:04:07-07:00</authored-date>
144
+ <tree>cf5c6d1eea52ea480d30deca0cce85b0a960bbdb</tree>
145
+ <committer>
146
+ <name>Dan Croak</name>
147
+ <email>dcroak@thoughtbot.com</email>
148
+ </committer>
149
+ </commit>
150
+ <commit>
151
+ <message>Version bump to 0.0.0</message>
152
+ <parents type="array">
153
+ <parent>
154
+ <id>26f8a92b43d9b859532c99ced1bc02f49f6a6c70</id>
155
+ </parent>
156
+ </parents>
157
+ <url>http://github.com/dancroak/le-git/commit/0f4ea3c42320e9abb4d1e492c578dcce0894e43a</url>
158
+ <author>
159
+ <name>Dan Croak</name>
160
+ <email>dcroak@thoughtbot.com</email>
161
+ </author>
162
+ <id>0f4ea3c42320e9abb4d1e492c578dcce0894e43a</id>
163
+ <committed-date>2009-05-25T17:41:17-07:00</committed-date>
164
+ <authored-date>2009-05-25T17:41:17-07:00</authored-date>
165
+ <tree>a7b10c420541b9b4d0b5d637b87f1b922e56595c</tree>
166
+ <committer>
167
+ <name>Dan Croak</name>
168
+ <email>dcroak@thoughtbot.com</email>
169
+ </committer>
170
+ </commit>
171
+ <commit>
172
+ <message>Regenerated gemspec for version 0.1.0</message>
173
+ <parents type="array">
174
+ <parent>
175
+ <id>37cacb579f482b4c074b25becd9093def591c5d6</id>
176
+ </parent>
177
+ </parents>
178
+ <url>http://github.com/dancroak/le-git/commit/26f8a92b43d9b859532c99ced1bc02f49f6a6c70</url>
179
+ <author>
180
+ <name>Josh Nichols</name>
181
+ <email>josh@technicalpickles.com</email>
182
+ </author>
183
+ <id>26f8a92b43d9b859532c99ced1bc02f49f6a6c70</id>
184
+ <committed-date>2009-01-19T22:18:34-08:00</committed-date>
185
+ <authored-date>2009-01-19T22:18:34-08:00</authored-date>
186
+ <tree>97fb66e66f3f7dab258b1345be70e90e3957a59f</tree>
187
+ <committer>
188
+ <name>Josh Nichols</name>
189
+ <email>josh@technicalpickles.com</email>
190
+ </committer>
191
+ </commit>
192
+ <commit>
193
+ <message>Updated README.</message>
194
+ <parents type="array">
195
+ <parent>
196
+ <id>f933f9e14f78f2ed93b3d94484ab3ad09a29ce1d</id>
197
+ </parent>
198
+ </parents>
199
+ <url>http://github.com/dancroak/le-git/commit/37cacb579f482b4c074b25becd9093def591c5d6</url>
200
+ <author>
201
+ <name>Josh Nichols</name>
202
+ <email>josh@technicalpickles.com</email>
203
+ </author>
204
+ <id>37cacb579f482b4c074b25becd9093def591c5d6</id>
205
+ <committed-date>2009-01-19T22:18:29-08:00</committed-date>
206
+ <authored-date>2009-01-19T22:18:29-08:00</authored-date>
207
+ <tree>bf9a7a4684bdae7ac753a59aa5215cdfd4fbcdf4</tree>
208
+ <committer>
209
+ <name>Josh Nichols</name>
210
+ <email>josh@technicalpickles.com</email>
211
+ </committer>
212
+ </commit>
213
+ <commit>
214
+ <message>Added README</message>
215
+ <parents type="array">
216
+ <parent>
217
+ <id>a7cf7813b40e7060c4681707e91f85f81444ef1d</id>
218
+ </parent>
219
+ </parents>
220
+ <url>http://github.com/dancroak/le-git/commit/f933f9e14f78f2ed93b3d94484ab3ad09a29ce1d</url>
221
+ <author>
222
+ <name>Josh Nichols</name>
223
+ <email>josh@technicalpickles.com</email>
224
+ </author>
225
+ <id>f933f9e14f78f2ed93b3d94484ab3ad09a29ce1d</id>
226
+ <committed-date>2009-01-19T22:17:03-08:00</committed-date>
227
+ <authored-date>2009-01-19T22:17:03-08:00</authored-date>
228
+ <tree>16b062f0a6cb8ba57b949b89c88d339b0343e76a</tree>
229
+ <committer>
230
+ <name>Josh Nichols</name>
231
+ <email>josh@technicalpickles.com</email>
232
+ </committer>
233
+ </commit>
234
+ <commit>
235
+ <message>Ignore pkg.</message>
236
+ <parents type="array">
237
+ <parent>
238
+ <id>2bc60898ec5f3634dcdc98167cfa1b25628de2fa</id>
239
+ </parent>
240
+ </parents>
241
+ <url>http://github.com/dancroak/le-git/commit/a7cf7813b40e7060c4681707e91f85f81444ef1d</url>
242
+ <author>
243
+ <name>Josh Nichols</name>
244
+ <email>josh@technicalpickles.com</email>
245
+ </author>
246
+ <id>a7cf7813b40e7060c4681707e91f85f81444ef1d</id>
247
+ <committed-date>2009-01-19T22:03:45-08:00</committed-date>
248
+ <authored-date>2009-01-19T22:03:45-08:00</authored-date>
249
+ <tree>bae183f1a8f6ac283283e1548562a47033a3557c</tree>
250
+ <committer>
251
+ <name>Josh Nichols</name>
252
+ <email>josh@technicalpickles.com</email>
253
+ </committer>
254
+ </commit>
255
+ <commit>
256
+ <message>Version bump to 0.1.0</message>
257
+ <parents type="array">
258
+ <parent>
259
+ <id>fa5e220706847f2534f7b69f73354839ba6ede49</id>
260
+ </parent>
261
+ </parents>
262
+ <url>http://github.com/dancroak/le-git/commit/2bc60898ec5f3634dcdc98167cfa1b25628de2fa</url>
263
+ <author>
264
+ <name>Josh Nichols</name>
265
+ <email>josh@technicalpickles.com</email>
266
+ </author>
267
+ <id>2bc60898ec5f3634dcdc98167cfa1b25628de2fa</id>
268
+ <committed-date>2009-01-19T22:03:26-08:00</committed-date>
269
+ <authored-date>2009-01-19T22:03:26-08:00</authored-date>
270
+ <tree>aff644ba74f4737dc70b41ea7191d2c8676b7e07</tree>
271
+ <committer>
272
+ <name>Josh Nichols</name>
273
+ <email>josh@technicalpickles.com</email>
274
+ </committer>
275
+ </commit>
276
+ <commit>
277
+ <message>Updated gemspec to add dependencies.</message>
278
+ <parents type="array">
279
+ <parent>
280
+ <id>241f33a0e934c39b94771c252cf028a59041d601</id>
281
+ </parent>
282
+ </parents>
283
+ <url>http://github.com/dancroak/le-git/commit/fa5e220706847f2534f7b69f73354839ba6ede49</url>
284
+ <author>
285
+ <name>Josh Nichols</name>
286
+ <email>josh@technicalpickles.com</email>
287
+ </author>
288
+ <id>fa5e220706847f2534f7b69f73354839ba6ede49</id>
289
+ <committed-date>2009-01-19T22:02:59-08:00</committed-date>
290
+ <authored-date>2009-01-19T22:02:59-08:00</authored-date>
291
+ <tree>073aa94d228391367a67eb5237a9744f4a0e5bb4</tree>
292
+ <committer>
293
+ <name>Josh Nichols</name>
294
+ <email>josh@technicalpickles.com</email>
295
+ </committer>
296
+ </commit>
297
+ <commit>
298
+ <message>Changed references from id to hash</message>
299
+ <parents type="array">
300
+ <parent>
301
+ <id>faaa5860160db8af2a0e5116e601ff5156f48650</id>
302
+ </parent>
303
+ </parents>
304
+ <url>http://github.com/dancroak/le-git/commit/241f33a0e934c39b94771c252cf028a59041d601</url>
305
+ <author>
306
+ <name>Josh Nichols</name>
307
+ <email>josh@technicalpickles.com</email>
308
+ </author>
309
+ <id>241f33a0e934c39b94771c252cf028a59041d601</id>
310
+ <committed-date>2009-01-19T21:58:15-08:00</committed-date>
311
+ <authored-date>2009-01-19T21:58:15-08:00</authored-date>
312
+ <tree>07ff4bc435444b2c892d53e384bf11cbc8be711e</tree>
313
+ <committer>
314
+ <name>Josh Nichols</name>
315
+ <email>josh@technicalpickles.com</email>
316
+ </committer>
317
+ </commit>
318
+ <commit>
319
+ <message>Unified interface for finding commits.</message>
320
+ <parents type="array">
321
+ <parent>
322
+ <id>444c8acc9036e1a42e6a04d11eecb55b9eae8ca1</id>
323
+ </parent>
324
+ </parents>
325
+ <url>http://github.com/dancroak/le-git/commit/faaa5860160db8af2a0e5116e601ff5156f48650</url>
326
+ <author>
327
+ <name>Josh Nichols</name>
328
+ <email>josh@technicalpickles.com</email>
329
+ </author>
330
+ <id>faaa5860160db8af2a0e5116e601ff5156f48650</id>
331
+ <committed-date>2009-01-19T21:51:25-08:00</committed-date>
332
+ <authored-date>2009-01-19T21:51:25-08:00</authored-date>
333
+ <tree>3730da8271799a4d15ec710002f03e9e4612ed49</tree>
334
+ <committer>
335
+ <name>Josh Nichols</name>
336
+ <email>josh@technicalpickles.com</email>
337
+ </committer>
338
+ </commit>
339
+ <commit>
340
+ <message>Implemented Commit#for_repository</message>
341
+ <parents type="array">
342
+ <parent>
343
+ <id>1f9a076c61dcd075f4ca4bb7414d43e555293f07</id>
344
+ </parent>
345
+ </parents>
346
+ <url>http://github.com/dancroak/le-git/commit/444c8acc9036e1a42e6a04d11eecb55b9eae8ca1</url>
347
+ <author>
348
+ <name>Josh Nichols</name>
349
+ <email>josh@technicalpickles.com</email>
350
+ </author>
351
+ <id>444c8acc9036e1a42e6a04d11eecb55b9eae8ca1</id>
352
+ <committed-date>2009-01-19T21:37:20-08:00</committed-date>
353
+ <authored-date>2009-01-19T21:37:20-08:00</authored-date>
354
+ <tree>4b398d8f0bef18f270c884be8f02ffbfa1fa0014</tree>
355
+ <committer>
356
+ <name>Josh Nichols</name>
357
+ <email>josh@technicalpickles.com</email>
358
+ </committer>
359
+ </commit>
360
+ <commit>
361
+ <message>Added some pending tests for commits.</message>
362
+ <parents type="array">
363
+ <parent>
364
+ <id>dd72271397a25de4416121fc112f8cf7fb135cd2</id>
365
+ </parent>
366
+ </parents>
367
+ <url>http://github.com/dancroak/le-git/commit/1f9a076c61dcd075f4ca4bb7414d43e555293f07</url>
368
+ <author>
369
+ <name>Josh Nichols</name>
370
+ <email>josh@technicalpickles.com</email>
371
+ </author>
372
+ <id>1f9a076c61dcd075f4ca4bb7414d43e555293f07</id>
373
+ <committed-date>2009-01-19T21:12:35-08:00</committed-date>
374
+ <authored-date>2009-01-19T21:12:35-08:00</authored-date>
375
+ <tree>90ead8716a2e430c52c4a5ca076822d17b1d0541</tree>
376
+ <committer>
377
+ <name>Josh Nichols</name>
378
+ <email>josh@technicalpickles.com</email>
379
+ </committer>
380
+ </commit>
381
+ <commit>
382
+ <message>Added tags to ignore.</message>
383
+ <parents type="array">
384
+ <parent>
385
+ <id>5cff563701435348832d084b77dfdf35282d97c5</id>
386
+ </parent>
387
+ </parents>
388
+ <url>http://github.com/dancroak/le-git/commit/dd72271397a25de4416121fc112f8cf7fb135cd2</url>
389
+ <author>
390
+ <name>Josh Nichols</name>
391
+ <email>josh@technicalpickles.com</email>
392
+ </author>
393
+ <id>dd72271397a25de4416121fc112f8cf7fb135cd2</id>
394
+ <committed-date>2009-01-19T20:11:45-08:00</committed-date>
395
+ <authored-date>2009-01-19T20:11:45-08:00</authored-date>
396
+ <tree>2de3e0963d5c5bbd077f9d5bfe7218db5eb892d5</tree>
397
+ <committer>
398
+ <name>Josh Nichols</name>
399
+ <email>josh@technicalpickles.com</email>
400
+ </committer>
401
+ </commit>
402
+ <commit>
403
+ <message>Started implementing commits</message>
404
+ <parents type="array">
405
+ <parent>
406
+ <id>d6701c9ba1ec55630b4446d36db0a44e57f7e6c1</id>
407
+ </parent>
408
+ </parents>
409
+ <url>http://github.com/dancroak/le-git/commit/5cff563701435348832d084b77dfdf35282d97c5</url>
410
+ <author>
411
+ <name>Josh Nichols</name>
412
+ <email>josh@technicalpickles.com</email>
413
+ </author>
414
+ <id>5cff563701435348832d084b77dfdf35282d97c5</id>
415
+ <committed-date>2009-01-19T20:11:19-08:00</committed-date>
416
+ <authored-date>2009-01-19T20:11:19-08:00</authored-date>
417
+ <tree>c44ab5987fefd35d25d9d206d569664bcf46d840</tree>
418
+ <committer>
419
+ <name>Josh Nichols</name>
420
+ <email>josh@technicalpickles.com</email>
421
+ </committer>
422
+ </commit>
423
+ <commit>
424
+ <message>Removed old require</message>
425
+ <parents type="array">
426
+ <parent>
427
+ <id>d9805ac9c43b24c7a1301a227961878d0aa075d8</id>
428
+ </parent>
429
+ </parents>
430
+ <url>http://github.com/dancroak/le-git/commit/d6701c9ba1ec55630b4446d36db0a44e57f7e6c1</url>
431
+ <author>
432
+ <name>Josh Nichols</name>
433
+ <email>josh@technicalpickles.com</email>
434
+ </author>
435
+ <id>d6701c9ba1ec55630b4446d36db0a44e57f7e6c1</id>
436
+ <committed-date>2009-01-19T19:39:41-08:00</committed-date>
437
+ <authored-date>2009-01-19T19:39:41-08:00</authored-date>
438
+ <tree>dc065751c2378d81f670a8ea03bf93174ef5fffe</tree>
439
+ <committer>
440
+ <name>Josh Nichols</name>
441
+ <email>josh@technicalpickles.com</email>
442
+ </committer>
443
+ </commit>
444
+ <commit>
445
+ <message>Removed old files.</message>
446
+ <parents type="array">
447
+ <parent>
448
+ <id>372ba35b5a7ced5d32cf9e1b5931ecef267a5332</id>
449
+ </parent>
450
+ </parents>
451
+ <url>http://github.com/dancroak/le-git/commit/d9805ac9c43b24c7a1301a227961878d0aa075d8</url>
452
+ <author>
453
+ <name>Josh Nichols</name>
454
+ <email>josh@technicalpickles.com</email>
455
+ </author>
456
+ <id>d9805ac9c43b24c7a1301a227961878d0aa075d8</id>
457
+ <committed-date>2009-01-19T19:39:09-08:00</committed-date>
458
+ <authored-date>2009-01-19T19:39:09-08:00</authored-date>
459
+ <tree>8986ff5908b7b49f9268a70adbe70a24bf166ecb</tree>
460
+ <committer>
461
+ <name>Josh Nichols</name>
462
+ <email>josh@technicalpickles.com</email>
463
+ </committer>
464
+ </commit>
465
+ <commit>
466
+ <message>Moved search_repositories to Repository#search and user to User#find</message>
467
+ <parents type="array">
468
+ <parent>
469
+ <id>528edec05a91df9a34635cdfc3dd71bbe8c974d6</id>
470
+ </parent>
471
+ </parents>
472
+ <url>http://github.com/dancroak/le-git/commit/372ba35b5a7ced5d32cf9e1b5931ecef267a5332</url>
473
+ <author>
474
+ <name>Josh Nichols</name>
475
+ <email>josh@technicalpickles.com</email>
476
+ </author>
477
+ <id>372ba35b5a7ced5d32cf9e1b5931ecef267a5332</id>
478
+ <committed-date>2009-01-19T19:36:19-08:00</committed-date>
479
+ <authored-date>2009-01-19T19:36:19-08:00</authored-date>
480
+ <tree>13d7b36d1efd49f21effcb58c8ac58c75f54f9a9</tree>
481
+ <committer>
482
+ <name>Josh Nichols</name>
483
+ <email>josh@technicalpickles.com</email>
484
+ </committer>
485
+ </commit>
486
+ <commit>
487
+ <message>Support repository search</message>
488
+ <parents type="array">
489
+ <parent>
490
+ <id>d2b99c9e5712598b1675464f954ee0b02084e393</id>
491
+ </parent>
492
+ </parents>
493
+ <url>http://github.com/dancroak/le-git/commit/528edec05a91df9a34635cdfc3dd71bbe8c974d6</url>
494
+ <author>
495
+ <name>Josh Nichols</name>
496
+ <email>josh@technicalpickles.com</email>
497
+ </author>
498
+ <id>528edec05a91df9a34635cdfc3dd71bbe8c974d6</id>
499
+ <committed-date>2009-01-19T19:21:01-08:00</committed-date>
500
+ <authored-date>2009-01-19T19:21:01-08:00</authored-date>
501
+ <tree>ec2f94ce73976ce1bfb3b34c46c26838d33990f1</tree>
502
+ <committer>
503
+ <name>Josh Nichols</name>
504
+ <email>josh@technicalpickles.com</email>
505
+ </committer>
506
+ </commit>
507
+ <commit>
508
+ <message>Added repository</message>
509
+ <parents type="array">
510
+ <parent>
511
+ <id>f4447ff966db02b3249a8310022a62e2814b7b5a</id>
512
+ </parent>
513
+ </parents>
514
+ <url>http://github.com/dancroak/le-git/commit/d2b99c9e5712598b1675464f954ee0b02084e393</url>
515
+ <author>
516
+ <name>Josh Nichols</name>
517
+ <email>josh@technicalpickles.com</email>
518
+ </author>
519
+ <id>d2b99c9e5712598b1675464f954ee0b02084e393</id>
520
+ <committed-date>2009-01-19T19:08:16-08:00</committed-date>
521
+ <authored-date>2009-01-19T19:08:16-08:00</authored-date>
522
+ <tree>7702eae1d66b37902dd937aeccb53cc687e40617</tree>
523
+ <committer>
524
+ <name>Josh Nichols</name>
525
+ <email>josh@technicalpickles.com</email>
526
+ </committer>
527
+ </commit>
528
+ <commit>
529
+ <message>Working using HappyMapper and RestClient.</message>
530
+ <parents type="array">
531
+ <parent>
532
+ <id>68bdb6e3451012f3c386f10dfec0e47dd6f3bf34</id>
533
+ </parent>
534
+ </parents>
535
+ <url>http://github.com/dancroak/le-git/commit/f4447ff966db02b3249a8310022a62e2814b7b5a</url>
536
+ <author>
537
+ <name>Josh Nichols</name>
538
+ <email>josh@technicalpickles.com</email>
539
+ </author>
540
+ <id>f4447ff966db02b3249a8310022a62e2814b7b5a</id>
541
+ <committed-date>2009-01-19T19:00:44-08:00</committed-date>
542
+ <authored-date>2009-01-19T19:00:44-08:00</authored-date>
543
+ <tree>4456264ab537b5ed47e9023c96342087bc0207b9</tree>
544
+ <committer>
545
+ <name>Josh Nichols</name>
546
+ <email>josh@technicalpickles.com</email>
547
+ </committer>
548
+ </commit>
549
+ <commit>
550
+ <message>Fresh beginnings.</message>
551
+ <parents type="array">
552
+ <parent>
553
+ <id>e518098b8a7ddbea8ad1e726277444a84c7570f6</id>
554
+ </parent>
555
+ </parents>
556
+ <url>http://github.com/dancroak/le-git/commit/68bdb6e3451012f3c386f10dfec0e47dd6f3bf34</url>
557
+ <author>
558
+ <name>Josh Nichols</name>
559
+ <email>josh@technicalpickles.com</email>
560
+ </author>
561
+ <id>68bdb6e3451012f3c386f10dfec0e47dd6f3bf34</id>
562
+ <committed-date>2009-01-19T17:47:25-08:00</committed-date>
563
+ <authored-date>2009-01-19T17:47:25-08:00</authored-date>
564
+ <tree>b1ab4ca5be92d34fc9e1572382ac355b795fbd93</tree>
565
+ <committer>
566
+ <name>Josh Nichols</name>
567
+ <email>josh@technicalpickles.com</email>
568
+ </committer>
569
+ </commit>
570
+ <commit>
571
+ <message>Now with commit fighting powers.</message>
572
+ <parents type="array">
573
+ <parent>
574
+ <id>5be931ebbd8d7c0e8792e105a01639c3cfba912b</id>
575
+ </parent>
576
+ </parents>
577
+ <url>http://github.com/dancroak/le-git/commit/e518098b8a7ddbea8ad1e726277444a84c7570f6</url>
578
+ <author>
579
+ <name>Josh Nichols</name>
580
+ <email>josh@technicalpickles.com</email>
581
+ </author>
582
+ <id>e518098b8a7ddbea8ad1e726277444a84c7570f6</id>
583
+ <committed-date>2008-10-24T15:52:55-07:00</committed-date>
584
+ <authored-date>2008-10-24T15:52:55-07:00</authored-date>
585
+ <tree>6723929bb590e6a0d2ca1ecf913700fa4e18965a</tree>
586
+ <committer>
587
+ <name>Josh Nichols</name>
588
+ <email>josh@technicalpickles.com</email>
589
+ </committer>
590
+ </commit>
591
+ <commit>
592
+ <message>Added search.</message>
593
+ <parents type="array">
594
+ <parent>
595
+ <id>88eaa2bec8ea8b49bb2f57f683c66d0f0db1d6de</id>
596
+ </parent>
597
+ </parents>
598
+ <url>http://github.com/dancroak/le-git/commit/5be931ebbd8d7c0e8792e105a01639c3cfba912b</url>
599
+ <author>
600
+ <name>Josh Nichols</name>
601
+ <email>josh@technicalpickles.com</email>
602
+ </author>
603
+ <id>5be931ebbd8d7c0e8792e105a01639c3cfba912b</id>
604
+ <committed-date>2008-10-24T15:00:35-07:00</committed-date>
605
+ <authored-date>2008-10-24T15:00:35-07:00</authored-date>
606
+ <tree>a9a5fd017b6440eb52f82acca9aa343dbfef0013</tree>
607
+ <committer>
608
+ <name>Josh Nichols</name>
609
+ <email>josh@technicalpickles.com</email>
610
+ </committer>
611
+ </commit>
612
+ <commit>
613
+ <message>First real commit.</message>
614
+ <parents type="array">
615
+ <parent>
616
+ <id>07ff9aa2abf16e1d730a1238c54c48b7a012fd71</id>
617
+ </parent>
618
+ </parents>
619
+ <url>http://github.com/dancroak/le-git/commit/88eaa2bec8ea8b49bb2f57f683c66d0f0db1d6de</url>
620
+ <author>
621
+ <name>Josh Nichols</name>
622
+ <email>josh@technicalpickles.com</email>
623
+ </author>
624
+ <id>88eaa2bec8ea8b49bb2f57f683c66d0f0db1d6de</id>
625
+ <committed-date>2008-10-24T14:44:06-07:00</committed-date>
626
+ <authored-date>2008-10-24T14:44:06-07:00</authored-date>
627
+ <tree>02c370a1d8daa13d1831704a42460ce5b0578fd7</tree>
628
+ <committer>
629
+ <name>Josh Nichols</name>
630
+ <email>josh@technicalpickles.com</email>
631
+ </committer>
632
+ </commit>
633
+ </commits>