dancroak-le-git 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -6,17 +6,19 @@ Le Git provides a Ruby wrapper around the "The Github API":http://develop.github
6
6
 
7
7
  h2. Example usage
8
8
 
9
- require 'rubygems'
10
- require 'le_git'
9
+ <pre>
10
+ require 'rubygems'
11
+ require 'le_git'
11
12
 
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">
13
+ >> user = Github::User.find("dancroak")
14
+ => #<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
 
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">
16
+ >> repository = user.repositories.last
17
+ => #<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
 
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">
19
+ >> repository.commits.first
20
+ => #<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">
21
+ </pre>
20
22
 
21
23
  h2. Maintainers
22
24
 
data/rails/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'le_git'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dancroak-le-git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Nichols
@@ -45,19 +45,11 @@ extra_rdoc_files:
45
45
  files:
46
46
  - LICENSE
47
47
  - README.textile
48
- - Rakefile
49
- - VERSION.yml
50
48
  - lib/le_git.rb
51
49
  - lib/le_git/commit.rb
52
50
  - lib/le_git/repository.rb
53
51
  - lib/le_git/user.rb
54
- - test/fixtures/master_commits.xml
55
- - test/fixtures/user.xml
56
- - test/fixtures/user_repositories.xml
57
- - test/github_commit_test.rb
58
- - test/github_repository_test.rb
59
- - test/github_user_test.rb
60
- - test/test_helper.rb
52
+ - rails/init.rb
61
53
  has_rdoc: false
62
54
  homepage: http://github.com/dancroak/le-git
63
55
  post_install_message:
