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 +9 -2
- data/VERSION.yml +1 -1
- data/lib/le_git/commit.rb +4 -21
- data/lib/le_git/repository.rb +4 -0
- data/test/fixtures/master_commits.xml +633 -0
- data/test/github_commit_test.rb +27 -111
- data/test/github_repository_test.rb +43 -0
- metadata +2 -6
- data/test/fixtures/commit.xml +0 -64
- data/test/fixtures/commits.xml +0 -649
- data/test/fixtures/search.xml +0 -347
- data/test/github_follower_test.rb +0 -0
data/test/github_commit_test.rb
CHANGED
|
@@ -1,87 +1,22 @@
|
|
|
1
1
|
require File.join(File.dirname(__FILE__), '/test_helper.rb')
|
|
2
2
|
|
|
3
|
-
class
|
|
4
|
-
context "
|
|
3
|
+
class GithubCommitTest < Test::Unit::TestCase
|
|
4
|
+
context "given a repository, master commits" do
|
|
5
5
|
setup do
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
test "#message" do
|
|
11
|
-
@commit.message.should == "move commands.rb and helpers.rb into commands/ dir"
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
test "#removed size" do
|
|
15
|
-
pending "Not adding files yet" do
|
|
16
|
-
@commit.removed.size.should == 2
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
test "#added size" do
|
|
21
|
-
pending "Not adding files yet" do
|
|
22
|
-
@commit.added.size.should == 2
|
|
23
|
-
end
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
test "#modified size" do
|
|
27
|
-
pending "Not adding files yet" do
|
|
28
|
-
@commit.modified.size.should == 1
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
test "#parents" do
|
|
33
|
-
pending "Not adding parents yet" do
|
|
34
|
-
@commit.parents.size.should == 1
|
|
35
|
-
@commit.parents.first.id.should == "d462d2a2e60438ded3dd9e8e6593ca4146c5a0ba"
|
|
36
|
-
end
|
|
37
|
-
end
|
|
38
|
-
|
|
39
|
-
test "#url" do
|
|
40
|
-
@commit.url.should == "http://github.com/defunkt/github-gem/commit/c26d4ce9807ecf57d3f9eefe19ae64e75bcaaa8b"
|
|
41
|
-
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
test "#author" do
|
|
45
|
-
pending "Not adding author yet" do
|
|
46
|
-
@commit.author.name.should == "Chris Wanstrath"
|
|
47
|
-
@commit.author.email.should == "chris@ozmm.org"
|
|
48
|
-
end
|
|
49
|
-
end
|
|
50
|
-
|
|
51
|
-
test "#id" do
|
|
52
|
-
@commit.id.should == "c26d4ce9807ecf57d3f9eefe19ae64e75bcaaa8b"
|
|
53
|
-
end
|
|
6
|
+
uri = "http://github.com:80/api/v2/xml/commits/list/dancroak/le-git/master"
|
|
7
|
+
fixture_path = File.join(File.dirname(__FILE__),
|
|
8
|
+
'fixtures',
|
|
9
|
+
'master_commits.xml')
|
|
54
10
|
|
|
55
|
-
|
|
56
|
-
pending "happymapper doesn't support dashes yet" do
|
|
57
|
-
@commit.commited_date.should == Date.parse("2008-03-02T16:45:41-08:00")
|
|
58
|
-
end
|
|
59
|
-
end
|
|
11
|
+
FakeWeb.register_uri(uri, :response => fixture_path)
|
|
60
12
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
13
|
+
begin
|
|
14
|
+
@commits = Github::Commit.master("dancroak", "le-git")
|
|
15
|
+
rescue # can't figure out Net::HTTPBadResponse: wrong status line
|
|
16
|
+
@commits = Github::Commit.parse(File.read(fixture_path))
|
|
64
17
|
end
|
|
65
18
|
end
|
|
66
19
|
|
|
67
|
-
test "#tree" do
|
|
68
|
-
@commit.tree.should == "28a1a1ca3e663d35ba8bf07d3f1781af71359b76"
|
|
69
|
-
end
|
|
70
|
-
|
|
71
|
-
test "#committer" do
|
|
72
|
-
pending "Not adding committer yet" do
|
|
73
|
-
@commit.committer.name.should == "Chris Wanstrath"
|
|
74
|
-
@commit.committer.email.should == "chris@ozmm.org"
|
|
75
|
-
end
|
|
76
|
-
end
|
|
77
|
-
end
|
|
78
|
-
|
|
79
|
-
context "For a project" do
|
|
80
|
-
setup do
|
|
81
|
-
FakeWeb.register_uri("http://github.com/api/v1/xml/caged/gitnub/commits/master", :response => File.join(File.dirname(__FILE__), 'fixtures', 'commits.xml'))
|
|
82
|
-
@commits = GitHub::Commit.find("caged", "gitnub", :all)
|
|
83
|
-
end
|
|
84
|
-
|
|
85
20
|
test "size" do
|
|
86
21
|
@commits.size.should == 30
|
|
87
22
|
end
|
|
@@ -92,70 +27,51 @@ class GitHubCommitTest < Test::Unit::TestCase
|
|
|
92
27
|
end
|
|
93
28
|
|
|
94
29
|
test "#message" do
|
|
95
|
-
@commit.message.should == "
|
|
96
|
-
end
|
|
97
|
-
|
|
98
|
-
test "#removed size" do
|
|
99
|
-
pending "Not adding files yet" do
|
|
100
|
-
@commit.removed.should be_nil
|
|
101
|
-
end
|
|
102
|
-
end
|
|
103
|
-
|
|
104
|
-
test "#added size" do
|
|
105
|
-
pending "Not adding files yet" do
|
|
106
|
-
@commit.added.should be_nil
|
|
107
|
-
end
|
|
108
|
-
end
|
|
109
|
-
|
|
110
|
-
test "#modified size" do
|
|
111
|
-
pending "Not adding files yet" do
|
|
112
|
-
@commit.modified.should be_nil
|
|
113
|
-
end
|
|
30
|
+
@commit.message.should == "updating Repository model to use v2 API. associated User & Repository models. filled out complete API for User."
|
|
114
31
|
end
|
|
115
32
|
|
|
116
33
|
test "#parents size" do
|
|
117
|
-
pending "
|
|
34
|
+
pending "how to do arrays?" do
|
|
118
35
|
@commit.parents.size.should == 1
|
|
119
|
-
@commits.
|
|
36
|
+
@commits.parents.first.id.should == "690c79a261ed5b078c08742b796cb3056f685698"
|
|
120
37
|
end
|
|
121
38
|
end
|
|
122
39
|
|
|
123
40
|
test "#url" do
|
|
124
|
-
@commit.url.should == "http://github.com/
|
|
125
|
-
|
|
41
|
+
@commit.url.should == "http://github.com/dancroak/le-git/commit/1f0111c91344062052f65922171d220a06810d4a"
|
|
126
42
|
end
|
|
127
43
|
|
|
128
44
|
test "#author" do
|
|
129
|
-
pending "
|
|
130
|
-
@commit.author.name.should == "
|
|
131
|
-
@commit.author.email.should == "
|
|
45
|
+
pending "how to do arrays?" do
|
|
46
|
+
@commit.author.name.should == "Dan Croak"
|
|
47
|
+
@commit.author.email.should == "dcroak@thoughtbot.com"
|
|
132
48
|
end
|
|
133
49
|
end
|
|
134
50
|
|
|
135
51
|
test "#id" do
|
|
136
|
-
@commit.id.should == "
|
|
52
|
+
@commit.id.should == "1f0111c91344062052f65922171d220a06810d4a"
|
|
137
53
|
end
|
|
138
54
|
|
|
139
55
|
test "#commited_date" do
|
|
140
|
-
pending "
|
|
141
|
-
@commit.
|
|
56
|
+
pending "HappyMapper can't handle nodes with dashes" do
|
|
57
|
+
@commit.committed_date.should == Date.parse("2009-05-25T19:11:27-07:00")
|
|
142
58
|
end
|
|
143
59
|
end
|
|
144
60
|
|
|
145
61
|
test "#authored_date" do
|
|
146
|
-
pending "
|
|
147
|
-
@commit.authored_date.should == Date.parse("
|
|
62
|
+
pending "HappyMapper can't handle nodes with dashes" do
|
|
63
|
+
@commit.authored_date.should == Date.parse("2009-05-25T19:11:27-07:00")
|
|
148
64
|
end
|
|
149
65
|
end
|
|
150
66
|
|
|
151
67
|
test "#tree" do
|
|
152
|
-
@commit.tree.should == "
|
|
68
|
+
@commit.tree.should == "d27ed042222fe8a55681e1af260e3eb2847e9f33"
|
|
153
69
|
end
|
|
154
70
|
|
|
155
71
|
test "#committer" do
|
|
156
|
-
pending "
|
|
157
|
-
@commit.committer.name.should == "
|
|
158
|
-
@commit.committer.email.should == "
|
|
72
|
+
pending "how to do arrays?" do
|
|
73
|
+
@commit.committer.name.should == "Dan Croak"
|
|
74
|
+
@commit.committer.email.should == "dcroak@thoughtbot.com"
|
|
159
75
|
end
|
|
160
76
|
end
|
|
161
77
|
end
|
|
@@ -56,6 +56,49 @@ class GithubRepositoryTest < Test::Unit::TestCase
|
|
|
56
56
|
test "#homepage" do
|
|
57
57
|
@repository.homepage.should == "http://giantrobots.thoughtbot.com"
|
|
58
58
|
end
|
|
59
|
+
|
|
60
|
+
context "master commits" do
|
|
61
|
+
setup do
|
|
62
|
+
uri = "http://github.com:80/api/v2/xml/commits/list/dancroak/le-git/master"
|
|
63
|
+
fixture_path = File.join(File.dirname(__FILE__),
|
|
64
|
+
'fixtures',
|
|
65
|
+
'master_commits.xml')
|
|
66
|
+
|
|
67
|
+
FakeWeb.register_uri(uri, :response => fixture_path)
|
|
68
|
+
|
|
69
|
+
begin
|
|
70
|
+
@commits = @repository.commits
|
|
71
|
+
rescue # can't figure out Net::HTTPBadResponse: wrong status line
|
|
72
|
+
@commits = Github::Commit.parse(File.read(fixture_path))
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
test "size" do
|
|
77
|
+
@commits.size.should == 30
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
context "first commit" do
|
|
81
|
+
setup do
|
|
82
|
+
@commit = @commits.first
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
test "#message" do
|
|
86
|
+
@commit.message.should == "updating Repository model to use v2 API. associated User & Repository models. filled out complete API for User."
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
test "#url" do
|
|
90
|
+
@commit.url.should == "http://github.com/dancroak/le-git/commit/1f0111c91344062052f65922171d220a06810d4a"
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
test "#id" do
|
|
94
|
+
@commit.id.should == "1f0111c91344062052f65922171d220a06810d4a"
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
test "#tree" do
|
|
98
|
+
@commit.tree.should == "d27ed042222fe8a55681e1af260e3eb2847e9f33"
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
end
|
|
59
102
|
end
|
|
60
103
|
end
|
|
61
104
|
end
|
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.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Nichols
|
|
@@ -51,13 +51,10 @@ files:
|
|
|
51
51
|
- lib/le_git/commit.rb
|
|
52
52
|
- lib/le_git/repository.rb
|
|
53
53
|
- lib/le_git/user.rb
|
|
54
|
-
- test/fixtures/
|
|
55
|
-
- test/fixtures/commits.xml
|
|
56
|
-
- test/fixtures/search.xml
|
|
54
|
+
- test/fixtures/master_commits.xml
|
|
57
55
|
- test/fixtures/user.xml
|
|
58
56
|
- test/fixtures/user_repositories.xml
|
|
59
57
|
- test/github_commit_test.rb
|
|
60
|
-
- test/github_follower_test.rb
|
|
61
58
|
- test/github_repository_test.rb
|
|
62
59
|
- test/github_user_test.rb
|
|
63
60
|
- test/test_helper.rb
|
|
@@ -89,7 +86,6 @@ specification_version: 3
|
|
|
89
86
|
summary: TODO
|
|
90
87
|
test_files:
|
|
91
88
|
- test/github_commit_test.rb
|
|
92
|
-
- test/github_follower_test.rb
|
|
93
89
|
- test/github_repository_test.rb
|
|
94
90
|
- test/github_user_test.rb
|
|
95
91
|
- test/test_helper.rb
|
data/test/fixtures/commit.xml
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
HTTP/1.1 200 OK
|
|
2
|
-
Server: nginx/0.6.31
|
|
3
|
-
Date: Tue, 20 Jan 2009 03:45:10 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: 180ms
|
|
9
|
-
ETag: "ae6c207c2f78e05bf43e7c4dd7ef3fed"
|
|
10
|
-
Cache-Control: private, max-age=0, must-revalidate
|
|
11
|
-
Content-Length: 1463
|
|
12
|
-
|
|
13
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
14
|
-
<commit>
|
|
15
|
-
<removed type="array">
|
|
16
|
-
<removed>
|
|
17
|
-
<filename>commands.rb</filename>
|
|
18
|
-
</removed>
|
|
19
|
-
<removed>
|
|
20
|
-
<filename>helpers.rb</filename>
|
|
21
|
-
</removed>
|
|
22
|
-
</removed>
|
|
23
|
-
<added type="array">
|
|
24
|
-
<added>
|
|
25
|
-
<filename>commands/commands.rb</filename>
|
|
26
|
-
</added>
|
|
27
|
-
<added>
|
|
28
|
-
<filename>commands/helpers.rb</filename>
|
|
29
|
-
</added>
|
|
30
|
-
</added>
|
|
31
|
-
<message>move commands.rb and helpers.rb into commands/ dir</message>
|
|
32
|
-
<modified type="array">
|
|
33
|
-
<modified>
|
|
34
|
-
<diff>@@ -56,7 +56,7 @@ module GitHub
|
|
35
|
-
end
|
|
36
|
-
|
|
37
|
-
def load(file)
|
|
38
|
-
- file[0] == ?/ ? super : super(BasePath + "/#{file}")
|
|
39
|
-
+ file[0] == ?/ ? super : super(BasePath + "/commands/#{file}")
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
def debug(*messages)</diff>
|
|
43
|
-
<filename>lib/github.rb</filename>
|
|
44
|
-
</modified>
|
|
45
|
-
</modified>
|
|
46
|
-
<parents type="array">
|
|
47
|
-
<parent>
|
|
48
|
-
<id>d462d2a2e60438ded3dd9e8e6593ca4146c5a0ba</id>
|
|
49
|
-
</parent>
|
|
50
|
-
</parents>
|
|
51
|
-
<url>http://github.com/defunkt/github-gem/commit/c26d4ce9807ecf57d3f9eefe19ae64e75bcaaa8b</url>
|
|
52
|
-
<author>
|
|
53
|
-
<name>Chris Wanstrath</name>
|
|
54
|
-
<email>chris@ozmm.org</email>
|
|
55
|
-
</author>
|
|
56
|
-
<id>c26d4ce9807ecf57d3f9eefe19ae64e75bcaaa8b</id>
|
|
57
|
-
<committed-date>2008-03-02T16:45:41-08:00</committed-date>
|
|
58
|
-
<authored-date>2008-03-02T16:45:41-08:00</authored-date>
|
|
59
|
-
<tree>28a1a1ca3e663d35ba8bf07d3f1781af71359b76</tree>
|
|
60
|
-
<committer>
|
|
61
|
-
<name>Chris Wanstrath</name>
|
|
62
|
-
<email>chris@ozmm.org</email>
|
|
63
|
-
</committer>
|
|
64
|
-
</commit>
|
data/test/fixtures/commits.xml
DELETED
|
@@ -1,649 +0,0 @@
|
|
|
1
|
-
HTTP/1.1 200 OK
|
|
2
|
-
Server: nginx/0.6.26
|
|
3
|
-
Date: Tue, 20 Jan 2009 03:36:58 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: 423ms
|
|
9
|
-
ETag: "b2d9f12982e97489882e53428ae22be9"
|
|
10
|
-
Cache-Control: private, max-age=0, must-revalidate
|
|
11
|
-
Content-Length: 23324
|
|
12
|
-
|
|
13
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
14
|
-
<commits type="array">
|
|
15
|
-
<commit>
|
|
16
|
-
<message>This time, lets actually add diff-lcs</message>
|
|
17
|
-
<parents type="array">
|
|
18
|
-
<parent>
|
|
19
|
-
<id>64cefa238db1d5ad62f0560378ddd9cdbfbbfe16</id>
|
|
20
|
-
</parent>
|
|
21
|
-
</parents>
|
|
22
|
-
<url>http://github.com/Caged/gitnub/commit/2f4522c15c8f4734ea7db07f4c355ade06a3f619</url>
|
|
23
|
-
<author>
|
|
24
|
-
<name>Justin Palmer</name>
|
|
25
|
-
<email>justin@activereload.net</email>
|
|
26
|
-
</author>
|
|
27
|
-
<id>2f4522c15c8f4734ea7db07f4c355ade06a3f619</id>
|
|
28
|
-
<committed-date>2008-10-17T12:00:08-07:00</committed-date>
|
|
29
|
-
<authored-date>2008-10-17T12:00:08-07:00</authored-date>
|
|
30
|
-
<tree>489360e07f74e9b0eeea0d8ec07328d3b3a0a947</tree>
|
|
31
|
-
<committer>
|
|
32
|
-
<name>Justin Palmer</name>
|
|
33
|
-
<email>justin@activereload.net</email>
|
|
34
|
-
</committer>
|
|
35
|
-
</commit>
|
|
36
|
-
<commit>
|
|
37
|
-
<message>Better placeholder for blame view</message>
|
|
38
|
-
<parents type="array">
|
|
39
|
-
<parent>
|
|
40
|
-
<id>f1c2cee2dc44bd83ee95217d578b68e561a3c67f</id>
|
|
41
|
-
</parent>
|
|
42
|
-
</parents>
|
|
43
|
-
<url>http://github.com/Caged/gitnub/commit/64cefa238db1d5ad62f0560378ddd9cdbfbbfe16</url>
|
|
44
|
-
<author>
|
|
45
|
-
<name>Justin Palmer</name>
|
|
46
|
-
<email>justin@activereload.net</email>
|
|
47
|
-
</author>
|
|
48
|
-
<id>64cefa238db1d5ad62f0560378ddd9cdbfbbfe16</id>
|
|
49
|
-
<committed-date>2008-10-16T12:16:26-07:00</committed-date>
|
|
50
|
-
<authored-date>2008-10-16T12:16:26-07:00</authored-date>
|
|
51
|
-
<tree>f477be0c974d2ba1b9c48f535ae3742d33fc9d2b</tree>
|
|
52
|
-
<committer>
|
|
53
|
-
<name>Justin Palmer</name>
|
|
54
|
-
<email>justin@activereload.net</email>
|
|
55
|
-
</committer>
|
|
56
|
-
</commit>
|
|
57
|
-
<commit>
|
|
58
|
-
<message>Move initialization stuff out of the applicaiton controller</message>
|
|
59
|
-
<parents type="array">
|
|
60
|
-
<parent>
|
|
61
|
-
<id>bc85914fa774d77bac403c8faba656098abb788b</id>
|
|
62
|
-
</parent>
|
|
63
|
-
</parents>
|
|
64
|
-
<url>http://github.com/Caged/gitnub/commit/f1c2cee2dc44bd83ee95217d578b68e561a3c67f</url>
|
|
65
|
-
<author>
|
|
66
|
-
<name>Justin Palmer</name>
|
|
67
|
-
<email>justin@activereload.net</email>
|
|
68
|
-
</author>
|
|
69
|
-
<id>f1c2cee2dc44bd83ee95217d578b68e561a3c67f</id>
|
|
70
|
-
<committed-date>2008-10-15T16:38:00-07:00</committed-date>
|
|
71
|
-
<authored-date>2008-10-15T16:38:00-07:00</authored-date>
|
|
72
|
-
<tree>c2a8aa939c7fd2ba9530ac4f8072c1ecf48329e1</tree>
|
|
73
|
-
<committer>
|
|
74
|
-
<name>Justin Palmer</name>
|
|
75
|
-
<email>justin@activereload.net</email>
|
|
76
|
-
</committer>
|
|
77
|
-
</commit>
|
|
78
|
-
<commit>
|
|
79
|
-
<message>Add loading message for blame view</message>
|
|
80
|
-
<parents type="array">
|
|
81
|
-
<parent>
|
|
82
|
-
<id>1c06b213f3ab2828ed65a754f51b822b618a7a7e</id>
|
|
83
|
-
</parent>
|
|
84
|
-
</parents>
|
|
85
|
-
<url>http://github.com/Caged/gitnub/commit/bc85914fa774d77bac403c8faba656098abb788b</url>
|
|
86
|
-
<author>
|
|
87
|
-
<name>Justin Palmer</name>
|
|
88
|
-
<email>justin@activereload.net</email>
|
|
89
|
-
</author>
|
|
90
|
-
<id>bc85914fa774d77bac403c8faba656098abb788b</id>
|
|
91
|
-
<committed-date>2008-10-14T16:49:00-07:00</committed-date>
|
|
92
|
-
<authored-date>2008-10-14T16:49:00-07:00</authored-date>
|
|
93
|
-
<tree>d52ec273b41dea08d3991381b74e156199ab210b</tree>
|
|
94
|
-
<committer>
|
|
95
|
-
<name>Justin Palmer</name>
|
|
96
|
-
<email>justin@activereload.net</email>
|
|
97
|
-
</committer>
|
|
98
|
-
</commit>
|
|
99
|
-
<commit>
|
|
100
|
-
<message>update with newest grit api to select current branch on startup</message>
|
|
101
|
-
<parents type="array">
|
|
102
|
-
<parent>
|
|
103
|
-
<id>a0f044d7eba0ffe6a896274f38301086fb2564a9</id>
|
|
104
|
-
</parent>
|
|
105
|
-
</parents>
|
|
106
|
-
<url>http://github.com/Caged/gitnub/commit/1c06b213f3ab2828ed65a754f51b822b618a7a7e</url>
|
|
107
|
-
<author>
|
|
108
|
-
<name>Justin Palmer</name>
|
|
109
|
-
<email>justin@activereload.net</email>
|
|
110
|
-
</author>
|
|
111
|
-
<id>1c06b213f3ab2828ed65a754f51b822b618a7a7e</id>
|
|
112
|
-
<committed-date>2008-10-14T16:19:17-07:00</committed-date>
|
|
113
|
-
<authored-date>2008-10-14T16:19:17-07:00</authored-date>
|
|
114
|
-
<tree>7376a993a18dc02b5c96baa1dcf27c45fc243d2c</tree>
|
|
115
|
-
<committer>
|
|
116
|
-
<name>Justin Palmer</name>
|
|
117
|
-
<email>justin@activereload.net</email>
|
|
118
|
-
</committer>
|
|
119
|
-
</commit>
|
|
120
|
-
<commit>
|
|
121
|
-
<message>Show alert when you launch GitNub without the nub command from a dir that isn't a git repo</message>
|
|
122
|
-
<parents type="array">
|
|
123
|
-
<parent>
|
|
124
|
-
<id>2915656ffb87fd7a927b49715372a0f15254250b</id>
|
|
125
|
-
</parent>
|
|
126
|
-
</parents>
|
|
127
|
-
<url>http://github.com/Caged/gitnub/commit/a0f044d7eba0ffe6a896274f38301086fb2564a9</url>
|
|
128
|
-
<author>
|
|
129
|
-
<name>Justin Palmer</name>
|
|
130
|
-
<email>justin@activereload.net</email>
|
|
131
|
-
</author>
|
|
132
|
-
<id>a0f044d7eba0ffe6a896274f38301086fb2564a9</id>
|
|
133
|
-
<committed-date>2008-10-13T13:14:18-07:00</committed-date>
|
|
134
|
-
<authored-date>2008-10-13T13:14:18-07:00</authored-date>
|
|
135
|
-
<tree>06ddb0fbd273752772d8b95e29ec56937e5a1adf</tree>
|
|
136
|
-
<committer>
|
|
137
|
-
<name>Justin Palmer</name>
|
|
138
|
-
<email>justin@activereload.net</email>
|
|
139
|
-
</committer>
|
|
140
|
-
</commit>
|
|
141
|
-
<commit>
|
|
142
|
-
<message>Show sha1 when hovering over a line in the blame view</message>
|
|
143
|
-
<parents type="array">
|
|
144
|
-
<parent>
|
|
145
|
-
<id>453ea663048a8058fbf6fb7e8a2b4c70740d6523</id>
|
|
146
|
-
</parent>
|
|
147
|
-
</parents>
|
|
148
|
-
<url>http://github.com/Caged/gitnub/commit/2915656ffb87fd7a927b49715372a0f15254250b</url>
|
|
149
|
-
<author>
|
|
150
|
-
<name>Justin Palmer</name>
|
|
151
|
-
<email>justin@activereload.net</email>
|
|
152
|
-
</author>
|
|
153
|
-
<id>2915656ffb87fd7a927b49715372a0f15254250b</id>
|
|
154
|
-
<committed-date>2008-10-06T00:17:38-07:00</committed-date>
|
|
155
|
-
<authored-date>2008-10-06T00:17:38-07:00</authored-date>
|
|
156
|
-
<tree>c1696b86224b78e623c27ad87e109b792da4460e</tree>
|
|
157
|
-
<committer>
|
|
158
|
-
<name>Justin Palmer</name>
|
|
159
|
-
<email>justin@activereload.net</email>
|
|
160
|
-
</committer>
|
|
161
|
-
</commit>
|
|
162
|
-
<commit>
|
|
163
|
-
<message>Add placeholder text for blame view</message>
|
|
164
|
-
<parents type="array">
|
|
165
|
-
<parent>
|
|
166
|
-
<id>1066980ccd265b1e44bc1cb39a862e3be65c3a2f</id>
|
|
167
|
-
</parent>
|
|
168
|
-
</parents>
|
|
169
|
-
<url>http://github.com/Caged/gitnub/commit/453ea663048a8058fbf6fb7e8a2b4c70740d6523</url>
|
|
170
|
-
<author>
|
|
171
|
-
<name>Justin Palmer</name>
|
|
172
|
-
<email>justin@activereload.net</email>
|
|
173
|
-
</author>
|
|
174
|
-
<id>453ea663048a8058fbf6fb7e8a2b4c70740d6523</id>
|
|
175
|
-
<committed-date>2008-10-05T23:15:12-07:00</committed-date>
|
|
176
|
-
<authored-date>2008-10-05T23:15:12-07:00</authored-date>
|
|
177
|
-
<tree>4fd0f91570046ece70b0afa2eb15815cafb8b380</tree>
|
|
178
|
-
<committer>
|
|
179
|
-
<name>Justin Palmer</name>
|
|
180
|
-
<email>justin@activereload.net</email>
|
|
181
|
-
</committer>
|
|
182
|
-
</commit>
|
|
183
|
-
<commit>
|
|
184
|
-
<message>Merge branch 'blamegame'</message>
|
|
185
|
-
<parents type="array">
|
|
186
|
-
<parent>
|
|
187
|
-
<id>ee93959e672d8fe7fcc04ffa74c4371a25b34296</id>
|
|
188
|
-
</parent>
|
|
189
|
-
<parent>
|
|
190
|
-
<id>97d7f2a2075170950cf56715e32d66eecdc40f69</id>
|
|
191
|
-
</parent>
|
|
192
|
-
</parents>
|
|
193
|
-
<url>http://github.com/Caged/gitnub/commit/1066980ccd265b1e44bc1cb39a862e3be65c3a2f</url>
|
|
194
|
-
<author>
|
|
195
|
-
<name>Justin Palmer</name>
|
|
196
|
-
<email>justin@activereload.net</email>
|
|
197
|
-
</author>
|
|
198
|
-
<id>1066980ccd265b1e44bc1cb39a862e3be65c3a2f</id>
|
|
199
|
-
<committed-date>2008-10-05T22:57:03-07:00</committed-date>
|
|
200
|
-
<authored-date>2008-10-05T22:57:03-07:00</authored-date>
|
|
201
|
-
<tree>03eeba0bef83ea4d40100c2b8c186a663fdf7276</tree>
|
|
202
|
-
<committer>
|
|
203
|
-
<name>Justin Palmer</name>
|
|
204
|
-
<email>justin@activereload.net</email>
|
|
205
|
-
</committer>
|
|
206
|
-
</commit>
|
|
207
|
-
<commit>
|
|
208
|
-
<message>Updated grit</message>
|
|
209
|
-
<parents type="array">
|
|
210
|
-
<parent>
|
|
211
|
-
<id>9ad529d695799f9c28805b77f6b178b2287a46ac</id>
|
|
212
|
-
</parent>
|
|
213
|
-
</parents>
|
|
214
|
-
<url>http://github.com/Caged/gitnub/commit/ee93959e672d8fe7fcc04ffa74c4371a25b34296</url>
|
|
215
|
-
<author>
|
|
216
|
-
<name>Justin Palmer</name>
|
|
217
|
-
<email>justin@activereload.net</email>
|
|
218
|
-
</author>
|
|
219
|
-
<id>ee93959e672d8fe7fcc04ffa74c4371a25b34296</id>
|
|
220
|
-
<committed-date>2008-10-05T22:52:56-07:00</committed-date>
|
|
221
|
-
<authored-date>2008-10-05T22:52:56-07:00</authored-date>
|
|
222
|
-
<tree>82acc22bafc7756a2e8448ef3713a5da71137a45</tree>
|
|
223
|
-
<committer>
|
|
224
|
-
<name>Justin Palmer</name>
|
|
225
|
-
<email>justin@activereload.net</email>
|
|
226
|
-
</committer>
|
|
227
|
-
</commit>
|
|
228
|
-
<commit>
|
|
229
|
-
<message>Add line numbers to diff. Fix scroller clipping on blame view</message>
|
|
230
|
-
<parents type="array">
|
|
231
|
-
<parent>
|
|
232
|
-
<id>da8e1a4a7c59dc4ed1a99e49d7ae32769b106ac1</id>
|
|
233
|
-
</parent>
|
|
234
|
-
</parents>
|
|
235
|
-
<url>http://github.com/Caged/gitnub/commit/97d7f2a2075170950cf56715e32d66eecdc40f69</url>
|
|
236
|
-
<author>
|
|
237
|
-
<name>Justin Palmer</name>
|
|
238
|
-
<email>justin@activereload.net</email>
|
|
239
|
-
</author>
|
|
240
|
-
<id>97d7f2a2075170950cf56715e32d66eecdc40f69</id>
|
|
241
|
-
<committed-date>2008-10-05T22:51:53-07:00</committed-date>
|
|
242
|
-
<authored-date>2008-10-05T22:51:53-07:00</authored-date>
|
|
243
|
-
<tree>03eeba0bef83ea4d40100c2b8c186a663fdf7276</tree>
|
|
244
|
-
<committer>
|
|
245
|
-
<name>Justin Palmer</name>
|
|
246
|
-
<email>justin@activereload.net</email>
|
|
247
|
-
</committer>
|
|
248
|
-
</commit>
|
|
249
|
-
<commit>
|
|
250
|
-
<message>Add last modified date</message>
|
|
251
|
-
<parents type="array">
|
|
252
|
-
<parent>
|
|
253
|
-
<id>ea24051e9f549a9457049849565f5d0627541c47</id>
|
|
254
|
-
</parent>
|
|
255
|
-
</parents>
|
|
256
|
-
<url>http://github.com/Caged/gitnub/commit/da8e1a4a7c59dc4ed1a99e49d7ae32769b106ac1</url>
|
|
257
|
-
<author>
|
|
258
|
-
<name>Justin Palmer</name>
|
|
259
|
-
<email>justin@activereload.net</email>
|
|
260
|
-
</author>
|
|
261
|
-
<id>da8e1a4a7c59dc4ed1a99e49d7ae32769b106ac1</id>
|
|
262
|
-
<committed-date>2008-10-05T19:43:35-07:00</committed-date>
|
|
263
|
-
<authored-date>2008-10-05T19:43:35-07:00</authored-date>
|
|
264
|
-
<tree>e27bef0994d7e67fe2304fa34425862144fa0e2f</tree>
|
|
265
|
-
<committer>
|
|
266
|
-
<name>Justin Palmer</name>
|
|
267
|
-
<email>justin@activereload.net</email>
|
|
268
|
-
</committer>
|
|
269
|
-
</commit>
|
|
270
|
-
<commit>
|
|
271
|
-
<message>Blame view working, still have a lot of polish left</message>
|
|
272
|
-
<parents type="array">
|
|
273
|
-
<parent>
|
|
274
|
-
<id>2b70bce1e33659a98654a6940553f4621a9074db</id>
|
|
275
|
-
</parent>
|
|
276
|
-
</parents>
|
|
277
|
-
<url>http://github.com/Caged/gitnub/commit/ea24051e9f549a9457049849565f5d0627541c47</url>
|
|
278
|
-
<author>
|
|
279
|
-
<name>Justin Palmer</name>
|
|
280
|
-
<email>justin@activereload.net</email>
|
|
281
|
-
</author>
|
|
282
|
-
<id>ea24051e9f549a9457049849565f5d0627541c47</id>
|
|
283
|
-
<committed-date>2008-10-05T19:26:32-07:00</committed-date>
|
|
284
|
-
<authored-date>2008-10-05T19:26:32-07:00</authored-date>
|
|
285
|
-
<tree>905c5b9e282045ce2a322e3b9c9c3f6a4de0e33f</tree>
|
|
286
|
-
<committer>
|
|
287
|
-
<name>Justin Palmer</name>
|
|
288
|
-
<email>justin@activereload.net</email>
|
|
289
|
-
</committer>
|
|
290
|
-
</commit>
|
|
291
|
-
<commit>
|
|
292
|
-
<message>Add blame view canvas and make sure searching uses strings insted of symbols</message>
|
|
293
|
-
<parents type="array">
|
|
294
|
-
<parent>
|
|
295
|
-
<id>9b900127ea95210803ccc8fb48da2e6dbfbb0349</id>
|
|
296
|
-
</parent>
|
|
297
|
-
</parents>
|
|
298
|
-
<url>http://github.com/Caged/gitnub/commit/2b70bce1e33659a98654a6940553f4621a9074db</url>
|
|
299
|
-
<author>
|
|
300
|
-
<name>Justin Palmer</name>
|
|
301
|
-
<email>justin@activereload.net</email>
|
|
302
|
-
</author>
|
|
303
|
-
<id>2b70bce1e33659a98654a6940553f4621a9074db</id>
|
|
304
|
-
<committed-date>2008-10-04T15:19:17-07:00</committed-date>
|
|
305
|
-
<authored-date>2008-10-04T15:19:17-07:00</authored-date>
|
|
306
|
-
<tree>bbb4e42ad3e3df4a8291dfecdb8122b0fd50bc09</tree>
|
|
307
|
-
<committer>
|
|
308
|
-
<name>Justin Palmer</name>
|
|
309
|
-
<email>justin@activereload.net</email>
|
|
310
|
-
</committer>
|
|
311
|
-
</commit>
|
|
312
|
-
<commit>
|
|
313
|
-
<message>get rid of the ignored files check for now. It's way to slow. Need to come back to this later</message>
|
|
314
|
-
<parents type="array">
|
|
315
|
-
<parent>
|
|
316
|
-
<id>1463286d9bf53a87ea7bbfa49773b39e5a97720c</id>
|
|
317
|
-
</parent>
|
|
318
|
-
</parents>
|
|
319
|
-
<url>http://github.com/Caged/gitnub/commit/9b900127ea95210803ccc8fb48da2e6dbfbb0349</url>
|
|
320
|
-
<author>
|
|
321
|
-
<name>Justin Palmer</name>
|
|
322
|
-
<email>justin@activereload.net</email>
|
|
323
|
-
</author>
|
|
324
|
-
<id>9b900127ea95210803ccc8fb48da2e6dbfbb0349</id>
|
|
325
|
-
<committed-date>2008-10-04T14:45:35-07:00</committed-date>
|
|
326
|
-
<authored-date>2008-10-04T14:45:35-07:00</authored-date>
|
|
327
|
-
<tree>d61cc84abca6a4374bd1e79ba0617d67c391a8f1</tree>
|
|
328
|
-
<committer>
|
|
329
|
-
<name>Justin Palmer</name>
|
|
330
|
-
<email>justin@activereload.net</email>
|
|
331
|
-
</committer>
|
|
332
|
-
</commit>
|
|
333
|
-
<commit>
|
|
334
|
-
<message>Lazily initialize the data source and other changes</message>
|
|
335
|
-
<parents type="array">
|
|
336
|
-
<parent>
|
|
337
|
-
<id>cb998729c0961b41f71e96207938698385d92427</id>
|
|
338
|
-
</parent>
|
|
339
|
-
</parents>
|
|
340
|
-
<url>http://github.com/Caged/gitnub/commit/1463286d9bf53a87ea7bbfa49773b39e5a97720c</url>
|
|
341
|
-
<author>
|
|
342
|
-
<name>Justin Palmer</name>
|
|
343
|
-
<email>justin@activereload.net</email>
|
|
344
|
-
</author>
|
|
345
|
-
<id>1463286d9bf53a87ea7bbfa49773b39e5a97720c</id>
|
|
346
|
-
<committed-date>2008-10-04T14:02:00-07:00</committed-date>
|
|
347
|
-
<authored-date>2008-10-04T14:02:00-07:00</authored-date>
|
|
348
|
-
<tree>8c1a3fd39398c57863a82f26b643db85457ccab0</tree>
|
|
349
|
-
<committer>
|
|
350
|
-
<name>Justin Palmer</name>
|
|
351
|
-
<email>justin@activereload.net</email>
|
|
352
|
-
</committer>
|
|
353
|
-
</commit>
|
|
354
|
-
<commit>
|
|
355
|
-
<message>Automagically expand the first item in the outline view</message>
|
|
356
|
-
<parents type="array">
|
|
357
|
-
<parent>
|
|
358
|
-
<id>0b806fce97831ac2ac3fe3da438cb342321db031</id>
|
|
359
|
-
</parent>
|
|
360
|
-
</parents>
|
|
361
|
-
<url>http://github.com/Caged/gitnub/commit/cb998729c0961b41f71e96207938698385d92427</url>
|
|
362
|
-
<author>
|
|
363
|
-
<name>Justin Palmer</name>
|
|
364
|
-
<email>justin@activereload.net</email>
|
|
365
|
-
</author>
|
|
366
|
-
<id>cb998729c0961b41f71e96207938698385d92427</id>
|
|
367
|
-
<committed-date>2008-10-02T16:25:08-07:00</committed-date>
|
|
368
|
-
<authored-date>2008-10-02T16:25:08-07:00</authored-date>
|
|
369
|
-
<tree>e6ab203b8eac7bb7485014b9242ac9cf3f959537</tree>
|
|
370
|
-
<committer>
|
|
371
|
-
<name>Justin Palmer</name>
|
|
372
|
-
<email>justin@activereload.net</email>
|
|
373
|
-
</committer>
|
|
374
|
-
</commit>
|
|
375
|
-
<commit>
|
|
376
|
-
<message>style repo name as a heading in the outline view. still needs work</message>
|
|
377
|
-
<parents type="array">
|
|
378
|
-
<parent>
|
|
379
|
-
<id>a73281b53ef4066222e5371ed503a23f02750ac9</id>
|
|
380
|
-
</parent>
|
|
381
|
-
</parents>
|
|
382
|
-
<url>http://github.com/Caged/gitnub/commit/0b806fce97831ac2ac3fe3da438cb342321db031</url>
|
|
383
|
-
<author>
|
|
384
|
-
<name>Justin Palmer</name>
|
|
385
|
-
<email>justin@activereload.net</email>
|
|
386
|
-
</author>
|
|
387
|
-
<id>0b806fce97831ac2ac3fe3da438cb342321db031</id>
|
|
388
|
-
<committed-date>2008-10-02T15:29:45-07:00</committed-date>
|
|
389
|
-
<authored-date>2008-10-02T15:29:45-07:00</authored-date>
|
|
390
|
-
<tree>62b4a674006e99bafaa38c5737107ca1dc79861f</tree>
|
|
391
|
-
<committer>
|
|
392
|
-
<name>Justin Palmer</name>
|
|
393
|
-
<email>justin@activereload.net</email>
|
|
394
|
-
</committer>
|
|
395
|
-
</commit>
|
|
396
|
-
<commit>
|
|
397
|
-
<message>Outline view now shows icons and is sized correctly</message>
|
|
398
|
-
<parents type="array">
|
|
399
|
-
<parent>
|
|
400
|
-
<id>8f0f09f78d6e4bfcf45023074aa3efd2fe20c3da</id>
|
|
401
|
-
</parent>
|
|
402
|
-
</parents>
|
|
403
|
-
<url>http://github.com/Caged/gitnub/commit/a73281b53ef4066222e5371ed503a23f02750ac9</url>
|
|
404
|
-
<author>
|
|
405
|
-
<name>Justin Palmer</name>
|
|
406
|
-
<email>justin@activereload.net</email>
|
|
407
|
-
</author>
|
|
408
|
-
<id>a73281b53ef4066222e5371ed503a23f02750ac9</id>
|
|
409
|
-
<committed-date>2008-10-02T15:04:42-07:00</committed-date>
|
|
410
|
-
<authored-date>2008-10-02T15:04:42-07:00</authored-date>
|
|
411
|
-
<tree>9ebe679e0f8279a0a694a9c8817caf1c5b4f10dc</tree>
|
|
412
|
-
<committer>
|
|
413
|
-
<name>Justin Palmer</name>
|
|
414
|
-
<email>justin@activereload.net</email>
|
|
415
|
-
</committer>
|
|
416
|
-
</commit>
|
|
417
|
-
<commit>
|
|
418
|
-
<message>Outline view now shows generic list of repo file system</message>
|
|
419
|
-
<parents type="array">
|
|
420
|
-
<parent>
|
|
421
|
-
<id>0c47f4a5a6cae93727833055c3670dee31232a85</id>
|
|
422
|
-
</parent>
|
|
423
|
-
</parents>
|
|
424
|
-
<url>http://github.com/Caged/gitnub/commit/8f0f09f78d6e4bfcf45023074aa3efd2fe20c3da</url>
|
|
425
|
-
<author>
|
|
426
|
-
<name>Justin Palmer</name>
|
|
427
|
-
<email>justin@activereload.net</email>
|
|
428
|
-
</author>
|
|
429
|
-
<id>8f0f09f78d6e4bfcf45023074aa3efd2fe20c3da</id>
|
|
430
|
-
<committed-date>2008-10-01T17:45:33-07:00</committed-date>
|
|
431
|
-
<authored-date>2008-10-01T17:45:33-07:00</authored-date>
|
|
432
|
-
<tree>43c725302acf5858dd9ed16e61b3f3b6df7bbb3b</tree>
|
|
433
|
-
<committer>
|
|
434
|
-
<name>Justin Palmer</name>
|
|
435
|
-
<email>justin@activereload.net</email>
|
|
436
|
-
</committer>
|
|
437
|
-
</commit>
|
|
438
|
-
<commit>
|
|
439
|
-
<message>Grit wants a string when fetching commits. Lets comply</message>
|
|
440
|
-
<parents type="array">
|
|
441
|
-
<parent>
|
|
442
|
-
<id>8676e1d219cbd6be0a61f3b3213f3fabab7ceaa3</id>
|
|
443
|
-
</parent>
|
|
444
|
-
</parents>
|
|
445
|
-
<url>http://github.com/Caged/gitnub/commit/0c47f4a5a6cae93727833055c3670dee31232a85</url>
|
|
446
|
-
<author>
|
|
447
|
-
<name>Justin Palmer</name>
|
|
448
|
-
<email>justin@activereload.net</email>
|
|
449
|
-
</author>
|
|
450
|
-
<id>0c47f4a5a6cae93727833055c3670dee31232a85</id>
|
|
451
|
-
<committed-date>2008-09-30T16:18:17-07:00</committed-date>
|
|
452
|
-
<authored-date>2008-09-30T16:18:17-07:00</authored-date>
|
|
453
|
-
<tree>86cc237ad0cea4b9a4298e8678b7c16423167a57</tree>
|
|
454
|
-
<committer>
|
|
455
|
-
<name>Justin Palmer</name>
|
|
456
|
-
<email>justin@activereload.net</email>
|
|
457
|
-
</committer>
|
|
458
|
-
</commit>
|
|
459
|
-
<commit>
|
|
460
|
-
<message>Update grit to latest</message>
|
|
461
|
-
<parents type="array">
|
|
462
|
-
<parent>
|
|
463
|
-
<id>15434ab38a2db6c250d619d423773acec44ba863</id>
|
|
464
|
-
</parent>
|
|
465
|
-
</parents>
|
|
466
|
-
<url>http://github.com/Caged/gitnub/commit/8676e1d219cbd6be0a61f3b3213f3fabab7ceaa3</url>
|
|
467
|
-
<author>
|
|
468
|
-
<name>Justin Palmer</name>
|
|
469
|
-
<email>justin@activereload.net</email>
|
|
470
|
-
</author>
|
|
471
|
-
<id>8676e1d219cbd6be0a61f3b3213f3fabab7ceaa3</id>
|
|
472
|
-
<committed-date>2008-09-30T16:15:21-07:00</committed-date>
|
|
473
|
-
<authored-date>2008-09-30T16:15:21-07:00</authored-date>
|
|
474
|
-
<tree>e41d6c598cf324d1df4bd70f0b6355ed73aacf75</tree>
|
|
475
|
-
<committer>
|
|
476
|
-
<name>Justin Palmer</name>
|
|
477
|
-
<email>justin@activereload.net</email>
|
|
478
|
-
</committer>
|
|
479
|
-
</commit>
|
|
480
|
-
<commit>
|
|
481
|
-
<message>Add tab for blameview</message>
|
|
482
|
-
<parents type="array">
|
|
483
|
-
<parent>
|
|
484
|
-
<id>9ad529d695799f9c28805b77f6b178b2287a46ac</id>
|
|
485
|
-
</parent>
|
|
486
|
-
</parents>
|
|
487
|
-
<url>http://github.com/Caged/gitnub/commit/15434ab38a2db6c250d619d423773acec44ba863</url>
|
|
488
|
-
<author>
|
|
489
|
-
<name>Justin Palmer</name>
|
|
490
|
-
<email>justin@activereload.net</email>
|
|
491
|
-
</author>
|
|
492
|
-
<id>15434ab38a2db6c250d619d423773acec44ba863</id>
|
|
493
|
-
<committed-date>2008-09-30T16:10:09-07:00</committed-date>
|
|
494
|
-
<authored-date>2008-09-30T16:10:09-07:00</authored-date>
|
|
495
|
-
<tree>d048af0b68fcc0b7327cc5da94550f3d52cda31e</tree>
|
|
496
|
-
<committer>
|
|
497
|
-
<name>Justin Palmer</name>
|
|
498
|
-
<email>justin@activereload.net</email>
|
|
499
|
-
</committer>
|
|
500
|
-
</commit>
|
|
501
|
-
<commit>
|
|
502
|
-
<message>updated grit</message>
|
|
503
|
-
<parents type="array">
|
|
504
|
-
<parent>
|
|
505
|
-
<id>864414b6acf345f9ce8735cc7b0f0621f34ccf29</id>
|
|
506
|
-
</parent>
|
|
507
|
-
</parents>
|
|
508
|
-
<url>http://github.com/Caged/gitnub/commit/9ad529d695799f9c28805b77f6b178b2287a46ac</url>
|
|
509
|
-
<author>
|
|
510
|
-
<name>Justin Palmer</name>
|
|
511
|
-
<email>justin@activereload.net</email>
|
|
512
|
-
</author>
|
|
513
|
-
<id>9ad529d695799f9c28805b77f6b178b2287a46ac</id>
|
|
514
|
-
<committed-date>2008-09-25T11:33:12-07:00</committed-date>
|
|
515
|
-
<authored-date>2008-09-25T11:33:12-07:00</authored-date>
|
|
516
|
-
<tree>c7997e177d2332feda6f2661dafca3db277be234</tree>
|
|
517
|
-
<committer>
|
|
518
|
-
<name>Justin Palmer</name>
|
|
519
|
-
<email>justin@activereload.net</email>
|
|
520
|
-
</committer>
|
|
521
|
-
</commit>
|
|
522
|
-
<commit>
|
|
523
|
-
<message>Add GitNubView, prepping for custom drag and drop operations</message>
|
|
524
|
-
<parents type="array">
|
|
525
|
-
<parent>
|
|
526
|
-
<id>add5c9476f720a58a29eb5107e77efd1dd09f5d1</id>
|
|
527
|
-
</parent>
|
|
528
|
-
</parents>
|
|
529
|
-
<url>http://github.com/Caged/gitnub/commit/864414b6acf345f9ce8735cc7b0f0621f34ccf29</url>
|
|
530
|
-
<author>
|
|
531
|
-
<name>Justin Palmer</name>
|
|
532
|
-
<email>justin@activereload.net</email>
|
|
533
|
-
</author>
|
|
534
|
-
<id>864414b6acf345f9ce8735cc7b0f0621f34ccf29</id>
|
|
535
|
-
<committed-date>2008-08-27T23:41:32-07:00</committed-date>
|
|
536
|
-
<authored-date>2008-08-27T23:41:32-07:00</authored-date>
|
|
537
|
-
<tree>76c1891047cc34df57ebb1d8dae578657fa80015</tree>
|
|
538
|
-
<committer>
|
|
539
|
-
<name>Justin Palmer</name>
|
|
540
|
-
<email>justin@activereload.net</email>
|
|
541
|
-
</committer>
|
|
542
|
-
</commit>
|
|
543
|
-
<commit>
|
|
544
|
-
<message>Reorganize project into specific directories</message>
|
|
545
|
-
<parents type="array">
|
|
546
|
-
<parent>
|
|
547
|
-
<id>cb3fdfc79fa0fd91ff38653c162eb046e18c13c1</id>
|
|
548
|
-
</parent>
|
|
549
|
-
</parents>
|
|
550
|
-
<url>http://github.com/Caged/gitnub/commit/add5c9476f720a58a29eb5107e77efd1dd09f5d1</url>
|
|
551
|
-
<author>
|
|
552
|
-
<name>Justin Palmer</name>
|
|
553
|
-
<email>justin@activereload.net</email>
|
|
554
|
-
</author>
|
|
555
|
-
<id>add5c9476f720a58a29eb5107e77efd1dd09f5d1</id>
|
|
556
|
-
<committed-date>2008-08-27T01:05:17-07:00</committed-date>
|
|
557
|
-
<authored-date>2008-08-27T01:05:17-07:00</authored-date>
|
|
558
|
-
<tree>651c20f691adf9b47c4b767342d51acddd69a80d</tree>
|
|
559
|
-
<committer>
|
|
560
|
-
<name>Justin Palmer</name>
|
|
561
|
-
<email>justin@activereload.net</email>
|
|
562
|
-
</committer>
|
|
563
|
-
</commit>
|
|
564
|
-
<commit>
|
|
565
|
-
<message>Fixes #27: Launching from a repo that hasn't had an initial import</message>
|
|
566
|
-
<parents type="array">
|
|
567
|
-
<parent>
|
|
568
|
-
<id>0812fc6ab092e9c4bf1e5957331a1357ecc6a3b1</id>
|
|
569
|
-
</parent>
|
|
570
|
-
</parents>
|
|
571
|
-
<url>http://github.com/Caged/gitnub/commit/cb3fdfc79fa0fd91ff38653c162eb046e18c13c1</url>
|
|
572
|
-
<author>
|
|
573
|
-
<name>Justin Palmer</name>
|
|
574
|
-
<email>justin@activereload.net</email>
|
|
575
|
-
</author>
|
|
576
|
-
<id>cb3fdfc79fa0fd91ff38653c162eb046e18c13c1</id>
|
|
577
|
-
<committed-date>2008-08-22T10:30:30-07:00</committed-date>
|
|
578
|
-
<authored-date>2008-08-22T10:30:30-07:00</authored-date>
|
|
579
|
-
<tree>24f42fb94c83481f72884a7ae1a59652a4588bd8</tree>
|
|
580
|
-
<committer>
|
|
581
|
-
<name>Justin Palmer</name>
|
|
582
|
-
<email>justin@activereload.net</email>
|
|
583
|
-
</committer>
|
|
584
|
-
</commit>
|
|
585
|
-
<commit>
|
|
586
|
-
<message>Bumped the version to 0.9.1</message>
|
|
587
|
-
<parents type="array">
|
|
588
|
-
<parent>
|
|
589
|
-
<id>a4fadf01f51b08897138642dd94217b8a941697a</id>
|
|
590
|
-
</parent>
|
|
591
|
-
</parents>
|
|
592
|
-
<url>http://github.com/Caged/gitnub/commit/0812fc6ab092e9c4bf1e5957331a1357ecc6a3b1</url>
|
|
593
|
-
<author>
|
|
594
|
-
<name>Justin Palmer</name>
|
|
595
|
-
<email>justin@activereload.net</email>
|
|
596
|
-
</author>
|
|
597
|
-
<id>0812fc6ab092e9c4bf1e5957331a1357ecc6a3b1</id>
|
|
598
|
-
<committed-date>2008-08-05T18:45:01-07:00</committed-date>
|
|
599
|
-
<authored-date>2008-08-05T18:45:01-07:00</authored-date>
|
|
600
|
-
<tree>c548ed99d2d6824a7ca13ede6a9480665681c155</tree>
|
|
601
|
-
<committer>
|
|
602
|
-
<name>Justin Palmer</name>
|
|
603
|
-
<email>justin@activereload.net</email>
|
|
604
|
-
</committer>
|
|
605
|
-
</commit>
|
|
606
|
-
<commit>
|
|
607
|
-
<message>Oops, left in a debug line</message>
|
|
608
|
-
<parents type="array">
|
|
609
|
-
<parent>
|
|
610
|
-
<id>1c29dfa5f074871565fb9ba7a8bbc23964573a39</id>
|
|
611
|
-
</parent>
|
|
612
|
-
</parents>
|
|
613
|
-
<url>http://github.com/Caged/gitnub/commit/a4fadf01f51b08897138642dd94217b8a941697a</url>
|
|
614
|
-
<author>
|
|
615
|
-
<name>Justin Palmer</name>
|
|
616
|
-
<email>justin@activereload.net</email>
|
|
617
|
-
</author>
|
|
618
|
-
<id>a4fadf01f51b08897138642dd94217b8a941697a</id>
|
|
619
|
-
<committed-date>2008-08-05T18:06:57-07:00</committed-date>
|
|
620
|
-
<authored-date>2008-08-05T18:06:57-07:00</authored-date>
|
|
621
|
-
<tree>8c7f121ec73bdb04a620d3232cc60e66b2d2fc0c</tree>
|
|
622
|
-
<committer>
|
|
623
|
-
<name>Justin Palmer</name>
|
|
624
|
-
<email>justin@activereload.net</email>
|
|
625
|
-
</committer>
|
|
626
|
-
</commit>
|
|
627
|
-
<commit>
|
|
628
|
-
<message>Fixes #19 LSOpenURLFromSpec and the gazillion duplicate versions of that ticket. yay
|
|
629
|
-
"</message>
|
|
630
|
-
<parents type="array">
|
|
631
|
-
<parent>
|
|
632
|
-
<id>8f40c3e677bcf5a58caabf209f321284d812fb0a</id>
|
|
633
|
-
</parent>
|
|
634
|
-
</parents>
|
|
635
|
-
<url>http://github.com/Caged/gitnub/commit/1c29dfa5f074871565fb9ba7a8bbc23964573a39</url>
|
|
636
|
-
<author>
|
|
637
|
-
<name>Justin Palmer</name>
|
|
638
|
-
<email>justin@activereload.net</email>
|
|
639
|
-
</author>
|
|
640
|
-
<id>1c29dfa5f074871565fb9ba7a8bbc23964573a39</id>
|
|
641
|
-
<committed-date>2008-08-05T18:05:29-07:00</committed-date>
|
|
642
|
-
<authored-date>2008-08-05T18:05:29-07:00</authored-date>
|
|
643
|
-
<tree>7319cfe3e89d79322e1395610b23239660c72f01</tree>
|
|
644
|
-
<committer>
|
|
645
|
-
<name>Justin Palmer</name>
|
|
646
|
-
<email>justin@activereload.net</email>
|
|
647
|
-
</committer>
|
|
648
|
-
</commit>
|
|
649
|
-
</commits>
|