popper 0.3.3 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/popper/action/git.rb +5 -1
- data/lib/popper/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b770e96e37247c065c5158b3b674e671104fdb95
|
4
|
+
data.tar.gz: 3e44ae48e362fe43051f718d56d8b369fed0e3f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8018b062a27badde09041db2b3ea4ec11cb8ed7be69a167fb6e0a2bd958c83c0ad5c50bd25a25ca48db80057e6897073469e269d9f9f3b597f770c1cb8bd2621
|
7
|
+
data.tar.gz: 6b8f32612012f59494f9f7054c05a97c16e50cc81f86ddef4c82ca7f5e4b6c2eea19b0fac5e0a1bba996eca194d4e87c861468525dfa50c2d302b4305b408b6e
|
data/README.md
CHANGED
data/lib/popper/action/git.rb
CHANGED
@@ -3,10 +3,14 @@ require 'octokit'
|
|
3
3
|
module Popper::Action
|
4
4
|
class Git < Base
|
5
5
|
def self.task(mail, params={})
|
6
|
+
issue_options = {}
|
7
|
+
issue_options[:labels] = @action_config.labels if @action_config.labels
|
8
|
+
|
6
9
|
url = octkit.create_issue(
|
7
10
|
@action_config.repo,
|
8
11
|
mail.subject,
|
9
|
-
mail.utf_body
|
12
|
+
mail.utf_body,
|
13
|
+
issue_options
|
10
14
|
)
|
11
15
|
params["#{action_name}_url".to_sym] = url[:html_url] if url
|
12
16
|
params
|
data/lib/popper/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: popper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- pyama86
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
version: '0'
|
174
174
|
requirements: []
|
175
175
|
rubyforge_project:
|
176
|
-
rubygems_version: 2.
|
176
|
+
rubygems_version: 2.5.1
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: email notification tool
|