git_reflow 0.8.10 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -0
- data/.ruby-version +1 -1
- data/Appraisals +1 -6
- data/CHANGELOG.md +426 -348
- data/Gemfile.lock +15 -19
- data/LICENSE +20 -20
- data/README.md +27 -7
- data/Rakefile +8 -8
- data/bin/console +7 -7
- data/bin/setup +6 -6
- data/circle.yml +5 -5
- data/exe/git-reflow +9 -30
- data/git_reflow.gemspec +1 -2
- data/lib/git_reflow/config.rb +22 -13
- data/lib/git_reflow/git_helpers.rb +69 -22
- data/lib/git_reflow/git_server/base.rb +68 -68
- data/lib/git_reflow/git_server/git_hub/pull_request.rb +15 -13
- data/lib/git_reflow/git_server/pull_request.rb +4 -2
- data/lib/git_reflow/merge_error.rb +9 -9
- data/lib/git_reflow/rspec/command_line_helpers.rb +9 -1
- data/lib/git_reflow/rspec/stub_helpers.rb +13 -13
- data/lib/git_reflow/rspec/workflow_helpers.rb +18 -0
- data/lib/git_reflow/rspec.rb +1 -0
- data/lib/git_reflow/sandbox.rb +1 -0
- data/lib/git_reflow/version.rb +1 -1
- data/lib/git_reflow/workflow.rb +277 -9
- data/lib/git_reflow/workflows/FlatMergeWorkflow +38 -0
- data/lib/git_reflow/workflows/core.rb +208 -79
- data/lib/git_reflow.rb +3 -14
- data/spec/fixtures/awesome_workflow.rb +2 -6
- data/spec/fixtures/git/git_config +7 -7
- data/spec/fixtures/issues/comment.json.erb +27 -27
- data/spec/fixtures/issues/comments.json +29 -29
- data/spec/fixtures/issues/comments.json.erb +15 -15
- data/spec/fixtures/pull_requests/comment.json.erb +45 -45
- data/spec/fixtures/pull_requests/comments.json +47 -47
- data/spec/fixtures/pull_requests/comments.json.erb +15 -15
- data/spec/fixtures/pull_requests/commits.json +29 -29
- data/spec/fixtures/pull_requests/external_pull_request.json +145 -145
- data/spec/fixtures/pull_requests/pull_request.json +142 -142
- data/spec/fixtures/pull_requests/pull_request.json.erb +142 -142
- data/spec/fixtures/pull_requests/pull_request_branch_nonexistent_error.json +32 -0
- data/spec/fixtures/pull_requests/pull_request_exists_error.json +32 -32
- data/spec/fixtures/pull_requests/pull_requests.json +136 -136
- data/spec/fixtures/repositories/commit.json +53 -53
- data/spec/fixtures/repositories/commit.json.erb +53 -53
- data/spec/fixtures/repositories/commits.json.erb +13 -13
- data/spec/fixtures/repositories/statuses.json +31 -31
- data/spec/lib/git_reflow/git_helpers_spec.rb +115 -12
- data/spec/lib/git_reflow/git_server/git_hub/pull_request_spec.rb +6 -6
- data/spec/lib/git_reflow/git_server/pull_request_spec.rb +9 -3
- data/spec/lib/git_reflow/workflow_spec.rb +190 -11
- data/spec/lib/git_reflow/workflows/core_spec.rb +224 -65
- data/spec/lib/git_reflow/workflows/flat_merge_spec.rb +17 -6
- data/spec/lib/git_reflow_spec.rb +2 -25
- data/spec/spec_helper.rb +3 -0
- data/spec/support/github_helpers.rb +1 -1
- data/spec/support/mock_pull_request.rb +17 -17
- data/spec/support/web_mocks.rb +39 -39
- metadata +9 -28
- data/lib/git_reflow/commands/deliver.rb +0 -10
- data/lib/git_reflow/commands/refresh.rb +0 -20
- data/lib/git_reflow/commands/review.rb +0 -13
- data/lib/git_reflow/commands/setup.rb +0 -11
- data/lib/git_reflow/commands/stage.rb +0 -9
- data/lib/git_reflow/commands/start.rb +0 -18
- data/lib/git_reflow/commands/status.rb +0 -7
- data/lib/git_reflow/workflows/flat_merge.rb +0 -10
- data/spec/fixtures/workflow_with_super.rb +0 -8
@@ -1,145 +1,145 @@
|
|
1
|
-
{
|
2
|
-
"url": "https://api.github.com/reenhanced/repo/pulls/2",
|
3
|
-
"html_url": "https://github.com/reenhanced/repo/pulls/2",
|
4
|
-
"diff_url": "https://github.com/reenhanced/repo/pulls/2.diff",
|
5
|
-
"patch_url": "https://github.com/reenhanced/repo/pulls/2.patch",
|
6
|
-
"issue_url": "https://github.com/reenhanced/repo/issue/2",
|
7
|
-
"number": 2,
|
8
|
-
"state": "open",
|
9
|
-
"title": "new-external-feature",
|
10
|
-
"body": "Please pull these awesome changes",
|
11
|
-
"created_at": "2011-01-26T19:01:12Z",
|
12
|
-
"updated_at": "2011-01-26T19:01:12Z",
|
13
|
-
"closed_at": "2011-01-26T19:01:12Z",
|
14
|
-
"merged_at": "2011-01-26T19:01:12Z",
|
15
|
-
"_links": {
|
16
|
-
"self": {
|
17
|
-
"href": "https://api.github.com/reenhanced/repo/pulls/2"
|
18
|
-
},
|
19
|
-
"html": {
|
20
|
-
"href": "https://github.com/reenhanced/repo/pull/2"
|
21
|
-
},
|
22
|
-
"comments": {
|
23
|
-
"href": "https://api.github.com/reenhanced/repo/issues/2/comments"
|
24
|
-
},
|
25
|
-
"review_comments": {
|
26
|
-
"href": "https://api.github.com/reenhanced/repo/pulls/2/comments"
|
27
|
-
}
|
28
|
-
},
|
29
|
-
"merged": false,
|
30
|
-
"mergeable": true,
|
31
|
-
"merged_by": {
|
32
|
-
"login": "reenhanced",
|
33
|
-
"id": 1,
|
34
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
35
|
-
"gravatar_id": "somehexcode",
|
36
|
-
"url": "https://api.github.com/users/reenhanced"
|
37
|
-
},
|
38
|
-
"comments": 10,
|
39
|
-
"commits": 3,
|
40
|
-
"additions": 100,
|
41
|
-
"deletions": 3,
|
42
|
-
"changed_files": 5,
|
43
|
-
"user": {
|
44
|
-
"login": "reenhanced",
|
45
|
-
"id": 1,
|
46
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
47
|
-
"gravatar_id": "",
|
48
|
-
"url": "https://api.github.com/users/reenhanced",
|
49
|
-
"html_url": "https://github.com/reenhanced",
|
50
|
-
"followers_url": "https://api.github.com/users/reenhanced/followers",
|
51
|
-
"following_url":
|
52
|
-
"https://api.github.com/users/reenhanced/following{/other_user}",
|
53
|
-
"gists_url": "https://api.github.com/users/reenhanced/gists{/gist_id}",
|
54
|
-
"starred_url":
|
55
|
-
"https://api.github.com/users/reenhanced/starred{/owner}{/repo}",
|
56
|
-
"subscriptions_url": "https://api.github.com/users/reenhanced/subscriptions",
|
57
|
-
"organizations_url": "https://api.github.com/users/reenhanced/orgs",
|
58
|
-
"repos_url": "https://api.github.com/users/reenhanced/repos",
|
59
|
-
"events_url": "https://api.github.com/users/reenhanced/events{/privacy}",
|
60
|
-
"received_events_url":
|
61
|
-
"https://api.github.com/users/reenhanced/received_events",
|
62
|
-
"type": "User",
|
63
|
-
"site_admin": false
|
64
|
-
},
|
65
|
-
"head": {
|
66
|
-
"label": "new-external-feature",
|
67
|
-
"ref": "new-external-feature",
|
68
|
-
"sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
|
69
|
-
"user": {
|
70
|
-
"login": "octocat",
|
71
|
-
"id": 1,
|
72
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
73
|
-
"gravatar_id": "somehexcode",
|
74
|
-
"url": "https://api.github.com/users/octocat"
|
75
|
-
},
|
76
|
-
"repo": {
|
77
|
-
"url": "https://api.github.com/repos/octocat/repo",
|
78
|
-
"html_url": "https://github.com/octocat/repo",
|
79
|
-
"clone_url": "https://github.com/octocat/repo.git",
|
80
|
-
"git_url": "git://github.com/octocat/repo.git",
|
81
|
-
"ssh_url": "git@github.com:octocat/repo.git",
|
82
|
-
"svn_url": "https://svn.github.com/octocat/repo",
|
83
|
-
"owner": {
|
84
|
-
"login": "octocat",
|
85
|
-
"id": 1,
|
86
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
87
|
-
"gravatar_id": "somehexcode",
|
88
|
-
"url": "https://api.github.com/users/octocat"
|
89
|
-
},
|
90
|
-
"name": "repo",
|
91
|
-
"description": "This your first repo!",
|
92
|
-
"homepage": "https://github.com",
|
93
|
-
"language": null,
|
94
|
-
"private": false,
|
95
|
-
"fork": false,
|
96
|
-
"forks": 9,
|
97
|
-
"watchers": 80,
|
98
|
-
"size": 108,
|
99
|
-
"master_branch": "master",
|
100
|
-
"open_issues": 0,
|
101
|
-
"pushed_at": "2011-01-26T19:06:43Z",
|
102
|
-
"created_at": "2011-01-26T19:01:12Z"
|
103
|
-
}
|
104
|
-
},
|
105
|
-
"base": {
|
106
|
-
"label": "reenhanced:master",
|
107
|
-
"ref": "master",
|
108
|
-
"sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
|
109
|
-
"user": {
|
110
|
-
"login": "reenhanced",
|
111
|
-
"id": 1,
|
112
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
113
|
-
"gravatar_id": "somehexcode",
|
114
|
-
"url": "https://api.github.com/users/reenhanced"
|
115
|
-
},
|
116
|
-
"repo": {
|
117
|
-
"url": "https://api.github.com/repos/reenhanced/repo",
|
118
|
-
"html_url": "https://github.com/reenhanced/repo",
|
119
|
-
"clone_url": "https://github.com/reenhanced/repo.git",
|
120
|
-
"git_url": "git://github.com/reenhanced/repo.git",
|
121
|
-
"ssh_url": "git@github.com:reenhanced/repo.git",
|
122
|
-
"svn_url": "https://svn.github.com/reenhanced/repo",
|
123
|
-
"owner": {
|
124
|
-
"login": "reenhanced",
|
125
|
-
"id": 1,
|
126
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
127
|
-
"gravatar_id": "somehexcode",
|
128
|
-
"url": "https://api.github.com/users/reenhanced"
|
129
|
-
},
|
130
|
-
"name": "repo",
|
131
|
-
"description": "This your first repo!",
|
132
|
-
"homepage": "https://github.com",
|
133
|
-
"language": null,
|
134
|
-
"private": false,
|
135
|
-
"fork": false,
|
136
|
-
"forks": 9,
|
137
|
-
"watchers": 80,
|
138
|
-
"size": 108,
|
139
|
-
"master_branch": "master",
|
140
|
-
"open_issues": 0,
|
141
|
-
"pushed_at": "2011-01-26T19:06:43Z",
|
142
|
-
"created_at": "2011-01-26T19:01:12Z"
|
143
|
-
}
|
144
|
-
}
|
145
|
-
}
|
1
|
+
{
|
2
|
+
"url": "https://api.github.com/reenhanced/repo/pulls/2",
|
3
|
+
"html_url": "https://github.com/reenhanced/repo/pulls/2",
|
4
|
+
"diff_url": "https://github.com/reenhanced/repo/pulls/2.diff",
|
5
|
+
"patch_url": "https://github.com/reenhanced/repo/pulls/2.patch",
|
6
|
+
"issue_url": "https://github.com/reenhanced/repo/issue/2",
|
7
|
+
"number": 2,
|
8
|
+
"state": "open",
|
9
|
+
"title": "new-external-feature",
|
10
|
+
"body": "Please pull these awesome changes",
|
11
|
+
"created_at": "2011-01-26T19:01:12Z",
|
12
|
+
"updated_at": "2011-01-26T19:01:12Z",
|
13
|
+
"closed_at": "2011-01-26T19:01:12Z",
|
14
|
+
"merged_at": "2011-01-26T19:01:12Z",
|
15
|
+
"_links": {
|
16
|
+
"self": {
|
17
|
+
"href": "https://api.github.com/reenhanced/repo/pulls/2"
|
18
|
+
},
|
19
|
+
"html": {
|
20
|
+
"href": "https://github.com/reenhanced/repo/pull/2"
|
21
|
+
},
|
22
|
+
"comments": {
|
23
|
+
"href": "https://api.github.com/reenhanced/repo/issues/2/comments"
|
24
|
+
},
|
25
|
+
"review_comments": {
|
26
|
+
"href": "https://api.github.com/reenhanced/repo/pulls/2/comments"
|
27
|
+
}
|
28
|
+
},
|
29
|
+
"merged": false,
|
30
|
+
"mergeable": true,
|
31
|
+
"merged_by": {
|
32
|
+
"login": "reenhanced",
|
33
|
+
"id": 1,
|
34
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
35
|
+
"gravatar_id": "somehexcode",
|
36
|
+
"url": "https://api.github.com/users/reenhanced"
|
37
|
+
},
|
38
|
+
"comments": 10,
|
39
|
+
"commits": 3,
|
40
|
+
"additions": 100,
|
41
|
+
"deletions": 3,
|
42
|
+
"changed_files": 5,
|
43
|
+
"user": {
|
44
|
+
"login": "reenhanced",
|
45
|
+
"id": 1,
|
46
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
47
|
+
"gravatar_id": "",
|
48
|
+
"url": "https://api.github.com/users/reenhanced",
|
49
|
+
"html_url": "https://github.com/reenhanced",
|
50
|
+
"followers_url": "https://api.github.com/users/reenhanced/followers",
|
51
|
+
"following_url":
|
52
|
+
"https://api.github.com/users/reenhanced/following{/other_user}",
|
53
|
+
"gists_url": "https://api.github.com/users/reenhanced/gists{/gist_id}",
|
54
|
+
"starred_url":
|
55
|
+
"https://api.github.com/users/reenhanced/starred{/owner}{/repo}",
|
56
|
+
"subscriptions_url": "https://api.github.com/users/reenhanced/subscriptions",
|
57
|
+
"organizations_url": "https://api.github.com/users/reenhanced/orgs",
|
58
|
+
"repos_url": "https://api.github.com/users/reenhanced/repos",
|
59
|
+
"events_url": "https://api.github.com/users/reenhanced/events{/privacy}",
|
60
|
+
"received_events_url":
|
61
|
+
"https://api.github.com/users/reenhanced/received_events",
|
62
|
+
"type": "User",
|
63
|
+
"site_admin": false
|
64
|
+
},
|
65
|
+
"head": {
|
66
|
+
"label": "new-external-feature",
|
67
|
+
"ref": "new-external-feature",
|
68
|
+
"sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
|
69
|
+
"user": {
|
70
|
+
"login": "octocat",
|
71
|
+
"id": 1,
|
72
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
73
|
+
"gravatar_id": "somehexcode",
|
74
|
+
"url": "https://api.github.com/users/octocat"
|
75
|
+
},
|
76
|
+
"repo": {
|
77
|
+
"url": "https://api.github.com/repos/octocat/repo",
|
78
|
+
"html_url": "https://github.com/octocat/repo",
|
79
|
+
"clone_url": "https://github.com/octocat/repo.git",
|
80
|
+
"git_url": "git://github.com/octocat/repo.git",
|
81
|
+
"ssh_url": "git@github.com:octocat/repo.git",
|
82
|
+
"svn_url": "https://svn.github.com/octocat/repo",
|
83
|
+
"owner": {
|
84
|
+
"login": "octocat",
|
85
|
+
"id": 1,
|
86
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
87
|
+
"gravatar_id": "somehexcode",
|
88
|
+
"url": "https://api.github.com/users/octocat"
|
89
|
+
},
|
90
|
+
"name": "repo",
|
91
|
+
"description": "This your first repo!",
|
92
|
+
"homepage": "https://github.com",
|
93
|
+
"language": null,
|
94
|
+
"private": false,
|
95
|
+
"fork": false,
|
96
|
+
"forks": 9,
|
97
|
+
"watchers": 80,
|
98
|
+
"size": 108,
|
99
|
+
"master_branch": "master",
|
100
|
+
"open_issues": 0,
|
101
|
+
"pushed_at": "2011-01-26T19:06:43Z",
|
102
|
+
"created_at": "2011-01-26T19:01:12Z"
|
103
|
+
}
|
104
|
+
},
|
105
|
+
"base": {
|
106
|
+
"label": "reenhanced:master",
|
107
|
+
"ref": "master",
|
108
|
+
"sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
|
109
|
+
"user": {
|
110
|
+
"login": "reenhanced",
|
111
|
+
"id": 1,
|
112
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
113
|
+
"gravatar_id": "somehexcode",
|
114
|
+
"url": "https://api.github.com/users/reenhanced"
|
115
|
+
},
|
116
|
+
"repo": {
|
117
|
+
"url": "https://api.github.com/repos/reenhanced/repo",
|
118
|
+
"html_url": "https://github.com/reenhanced/repo",
|
119
|
+
"clone_url": "https://github.com/reenhanced/repo.git",
|
120
|
+
"git_url": "git://github.com/reenhanced/repo.git",
|
121
|
+
"ssh_url": "git@github.com:reenhanced/repo.git",
|
122
|
+
"svn_url": "https://svn.github.com/reenhanced/repo",
|
123
|
+
"owner": {
|
124
|
+
"login": "reenhanced",
|
125
|
+
"id": 1,
|
126
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
127
|
+
"gravatar_id": "somehexcode",
|
128
|
+
"url": "https://api.github.com/users/reenhanced"
|
129
|
+
},
|
130
|
+
"name": "repo",
|
131
|
+
"description": "This your first repo!",
|
132
|
+
"homepage": "https://github.com",
|
133
|
+
"language": null,
|
134
|
+
"private": false,
|
135
|
+
"fork": false,
|
136
|
+
"forks": 9,
|
137
|
+
"watchers": 80,
|
138
|
+
"size": 108,
|
139
|
+
"master_branch": "master",
|
140
|
+
"open_issues": 0,
|
141
|
+
"pushed_at": "2011-01-26T19:06:43Z",
|
142
|
+
"created_at": "2011-01-26T19:01:12Z"
|
143
|
+
}
|
144
|
+
}
|
145
|
+
}
|
@@ -1,142 +1,142 @@
|
|
1
|
-
{
|
2
|
-
"url": "https://api.github.com/reenhanced/repo/pulls/1",
|
3
|
-
"html_url": "https://github.com/reenhanced/repo/pulls/1",
|
4
|
-
"diff_url": "https://github.com/reenhanced/repo/pulls/1.diff",
|
5
|
-
"patch_url": "https://github.com/reenhanced/repo/pulls/1.patch",
|
6
|
-
"issue_url": "https://github.com/reenhanced/repo/issue/1",
|
7
|
-
"number": 1,
|
8
|
-
"state": "open",
|
9
|
-
"title": "new-feature",
|
10
|
-
"body": "Please pull these awesome changes",
|
11
|
-
"created_at": "2011-01-26T19:01:12Z",
|
12
|
-
"updated_at": "2011-01-26T19:01:12Z",
|
13
|
-
"closed_at": "2011-01-26T19:01:12Z",
|
14
|
-
"merged_at": "2011-01-26T19:01:12Z",
|
15
|
-
"_links": {
|
16
|
-
"self": {
|
17
|
-
"href": "https://api.github.com/reenhanced/repo/pulls/1"
|
18
|
-
},
|
19
|
-
"html": {
|
20
|
-
"href": "https://github.com/reenhanced/repo/pull/1"
|
21
|
-
},
|
22
|
-
"comments": {
|
23
|
-
"href": "https://api.github.com/reenhanced/repo/issues/1/comments"
|
24
|
-
},
|
25
|
-
"review_comments": {
|
26
|
-
"href": "https://api.github.com/reenhanced/repo/pulls/1/comments"
|
27
|
-
}
|
28
|
-
},
|
29
|
-
"user": {
|
30
|
-
"login": "reenhanced",
|
31
|
-
"id": 1,
|
32
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
33
|
-
"gravatar_id": "",
|
34
|
-
"url": "https://api.github.com/users/reenhanced",
|
35
|
-
"html_url": "https://github.com/reenhanced",
|
36
|
-
"followers_url": "https://api.github.com/users/reenhanced/followers",
|
37
|
-
"following_url": "https://api.github.com/users/reenhanced/following{/other_user}",
|
38
|
-
"gists_url": "https://api.github.com/users/reenhanced/gists{/gist_id}",
|
39
|
-
"starred_url": "https://api.github.com/users/reenhanced/starred{/owner}{/repo}",
|
40
|
-
"subscriptions_url": "https://api.github.com/users/reenhanced/subscriptions",
|
41
|
-
"organizations_url": "https://api.github.com/users/reenhanced/orgs",
|
42
|
-
"repos_url": "https://api.github.com/users/reenhanced/repos",
|
43
|
-
"events_url": "https://api.github.com/users/reenhanced/events{/privacy}",
|
44
|
-
"received_events_url": "https://api.github.com/users/reenhanced/received_events",
|
45
|
-
"type": "User",
|
46
|
-
"site_admin": false
|
47
|
-
},
|
48
|
-
"merged": false,
|
49
|
-
"mergeable": true,
|
50
|
-
"merged_by": {
|
51
|
-
"login": "reenhanced",
|
52
|
-
"id": 1,
|
53
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
54
|
-
"gravatar_id": "somehexcode",
|
55
|
-
"url": "https://api.github.com/users/reenhanced"
|
56
|
-
},
|
57
|
-
"comments": 10,
|
58
|
-
"commits": 3,
|
59
|
-
"additions": 100,
|
60
|
-
"deletions": 3,
|
61
|
-
"changed_files": 5,
|
62
|
-
"head": {
|
63
|
-
"label": "new-feature",
|
64
|
-
"ref": "new-feature",
|
65
|
-
"sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
|
66
|
-
"user": {
|
67
|
-
"login": "reenhanced",
|
68
|
-
"id": 1,
|
69
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
70
|
-
"gravatar_id": "somehexcode",
|
71
|
-
"url": "https://api.github.com/users/reenhanced"
|
72
|
-
},
|
73
|
-
"repo": {
|
74
|
-
"url": "https://api.github.com/repos/reenhanced/repo",
|
75
|
-
"html_url": "https://github.com/reenhanced/repo",
|
76
|
-
"clone_url": "https://github.com/reenhanced/repo.git",
|
77
|
-
"git_url": "git://github.com/reenhanced/repo.git",
|
78
|
-
"ssh_url": "git@github.com:reenhanced/repo.git",
|
79
|
-
"svn_url": "https://svn.github.com/reenhanced/repo",
|
80
|
-
"owner": {
|
81
|
-
"login": "reenhanced",
|
82
|
-
"id": 1,
|
83
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
84
|
-
"gravatar_id": "somehexcode",
|
85
|
-
"url": "https://api.github.com/users/reenhanced"
|
86
|
-
},
|
87
|
-
"name": "repo",
|
88
|
-
"description": "This your first repo!",
|
89
|
-
"homepage": "https://github.com",
|
90
|
-
"language": null,
|
91
|
-
"private": false,
|
92
|
-
"fork": false,
|
93
|
-
"forks": 9,
|
94
|
-
"watchers": 80,
|
95
|
-
"size": 108,
|
96
|
-
"master_branch": "master",
|
97
|
-
"open_issues": 0,
|
98
|
-
"pushed_at": "2011-01-26T19:06:43Z",
|
99
|
-
"created_at": "2011-01-26T19:01:12Z"
|
100
|
-
}
|
101
|
-
},
|
102
|
-
"base": {
|
103
|
-
"label": "master",
|
104
|
-
"ref": "master",
|
105
|
-
"sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
|
106
|
-
"user": {
|
107
|
-
"login": "reenhanced",
|
108
|
-
"id": 1,
|
109
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
110
|
-
"gravatar_id": "somehexcode",
|
111
|
-
"url": "https://api.github.com/users/reenhanced"
|
112
|
-
},
|
113
|
-
"repo": {
|
114
|
-
"url": "https://api.github.com/repos/reenhanced/repo",
|
115
|
-
"html_url": "https://github.com/reenhanced/repo",
|
116
|
-
"clone_url": "https://github.com/reenhanced/repo.git",
|
117
|
-
"git_url": "git://github.com/reenhanced/repo.git",
|
118
|
-
"ssh_url": "git@github.com:reenhanced/repo.git",
|
119
|
-
"svn_url": "https://svn.github.com/reenhanced/repo",
|
120
|
-
"owner": {
|
121
|
-
"login": "reenhanced",
|
122
|
-
"id": 1,
|
123
|
-
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
124
|
-
"gravatar_id": "somehexcode",
|
125
|
-
"url": "https://api.github.com/users/reenhanced"
|
126
|
-
},
|
127
|
-
"name": "repo",
|
128
|
-
"description": "This your first repo!",
|
129
|
-
"homepage": "https://github.com",
|
130
|
-
"language": null,
|
131
|
-
"private": false,
|
132
|
-
"fork": false,
|
133
|
-
"forks": 9,
|
134
|
-
"watchers": 80,
|
135
|
-
"size": 108,
|
136
|
-
"master_branch": "master",
|
137
|
-
"open_issues": 0,
|
138
|
-
"pushed_at": "2011-01-26T19:06:43Z",
|
139
|
-
"created_at": "2011-01-26T19:01:12Z"
|
140
|
-
}
|
141
|
-
}
|
142
|
-
}
|
1
|
+
{
|
2
|
+
"url": "https://api.github.com/reenhanced/repo/pulls/1",
|
3
|
+
"html_url": "https://github.com/reenhanced/repo/pulls/1",
|
4
|
+
"diff_url": "https://github.com/reenhanced/repo/pulls/1.diff",
|
5
|
+
"patch_url": "https://github.com/reenhanced/repo/pulls/1.patch",
|
6
|
+
"issue_url": "https://github.com/reenhanced/repo/issue/1",
|
7
|
+
"number": 1,
|
8
|
+
"state": "open",
|
9
|
+
"title": "new-feature",
|
10
|
+
"body": "Please pull these awesome changes",
|
11
|
+
"created_at": "2011-01-26T19:01:12Z",
|
12
|
+
"updated_at": "2011-01-26T19:01:12Z",
|
13
|
+
"closed_at": "2011-01-26T19:01:12Z",
|
14
|
+
"merged_at": "2011-01-26T19:01:12Z",
|
15
|
+
"_links": {
|
16
|
+
"self": {
|
17
|
+
"href": "https://api.github.com/reenhanced/repo/pulls/1"
|
18
|
+
},
|
19
|
+
"html": {
|
20
|
+
"href": "https://github.com/reenhanced/repo/pull/1"
|
21
|
+
},
|
22
|
+
"comments": {
|
23
|
+
"href": "https://api.github.com/reenhanced/repo/issues/1/comments"
|
24
|
+
},
|
25
|
+
"review_comments": {
|
26
|
+
"href": "https://api.github.com/reenhanced/repo/pulls/1/comments"
|
27
|
+
}
|
28
|
+
},
|
29
|
+
"user": {
|
30
|
+
"login": "reenhanced",
|
31
|
+
"id": 1,
|
32
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
33
|
+
"gravatar_id": "",
|
34
|
+
"url": "https://api.github.com/users/reenhanced",
|
35
|
+
"html_url": "https://github.com/reenhanced",
|
36
|
+
"followers_url": "https://api.github.com/users/reenhanced/followers",
|
37
|
+
"following_url": "https://api.github.com/users/reenhanced/following{/other_user}",
|
38
|
+
"gists_url": "https://api.github.com/users/reenhanced/gists{/gist_id}",
|
39
|
+
"starred_url": "https://api.github.com/users/reenhanced/starred{/owner}{/repo}",
|
40
|
+
"subscriptions_url": "https://api.github.com/users/reenhanced/subscriptions",
|
41
|
+
"organizations_url": "https://api.github.com/users/reenhanced/orgs",
|
42
|
+
"repos_url": "https://api.github.com/users/reenhanced/repos",
|
43
|
+
"events_url": "https://api.github.com/users/reenhanced/events{/privacy}",
|
44
|
+
"received_events_url": "https://api.github.com/users/reenhanced/received_events",
|
45
|
+
"type": "User",
|
46
|
+
"site_admin": false
|
47
|
+
},
|
48
|
+
"merged": false,
|
49
|
+
"mergeable": true,
|
50
|
+
"merged_by": {
|
51
|
+
"login": "reenhanced",
|
52
|
+
"id": 1,
|
53
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
54
|
+
"gravatar_id": "somehexcode",
|
55
|
+
"url": "https://api.github.com/users/reenhanced"
|
56
|
+
},
|
57
|
+
"comments": 10,
|
58
|
+
"commits": 3,
|
59
|
+
"additions": 100,
|
60
|
+
"deletions": 3,
|
61
|
+
"changed_files": 5,
|
62
|
+
"head": {
|
63
|
+
"label": "new-feature",
|
64
|
+
"ref": "new-feature",
|
65
|
+
"sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
|
66
|
+
"user": {
|
67
|
+
"login": "reenhanced",
|
68
|
+
"id": 1,
|
69
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
70
|
+
"gravatar_id": "somehexcode",
|
71
|
+
"url": "https://api.github.com/users/reenhanced"
|
72
|
+
},
|
73
|
+
"repo": {
|
74
|
+
"url": "https://api.github.com/repos/reenhanced/repo",
|
75
|
+
"html_url": "https://github.com/reenhanced/repo",
|
76
|
+
"clone_url": "https://github.com/reenhanced/repo.git",
|
77
|
+
"git_url": "git://github.com/reenhanced/repo.git",
|
78
|
+
"ssh_url": "git@github.com:reenhanced/repo.git",
|
79
|
+
"svn_url": "https://svn.github.com/reenhanced/repo",
|
80
|
+
"owner": {
|
81
|
+
"login": "reenhanced",
|
82
|
+
"id": 1,
|
83
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
84
|
+
"gravatar_id": "somehexcode",
|
85
|
+
"url": "https://api.github.com/users/reenhanced"
|
86
|
+
},
|
87
|
+
"name": "repo",
|
88
|
+
"description": "This your first repo!",
|
89
|
+
"homepage": "https://github.com",
|
90
|
+
"language": null,
|
91
|
+
"private": false,
|
92
|
+
"fork": false,
|
93
|
+
"forks": 9,
|
94
|
+
"watchers": 80,
|
95
|
+
"size": 108,
|
96
|
+
"master_branch": "master",
|
97
|
+
"open_issues": 0,
|
98
|
+
"pushed_at": "2011-01-26T19:06:43Z",
|
99
|
+
"created_at": "2011-01-26T19:01:12Z"
|
100
|
+
}
|
101
|
+
},
|
102
|
+
"base": {
|
103
|
+
"label": "master",
|
104
|
+
"ref": "master",
|
105
|
+
"sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
|
106
|
+
"user": {
|
107
|
+
"login": "reenhanced",
|
108
|
+
"id": 1,
|
109
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
110
|
+
"gravatar_id": "somehexcode",
|
111
|
+
"url": "https://api.github.com/users/reenhanced"
|
112
|
+
},
|
113
|
+
"repo": {
|
114
|
+
"url": "https://api.github.com/repos/reenhanced/repo",
|
115
|
+
"html_url": "https://github.com/reenhanced/repo",
|
116
|
+
"clone_url": "https://github.com/reenhanced/repo.git",
|
117
|
+
"git_url": "git://github.com/reenhanced/repo.git",
|
118
|
+
"ssh_url": "git@github.com:reenhanced/repo.git",
|
119
|
+
"svn_url": "https://svn.github.com/reenhanced/repo",
|
120
|
+
"owner": {
|
121
|
+
"login": "reenhanced",
|
122
|
+
"id": 1,
|
123
|
+
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
|
124
|
+
"gravatar_id": "somehexcode",
|
125
|
+
"url": "https://api.github.com/users/reenhanced"
|
126
|
+
},
|
127
|
+
"name": "repo",
|
128
|
+
"description": "This your first repo!",
|
129
|
+
"homepage": "https://github.com",
|
130
|
+
"language": null,
|
131
|
+
"private": false,
|
132
|
+
"fork": false,
|
133
|
+
"forks": 9,
|
134
|
+
"watchers": 80,
|
135
|
+
"size": 108,
|
136
|
+
"master_branch": "master",
|
137
|
+
"open_issues": 0,
|
138
|
+
"pushed_at": "2011-01-26T19:06:43Z",
|
139
|
+
"created_at": "2011-01-26T19:01:12Z"
|
140
|
+
}
|
141
|
+
}
|
142
|
+
}
|