prpr-merged 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 299898d6bf027e851adea054b79b045da850aaf2
4
+ data.tar.gz: 25efe4845771202a1d5f3dde8e040414633d1da3
5
+ SHA512:
6
+ metadata.gz: e5a7f00c0c3b3f2dcac94eb354cf7c8171ccc6702842bd3f5dccaf27dbf6e18b2179eb9aa9102cb5519a2c8b34c4abf3920ee4ad1b30de0835385192d4bf0a7c
7
+ data.tar.gz: 4b57f8805e749c28373620fa9c302f99f2b6aab37f94e5bf3465d6090f6595df03cabcb55aa17e4cb17e8afe1c4247b86acc06e9a285923eda18886ce1bd3f56
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in prpr-merged.gemspec
4
+ gemspec
5
+
6
+ gem 'prpr'
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 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.
@@ -0,0 +1,19 @@
1
+ # Prpr::Merged
2
+
3
+ [Prpr](https://github.com/mzp/prpr) plugin to announce pull request merge.
4
+
5
+ ## Install
6
+
7
+ ```ruby
8
+ gem 'prpr-merged'
9
+ ```
10
+
11
+ ## ENV
12
+
13
+ * MERGED_ROOM: room name to announce
14
+ * MERGED_BODY: announce message template
15
+
16
+ ## License
17
+
18
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
19
+
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "prpr/merged"
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
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,35 @@
1
+ module Prpr
2
+ module Action
3
+ module Merged
4
+ class Merged < Base
5
+ def call
6
+ if merged?
7
+ Publisher::Adapter::Base.broadcast message
8
+ end
9
+ end
10
+
11
+ private
12
+
13
+ def message
14
+ Prpr::Publisher::Message.new(body: body, from: from, room: room)
15
+ end
16
+
17
+ def merged?
18
+ !!event.pull_request.merged_at
19
+ end
20
+
21
+ def body
22
+ env.format(:merged_body, event.pull_request)
23
+ end
24
+
25
+ def from
26
+ event.sender
27
+ end
28
+
29
+ def room
30
+ env[:merged_room]
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,9 @@
1
+ module Prpr
2
+ module Handler
3
+ class Merged < Base
4
+ handle Event::PullRequest, action: /closed/ do
5
+ Prpr::Action::Merged::Merged.new(event).call
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,4 @@
1
+ require "prpr/merged/version"
2
+ require "prpr/action/merged/merged"
3
+ require "prpr/handler/merged"
4
+
@@ -0,0 +1,5 @@
1
+ module Prpr
2
+ module Merged
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -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 'prpr/merged/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "prpr-merged"
8
+ spec.version = Prpr::Merged::VERSION
9
+ spec.authors = ["mzp"]
10
+ spec.email = ["mzpppp@gmail.com"]
11
+
12
+ spec.summary = "Prpr plugin: notify merged pull request"
13
+ spec.description = "This plugin broadcast merged pull request url"
14
+ spec.homepage = "https://github.com/mzp/prprp"
15
+ spec.license = "MIT"
16
+
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.11"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: prpr-merged
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: 2016-12-16 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.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
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
+ description: This plugin broadcast merged pull request url
42
+ email:
43
+ - mzpppp@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - bin/console
54
+ - bin/setup
55
+ - lib/prpr/action/merged/merged.rb
56
+ - lib/prpr/handler/merged.rb
57
+ - lib/prpr/merged.rb
58
+ - lib/prpr/merged/version.rb
59
+ - prpr-merged.gemspec
60
+ homepage: https://github.com/mzp/prprp
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.2.2
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: 'Prpr plugin: notify merged pull request'
84
+ test_files: []