prpr-gemfile 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 +4 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +29 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/gemfile.png +0 -0
- data/lib/prpr/action/gemfile/create.rb +10 -0
- data/lib/prpr/action/gemfile/update.rb +99 -0
- data/lib/prpr/gemfile.rb +4 -0
- data/lib/prpr/gemfile/version.rb +5 -0
- data/lib/prpr/handler/gemfile.rb +9 -0
- data/prpr-gemfile.gemspec +27 -0
- metadata +132 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 47c577c30460d03619d341de0707d560973d4032
|
4
|
+
data.tar.gz: 9e9eadb989916a7f86bc9979ad440f7554b03611
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a4630ae2f5dd2ed7bbacda8a15e70bca5296fa57239ab309d20762b8276f16af767fa7ce766b7389dd9cd676f08e5f465a65e2b33f225a15500dce550a33883b
|
7
|
+
data.tar.gz: db1b12ba05c888eb2a73d17bcb01eda737f5e50a6a2949ea4de90c307ba0c992ca49cc44534870cdd41d5e4573edc5b2af3ce7286aa3c26f17e48b9d0f985256
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 mzp
|
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,29 @@
|
|
1
|
+
# Prpr::Gemfile
|
2
|
+
|
3
|
+
[Prpr](https://github.com/mzp/prpr) plugin to annotate major/minor version changing at `Gemfile.lock`.
|
4
|
+
|
5
|
+
## Install
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'prpr-gemfile', github: 'mzp/prpr-gemfile'
|
11
|
+
```
|
12
|
+
|
13
|
+
## Usage
|
14
|
+
Post annotate comment to major/minor version changing at `Gemfile.lock` of pull request.
|
15
|
+
|
16
|
+
![gemfile](https://raw.githubusercontent.com/mzp/prpr-gemfile/master/gemfile.png)
|
17
|
+
|
18
|
+
## Env
|
19
|
+
|
20
|
+
```
|
21
|
+
MAJOR_VERSION_COMMENT - comment for major version change (Default: ":eyes: major version is changed")
|
22
|
+
MINOR_VERSION_COMMENT - comment for minor version change (Default: ":eyes: major version is changed")
|
23
|
+
```
|
24
|
+
|
25
|
+
|
26
|
+
## License
|
27
|
+
|
28
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
29
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "prpr/gemfile"
|
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/gemfile.png
ADDED
Binary file
|
@@ -0,0 +1,99 @@
|
|
1
|
+
require 'semverly'
|
2
|
+
|
3
|
+
module Prpr
|
4
|
+
module Action
|
5
|
+
module Gemfile
|
6
|
+
class Update < Base
|
7
|
+
def call
|
8
|
+
if files.map(&:filename).include? 'Gemfile.lock'
|
9
|
+
head_versions.each do |name, version|
|
10
|
+
old_version = base_versions[name]
|
11
|
+
|
12
|
+
next unless version
|
13
|
+
next unless old_version
|
14
|
+
|
15
|
+
if version.major != old_version.major
|
16
|
+
add_comment(name, 'major version changed!')
|
17
|
+
end
|
18
|
+
|
19
|
+
if version.major == old_version.major && version.minor != old_version.minor
|
20
|
+
add_comment(name, 'minor version changed!')
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
def github
|
30
|
+
Repository::Github.default
|
31
|
+
end
|
32
|
+
|
33
|
+
def add_comment(name, comment)
|
34
|
+
github.create_pull_request_comment(repository_name, number, comment, head, 'Gemfile.lock', position(name))
|
35
|
+
end
|
36
|
+
|
37
|
+
def position(name)
|
38
|
+
diff.lines.index { |line| line =~ /^\+\s*#{name}/ } || diff.lines.index { |line| line.include?(name) }
|
39
|
+
end
|
40
|
+
|
41
|
+
def files
|
42
|
+
@files ||= github.pull_request_files(repository_name, number)
|
43
|
+
end
|
44
|
+
|
45
|
+
def diff
|
46
|
+
@diff ||= files.find { |file| file[:filename] == 'Gemfile.lock' }[:patch]
|
47
|
+
end
|
48
|
+
|
49
|
+
def base_versions
|
50
|
+
@base_versions ||= versions(base)
|
51
|
+
end
|
52
|
+
|
53
|
+
def head_versions
|
54
|
+
@head_versions ||= versions(head)
|
55
|
+
end
|
56
|
+
|
57
|
+
def versions(ref)
|
58
|
+
gem_specs(ref).map { |s| [s.name, SemVer.parse(s.version.to_s)] }.to_h
|
59
|
+
end
|
60
|
+
|
61
|
+
def gem_specs(ref)
|
62
|
+
Bundler::LockfileParser.new(gemfile(ref)).specs
|
63
|
+
end
|
64
|
+
|
65
|
+
def gemfile(ref)
|
66
|
+
Config::Github.new(repository_name, branch: ref).read('Gemfile.lock')
|
67
|
+
end
|
68
|
+
|
69
|
+
def base
|
70
|
+
event.pull_request.base.sha
|
71
|
+
end
|
72
|
+
|
73
|
+
def head
|
74
|
+
event.pull_request.head.sha
|
75
|
+
end
|
76
|
+
|
77
|
+
def number
|
78
|
+
event.number
|
79
|
+
end
|
80
|
+
|
81
|
+
def repository_name
|
82
|
+
event.repository.full_name
|
83
|
+
end
|
84
|
+
|
85
|
+
def env
|
86
|
+
@env ||= Config::Env.default
|
87
|
+
end
|
88
|
+
|
89
|
+
def major_version_comment
|
90
|
+
env[:major_version_comment] || ':eyes: major version is changed'
|
91
|
+
end
|
92
|
+
|
93
|
+
def minor_version_comment
|
94
|
+
env[:minor_version_comment] || ':eyes: minor version is changed'
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
data/lib/prpr/gemfile.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'prpr/gemfile/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "prpr-gemfile"
|
8
|
+
spec.version = Prpr::Gemfile::VERSION
|
9
|
+
spec.authors = ["mzp"]
|
10
|
+
spec.email = ["mzpppp@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = "Prpr plugin to annotate major/minor version changing at `Gemfile.lock`."
|
13
|
+
spec.description = "Post annotate comment to major/minor version changing at `Gemfile.lock` of pull request."
|
14
|
+
spec.homepage = "https://github.com/mzp/prpr-gemfile"
|
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_dependency 'semverly'
|
23
|
+
spec.add_dependency 'prpr'
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
spec.add_development_dependency "rspec"
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: prpr-gemfile
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- mzp
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-09-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: semverly
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: prpr
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.10'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.10'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Post annotate comment to major/minor version changing at `Gemfile.lock`
|
84
|
+
of pull request.
|
85
|
+
email:
|
86
|
+
- mzpppp@gmail.com
|
87
|
+
executables: []
|
88
|
+
extensions: []
|
89
|
+
extra_rdoc_files: []
|
90
|
+
files:
|
91
|
+
- ".gitignore"
|
92
|
+
- ".rspec"
|
93
|
+
- ".travis.yml"
|
94
|
+
- CODE_OF_CONDUCT.md
|
95
|
+
- Gemfile
|
96
|
+
- LICENSE.txt
|
97
|
+
- README.md
|
98
|
+
- Rakefile
|
99
|
+
- bin/console
|
100
|
+
- bin/setup
|
101
|
+
- gemfile.png
|
102
|
+
- lib/prpr/action/gemfile/create.rb
|
103
|
+
- lib/prpr/action/gemfile/update.rb
|
104
|
+
- lib/prpr/gemfile.rb
|
105
|
+
- lib/prpr/gemfile/version.rb
|
106
|
+
- lib/prpr/handler/gemfile.rb
|
107
|
+
- prpr-gemfile.gemspec
|
108
|
+
homepage: https://github.com/mzp/prpr-gemfile
|
109
|
+
licenses:
|
110
|
+
- MIT
|
111
|
+
metadata: {}
|
112
|
+
post_install_message:
|
113
|
+
rdoc_options: []
|
114
|
+
require_paths:
|
115
|
+
- lib
|
116
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
requirements: []
|
127
|
+
rubyforge_project:
|
128
|
+
rubygems_version: 2.4.5.1
|
129
|
+
signing_key:
|
130
|
+
specification_version: 4
|
131
|
+
summary: Prpr plugin to annotate major/minor version changing at `Gemfile.lock`.
|
132
|
+
test_files: []
|