pr_summary 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +45 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/pr_summary +6 -0
- data/lib/pr_summary/branch_diff.rb +10 -0
- data/lib/pr_summary/file_diff.rb +55 -0
- data/lib/pr_summary/git.rb +78 -0
- data/lib/pr_summary/version.rb +3 -0
- data/lib/pr_summary.rb +78 -0
- data/pr_summary.gemspec +25 -0
- metadata +105 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4976834ede12de72752fa94ebecd0e025f46331b
|
4
|
+
data.tar.gz: 0fa689a6f2903f3dcd34cfbc97a8074dbc9a75a0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d6fc190d6651c198d0ae0e961d3461f48ee2e2d9737022ff3bdc3d10ba35fee684e4c275d6c10513014429b8233756cd078dfdb06f653a8670f72d2c346d3883
|
7
|
+
data.tar.gz: 829fc1eee17d8b699d6cd8d9be3148d76dba44cebe4cab7d14768b7806dbce1c24b4879f81e339d2d553974e881626b6190e5744bff9237f59b6898f7e6d7f17
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at dustin@zeisler.net. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Dustin Zeisler
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# PrSummary
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pr_summary`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'pr_summary'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install pr_summary
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
```bash
|
26
|
+
pr_summary [pull_request_number] [branch] [base]
|
27
|
+
```
|
28
|
+
|
29
|
+
Create file `{org}_{repo}_#{pull_request_number}.md`
|
30
|
+
|
31
|
+
## Development
|
32
|
+
|
33
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
34
|
+
|
35
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
36
|
+
|
37
|
+
## Contributing
|
38
|
+
|
39
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pr_summary. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
40
|
+
|
41
|
+
|
42
|
+
## License
|
43
|
+
|
44
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
45
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "pr_summary"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/exe/pr_summary
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
lib = File.expand_path('../../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "pr_summary"
|
5
|
+
|
6
|
+
PrSummary.call(pull_request_number: (ENV["PR_NUM"] || ARGV[0]).chomp, branch: (ENV["BRANCH"] || ARGV[1]).chomp, base: (ENV["BASE"] || ARGV[2]).chomp)
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require "pr_summary/git"
|
2
|
+
|
3
|
+
module PrSummary
|
4
|
+
class FileDiff
|
5
|
+
attr_reader :diff, :filename
|
6
|
+
|
7
|
+
def initialize(filename:, diff:)
|
8
|
+
@filename = filename
|
9
|
+
@diff = diff
|
10
|
+
end
|
11
|
+
|
12
|
+
def insertions
|
13
|
+
file_changes[__method__]
|
14
|
+
end
|
15
|
+
|
16
|
+
def deletions
|
17
|
+
file_changes[__method__]
|
18
|
+
end
|
19
|
+
|
20
|
+
def changes_display
|
21
|
+
str = ""
|
22
|
+
str << "#{insertions}(+)" if insertions
|
23
|
+
str << "#{deletions}(-)" if deletions
|
24
|
+
str
|
25
|
+
end
|
26
|
+
|
27
|
+
def truncated_name
|
28
|
+
if filename.length > MAX_FILE_NAME_LENGTH
|
29
|
+
"..." + filename[(filename.length-(MAX_FILE_NAME_LENGTH-3))..-1]
|
30
|
+
else
|
31
|
+
filename
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def md5_file
|
36
|
+
Digest::MD5.new.update(filename).to_s
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def file_changes
|
42
|
+
@file_changes ||= begin
|
43
|
+
text = PrSummary::Git::Diff.new(diff: diff).shortstat(filename)
|
44
|
+
{
|
45
|
+
insertions: find_number_before(text, "insertion"),
|
46
|
+
deletions: find_number_before(text, "deletion")
|
47
|
+
}
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
def find_number_before(text, word)
|
52
|
+
text.scan(/(\d+) #{word}/)[0][0].to_i rescue nil
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
require 'digest'
|
2
|
+
require 'tempfile'
|
3
|
+
|
4
|
+
module PrSummary
|
5
|
+
module Git
|
6
|
+
class << self
|
7
|
+
def repo
|
8
|
+
`basename \`git rev-parse --show-toplevel\``.chomp
|
9
|
+
end
|
10
|
+
|
11
|
+
def org
|
12
|
+
`git remote get-url origin`.split(":").last.split("/").first.chomp
|
13
|
+
end
|
14
|
+
|
15
|
+
def temp_file(name=('a'..'z').to_a.sample(5), &block)
|
16
|
+
tmp_file = Tempfile.new(name)
|
17
|
+
block.call(tmp_file.path)
|
18
|
+
tmp_file.tap(&:rewind).read.chomp.tap do
|
19
|
+
tmp_file.close
|
20
|
+
end.to_s
|
21
|
+
end
|
22
|
+
|
23
|
+
def call(cmd)
|
24
|
+
temp_file do |path|
|
25
|
+
git_cmd = "git #{cmd} > #{path}"
|
26
|
+
puts git_cmd
|
27
|
+
system(git_cmd)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
class PullRequest
|
33
|
+
attr_reader :repo, :org, :number
|
34
|
+
|
35
|
+
def initialize(org: Git.org, repo: Git.repo, number:)
|
36
|
+
@org = org
|
37
|
+
@repo = repo
|
38
|
+
@number = number
|
39
|
+
end
|
40
|
+
|
41
|
+
def url
|
42
|
+
"https://github.com/#{org}/#{repo}/pull/#{number}"
|
43
|
+
end
|
44
|
+
|
45
|
+
def file_url(filename)
|
46
|
+
"#{url}/files#diff-#{md5_filename(filename)}"
|
47
|
+
end
|
48
|
+
|
49
|
+
def key
|
50
|
+
"#{org}_#{repo}_#{number}"
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def md5_filename(filename)
|
56
|
+
Digest::MD5.new.update(filename).to_s
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
class Diff
|
61
|
+
def initialize(diff:)
|
62
|
+
@diff = diff
|
63
|
+
end
|
64
|
+
|
65
|
+
def shortstat(filename)
|
66
|
+
Git.call("diff --shortstat #{diff.branch} #{diff.base} -- #{filename}")
|
67
|
+
end
|
68
|
+
|
69
|
+
def name_only
|
70
|
+
Git.call("diff --name-only #{diff.branch} #{diff.base}").split("\n")
|
71
|
+
end
|
72
|
+
|
73
|
+
private
|
74
|
+
|
75
|
+
attr_reader :diff
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
data/lib/pr_summary.rb
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
require "yaml"
|
2
|
+
require "json"
|
3
|
+
require "pr_summary/file_diff"
|
4
|
+
require "pr_summary/git"
|
5
|
+
require "pr_summary/branch_diff"
|
6
|
+
|
7
|
+
module PrSummary
|
8
|
+
VERSION = "0.1.0"
|
9
|
+
MAX_FILE_NAME_LENGTH = 84
|
10
|
+
|
11
|
+
class << self
|
12
|
+
def call(pull_request_number:, branch:, base:)
|
13
|
+
pr = Git::PullRequest.new(number: pull_request_number)
|
14
|
+
diff = BranchDiff.new(base: base, branch: branch)
|
15
|
+
markdown_text = create_md(diff, pr)
|
16
|
+
save_to_file(markdown_text, pr)
|
17
|
+
end
|
18
|
+
|
19
|
+
def save_to_file(markdown_text, pr)
|
20
|
+
File.open("#{pr.key}.md", "w") { |file| file.write(markdown_text) }
|
21
|
+
end
|
22
|
+
|
23
|
+
def create_md(diff, pr)
|
24
|
+
grouped_files(diff).map do |type, files|
|
25
|
+
files = files.map do |file|
|
26
|
+
link = "[#{file.truncated_name}](#{pr.file_url(file.filename)})"
|
27
|
+
"* **#{file.changes_display}** #{link}"
|
28
|
+
end.join("\n")
|
29
|
+
"## #{type}\n#{files}\n\n"
|
30
|
+
end.join("\n")
|
31
|
+
end
|
32
|
+
|
33
|
+
def grouped_files(diff)
|
34
|
+
grouped = group_files_by_type(diff)
|
35
|
+
sorted_files_in_group = sort_by_insertion_count(diff, grouped)
|
36
|
+
listed_order.each_with_object({}) do |type, hash|
|
37
|
+
files = sorted_files_in_group[type]
|
38
|
+
next if files.nil?
|
39
|
+
hash[type] = files
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def sort_by_insertion_count(diff, grouped)
|
44
|
+
grouped.each do |type, files|
|
45
|
+
grouped[type] = files.map do |file|
|
46
|
+
FileDiff.new(filename: file, diff: diff)
|
47
|
+
end
|
48
|
+
grouped[type] = grouped[type].sort_by { |f| f.insertions || 0 }.reverse
|
49
|
+
end
|
50
|
+
grouped
|
51
|
+
end
|
52
|
+
|
53
|
+
def group_files_by_type(diff)
|
54
|
+
Git::Diff.new(diff: diff).name_only.group_by do |filename|
|
55
|
+
groups.keys.detect do |group|
|
56
|
+
groups[group].any? { |reg| reg =~ filename }
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
def listed_order
|
62
|
+
[:code, :spec, :fixtures_and_data, :database, :mocks, :other, :documentation]
|
63
|
+
end
|
64
|
+
|
65
|
+
def groups
|
66
|
+
{
|
67
|
+
database: [/migrate/, /schema\.rb$/, /structure\.sql$/],
|
68
|
+
fixtures_and_data: [/.\.yml$/, /.\.json$/, /.\.json\.erb$/],
|
69
|
+
spec: [/._spec\.rb$/, /spec\//],
|
70
|
+
mocks: [/._mock\.rb$/],
|
71
|
+
code: [/.\.rb$/],
|
72
|
+
documentation: [/.\.md$/],
|
73
|
+
other: [/.*/]
|
74
|
+
}
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
data/pr_summary.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'pr_summary/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "pr_summary"
|
8
|
+
spec.version = PrSummary::VERSION
|
9
|
+
spec.authors = ["Dustin Zeisler"]
|
10
|
+
spec.email = ["dustin@zeisler.net"]
|
11
|
+
|
12
|
+
spec.summary = %q{Sumarize a pull request}
|
13
|
+
spec.description = %q{Sumarize a pull request seperate by types of file and link to with the ability to comment on that file.}
|
14
|
+
spec.homepage = "https://github.com/zeisler/pr_summary"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pr_summary
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dustin Zeisler
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-02-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: Sumarize a pull request seperate by types of file and link to with the
|
56
|
+
ability to comment on that file.
|
57
|
+
email:
|
58
|
+
- dustin@zeisler.net
|
59
|
+
executables:
|
60
|
+
- pr_summary
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- ".gitignore"
|
65
|
+
- ".rspec"
|
66
|
+
- ".travis.yml"
|
67
|
+
- CODE_OF_CONDUCT.md
|
68
|
+
- Gemfile
|
69
|
+
- LICENSE.txt
|
70
|
+
- README.md
|
71
|
+
- Rakefile
|
72
|
+
- bin/console
|
73
|
+
- bin/setup
|
74
|
+
- exe/pr_summary
|
75
|
+
- lib/pr_summary.rb
|
76
|
+
- lib/pr_summary/branch_diff.rb
|
77
|
+
- lib/pr_summary/file_diff.rb
|
78
|
+
- lib/pr_summary/git.rb
|
79
|
+
- lib/pr_summary/version.rb
|
80
|
+
- pr_summary.gemspec
|
81
|
+
homepage: https://github.com/zeisler/pr_summary
|
82
|
+
licenses:
|
83
|
+
- MIT
|
84
|
+
metadata: {}
|
85
|
+
post_install_message:
|
86
|
+
rdoc_options: []
|
87
|
+
require_paths:
|
88
|
+
- lib
|
89
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
requirements: []
|
100
|
+
rubyforge_project:
|
101
|
+
rubygems_version: 2.4.8
|
102
|
+
signing_key:
|
103
|
+
specification_version: 4
|
104
|
+
summary: Sumarize a pull request
|
105
|
+
test_files: []
|