data/Rakefile DELETED
@@ -1,43 +0,0 @@
1
- require 'rake'
2
- require 'rake/testtask'
3
- require 'rake/rdoctask'
4
- require 'rcov/rcovtask'
5
-
6
- begin
7
- require 'jeweler'
8
- Jeweler::Tasks.new do |s|
9
- s.name = "le-git"
10
- s.summary = "TODO"
11
- s.email = "josh@technicalpickles.com"
12
- s.homepage = "http://github.com/dancroak/le-git"
13
- s.description = "TODO"
14
- s.authors = ["Josh Nichols", "Dan Croak"]
15
- s.add_dependency "rest-client"
16
- s.add_dependency "happymapper"
17
- end
18
- rescue LoadError
19
- puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
20
- end
21
-
22
-
23
- Rake::TestTask.new do |t|
24
- t.libs << 'lib'
25
- t.pattern = 'test/**/*_test.rb'
26
- t.verbose = false
27
- end
28
-
29
- Rake::RDocTask.new do |rdoc|
30
- rdoc.rdoc_dir = 'rdoc'
31
- rdoc.title = 'GitHub Party'
32
- rdoc.options << '--line-numbers' << '--inline-source'
33
- rdoc.rdoc_files.include('README*')
34
- rdoc.rdoc_files.include('lib/**/*.rb')
35
- end
36
-
37
- Rcov::RcovTask.new do |t|
38
- t.libs << "test"
39
- t.test_files = FileList['test/*_test.rb']
40
- t.verbose = true
41
- end
42
-
43
- task :default => :test
data/VERSION.yml DELETED
@@ -1,4 +0,0 @@
1
- ---
2
- :major: 0
3
- :minor: 0
4
- :patch: 5
@@ -1,633 +0,0 @@
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>
@@ -1,30 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx/0.6.26
3
- Date: Tue, 26 May 2009 01:11:48 GMT
4
- Content-Type: application/xml; charset=utf-8
5
- Connection: keep-alive
6
- Set-Cookie: _github_ses=BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--884981fc5aa85daf318eeff084d98e2cff92578f; path=/; expires=Wed, 01 Jan 2020 08:00:00 GMT; HttpOnly
7
- Status: 200 OK
8
- X-Runtime: 48ms
9
- ETag: "d5dd5ae94c3a305435538867f782b8d5"
10
- Cache-Control: private, max-age=0, must-revalidate
11
- Content-Length: 544
12
-
13
- <?xml version="1.0" encoding="UTF-8"?>
14
- <users type="array">
15
- <user>
16
- <score type="float">3.8653853</score>
17
- <name>dancroak</name>
18
- <actions type="integer">35</actions>
19
- <language>Ruby</language>
20
- <followers type="integer">50</followers>
21
- <username>dancroak</username>
22
- <type>user</type>
23
- <fullname>Dan Croak</fullname>
24
- <repos type="integer">18</repos>
25
- <id>user-198</id>
26
- <pushed>2009-05-22T17:15:11.534Z</pushed>
27
- <created>2008-02-13T02:48:35Z</created>
28
- <location>Boston</location>
29
- </user>
30
- </users>
@@ -1,224 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx/0.6.26
3
- Date: Tue, 26 May 2009 01:40:03 GMT
4
- Content-Type: application/xml; charset=utf-8
5
- Connection: keep-alive
6
- Set-Cookie: _github_ses=BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--884981fc5aa85daf318eeff084d98e2cff92578f; path=/; expires=Wed, 01 Jan 2020 08:00:00 GMT; HttpOnly
7
- Status: 200 OK
8
- X-Runtime: 132ms
9
- ETag: "1f3e21db9930f7474098feada4b49c21"
10
- Cache-Control: private, max-age=0, must-revalidate
11
- Content-Length: 8254
12
-
13
- <?xml version="1.0" encoding="UTF-8"?>
14
- <repositories type="array">
15
- <repository>
16
- <description>Rails plugin. Force major browsers (IE, Firefox, Safari) to reload a page, even when triggered by 'back' button.</description>
17
- <name>no_cache</name>
18
- <private type="boolean">false</private>
19
- <url>http://github.com/dancroak/no_cache</url>
20
- <fork type="boolean">false</fork>
21
- <watchers type="integer">10</watchers>
22
- <forks type="integer">0</forks>
23
- <owner>dancroak</owner>
24
- <homepage>http://giantrobots.thoughtbot.com</homepage>
25
- </repository>
26
- <repository>
27
- <description>A craps simulator to help you plan your next trip to the casino by minimizing the house advantage and setting basic constraints on your play.</description>
28
- <name>craps</name>
29
- <private type="boolean">false</private>
30
- <url>http://github.com/dancroak/craps</url>
31
- <fork type="boolean">false</fork>
32
- <watchers type="integer">3</watchers>
33
- <forks type="integer">0</forks>
34
- <owner>dancroak</owner>
35
- <homepage></homepage>
36
- </repository>
37
- <repository>
38
- <description>port of Alex Dunae's validates_email_format_of Rails plugin to a gem</description>
39
- <name>validates_email_format_of</name>
40
- <private type="boolean">false</private>
41
- <url>http://github.com/dancroak/validates_email_format_of</url>
42
- <fork type="boolean">false</fork>
43
- <watchers type="integer">23</watchers>
44
- <forks type="integer">0</forks>
45
- <owner>dancroak</owner>
46
- <homepage></homepage>
47
- </repository>
48
- <repository>
49
- <description>Ruby wrapper for the Twitter Search API.</description>
50
- <name>twitter-search</name>
51
- <private type="boolean">false</private>
52
- <url>http://github.com/dancroak/twitter-search</url>
53
- <fork type="boolean">false</fork>
54
- <watchers type="integer">74</watchers>
55
- <forks type="integer">8</forks>
56
- <owner>dancroak</owner>
57
- <homepage>http://search.twitter.com/api</homepage>
58
- </repository>
59
- <repository>
60
- <description>Subdomain validation for ActiveRecord. Light wrapper around the excellent Addressable library (required). Includes a Shoulda macro.</description>
61
- <name>validates_subdomain_format_of</name>
62
- <private type="boolean">false</private>
63
- <url>http://github.com/dancroak/validates_subdomain_format_of</url>
64
- <fork type="boolean">false</fork>
65
- <watchers type="integer">9</watchers>
66
- <forks type="integer">0</forks>
67
- <owner>dancroak</owner>
68
- <homepage></homepage>
69
- </repository>
70
- <repository>
71
- <description>Unit tests I wrote way back when I started learning Ruby.</description>
72
- <name>ruby-learning-tests</name>
73
- <private type="boolean">false</private>
74
- <url>http://github.com/dancroak/ruby-learning-tests</url>
75
- <fork type="boolean">true</fork>
76
- <watchers type="integer">2</watchers>
77
- <forks type="integer">0</forks>
78
- <owner>dancroak</owner>
79
- <homepage>http://clarkware.com/cgi/blosxom/2005/03/18</homepage>
80
- </repository>
81
- <repository>
82
- <description>URL shortening app in the fewest readable lines of Ruby possible.</description>
83
- <name>shorty</name>
84
- <private type="boolean">false</private>
85
- <url>http://github.com/dancroak/shorty</url>
86
- <fork type="boolean">false</fork>
87
- <watchers type="integer">2</watchers>
88
- <forks type="integer">0</forks>
89
- <owner>dancroak</owner>
90
- <homepage></homepage>
91
- </repository>
92
- <repository>
93
- <description>Generate random short, non-offensive words. Good for human-readable confirmation codes.</description>
94
- <name>webster</name>
95
- <private type="boolean">false</private>
96
- <url>http://github.com/dancroak/webster</url>
97
- <fork type="boolean">false</fork>
98
- <watchers type="integer">21</watchers>
99
- <forks type="integer">0</forks>
100
- <owner>dancroak</owner>
101
- <homepage></homepage>
102
- </repository>
103
- <repository>
104
- <description>Nurse cares for invalid ActiveRecord objects.</description>
105
- <name>nurse</name>
106
- <private type="boolean">false</private>
107
- <url>http://github.com/dancroak/nurse</url>
108
- <fork type="boolean">false</fork>
109
- <watchers type="integer">2</watchers>
110
- <forks type="integer">0</forks>
111
- <owner>dancroak</owner>
112
- <homepage></homepage>
113
- </repository>
114
- <repository>
115
- <description>Makes tests easy on the fingers and the eyes</description>
116
- <name>shoulda</name>
117
- <private type="boolean">false</private>
118
- <url>http://github.com/dancroak/shoulda</url>
119
- <fork type="boolean">true</fork>
120
- <watchers type="integer">6</watchers>
121
- <forks type="integer">1</forks>
122
- <owner>dancroak</owner>
123
- <homepage>http://www.thoughtbot.com/projects/shoulda</homepage>
124
- </repository>
125
- <repository>
126
- <description>Experimental.</description>
127
- <name>rails-templates</name>
128
- <private type="boolean">false</private>
129
- <url>http://github.com/dancroak/rails-templates</url>
130
- <fork type="boolean">false</fork>
131
- <watchers type="integer">2</watchers>
132
- <forks type="integer">0</forks>
133
- <owner>dancroak</owner>
134
- <homepage></homepage>
135
- </repository>
136
- <repository>
137
- <description>Most awesome pagination solution for Ruby</description>
138
- <name>will_paginate</name>
139
- <private type="boolean">false</private>
140
- <url>http://github.com/dancroak/will_paginate</url>
141
- <fork type="boolean">true</fork>
142
- <watchers type="integer">1</watchers>
143
- <forks type="integer">0</forks>
144
- <owner>dancroak</owner>
145
- <homepage>http://github.com/mislav/will_paginate/wikis</homepage>
146
- </repository>
147
- <repository>
148
- <description>My config files (aka dotfiles)</description>
149
- <name>config_files</name>
150
- <private type="boolean">false</private>
151
- <url>http://github.com/dancroak/config_files</url>
152
- <fork type="boolean">true</fork>
153
- <watchers type="integer">1</watchers>
154
- <forks type="integer">0</forks>
155
- <owner>dancroak</owner>
156
- <homepage></homepage>
157
- </repository>
158
- <repository>
159
- <description>Rails generators for developers who do TDD.</description>
160
- <name>coulda</name>
161
- <private type="boolean">false</private>
162
- <url>http://github.com/dancroak/coulda</url>
163
- <fork type="boolean">false</fork>
164
- <watchers type="integer">11</watchers>
165
- <forks type="integer">0</forks>
166
- <owner>dancroak</owner>
167
- <homepage></homepage>
168
- </repository>
169
- <repository>
170
- <description>Generated scopes for ActiveRecord classes</description>
171
- <name>pacecar</name>
172
- <private type="boolean">false</private>
173
- <url>http://github.com/dancroak/pacecar</url>
174
- <fork type="boolean">true</fork>
175
- <watchers type="integer">1</watchers>
176
- <forks type="integer">0</forks>
177
- <owner>dancroak</owner>
178
- <homepage></homepage>
179
- </repository>
180
- <repository>
181
- <description>Tweet from the command line.</description>
182
- <name>tweet</name>
183
- <private type="boolean">false</private>
184
- <url>http://github.com/dancroak/tweet</url>
185
- <fork type="boolean">true</fork>
186
- <watchers type="integer">3</watchers>
187
- <forks type="integer">0</forks>
188
- <owner>dancroak</owner>
189
- <homepage></homepage>
190
- </repository>
191
- <repository>
192
- <description>Hello is a Ruby interface to a collection of the word &#8220;hello&#8221; in many languages and dialects.</description>
193
- <name>hello</name>
194
- <private type="boolean">false</private>
195
- <url>http://github.com/dancroak/hello</url>
196
- <fork type="boolean">false</fork>
197
- <watchers type="integer">4</watchers>
198
- <forks type="integer">1</forks>
199
- <owner>dancroak</owner>
200
- <homepage></homepage>
201
- </repository>
202
- <repository>
203
- <description>Reading lists</description>
204
- <name>reading</name>
205
- <private type="boolean">false</private>
206
- <url>http://github.com/dancroak/reading</url>
207
- <fork type="boolean">false</fork>
208
- <watchers type="integer">2</watchers>
209
- <forks type="integer">0</forks>
210
- <owner>dancroak</owner>
211
- <homepage>http://dancroak.com</homepage>
212
- </repository>
213
- <repository>
214
- <description>Ruby wrapper for the GitHub API v2.</description>
215
- <name>le-git</name>
216
- <private type="boolean">false</private>
217
- <url>http://github.com/dancroak/le-git</url>
218
- <fork type="boolean">true</fork>
219
- <watchers type="integer">1</watchers>
220
- <forks type="integer">0</forks>
221
- <owner>dancroak</owner>
222
- <homepage></homepage>
223
- </repository>
224
- </repositories>