exception_notification-redmine 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a895e0cff08afd0aca06dbc49b23ae213a637175
|
|
4
|
+
data.tar.gz: 38ecf4a10117c62871be39e04e434678a9690b7f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fab2e24bea3396294c4f8fa78d3804837a028e56d01bfde9990fe21be233d870f7c17336b812b885bc3703925a797b99a61d57f3e5a08c1c7342328b92160742
|
|
7
|
+
data.tar.gz: dea9de555d981c4d3187c9f78c13248ece77084c4673571d026214de27728c6ad8d79430cf6b79f8b9e3b7065e6483f10e5515277dfa64804924788877182f73
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
### Version 0.3.1
|
|
2
|
+
- Remove useless variable
|
|
3
|
+
- Update release date
|
|
4
|
+
|
|
1
5
|
### Version 0.3.0
|
|
2
6
|
- Add to issue: assigned_to_id is now optional
|
|
3
7
|
- Add to issue: fixed_version_id (optional) to notifier (Thanks @hugoangelo)
|
|
@@ -14,7 +18,7 @@ Update README.md
|
|
|
14
18
|
|
|
15
19
|
### Version 0.1.0
|
|
16
20
|
- Version bump
|
|
17
|
-
- add README.md
|
|
21
|
+
- add README.md and LICENCE
|
|
18
22
|
|
|
19
23
|
### Version 0.0.2
|
|
20
24
|
Use a custom field to avoid creation of same issue multiple times
|
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.name = 'exception_notification-redmine'
|
|
8
8
|
s.version = ExceptionNotification::Redmine::VERSION
|
|
9
9
|
s.authors = ["Richard Piacentini", "Suttipong Wisittanakorn"]
|
|
10
|
-
s.date = "
|
|
10
|
+
s.date = "2017-04-05"
|
|
11
11
|
s.summary = "This gem add a Redmine notifier to Exception Notification"
|
|
12
12
|
s.description = "This Ruby gem is an extension of the exception_notification gem to support creating issues in Redmine"
|
|
13
13
|
s.homepage = "https://github.com/Nuxos-Asia/exception_notification-redmine"
|
|
@@ -24,8 +24,8 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.add_dependency("exception_notification", "~> 4.0")
|
|
25
25
|
s.add_dependency("httparty", "~> 0.10")
|
|
26
26
|
s.add_dependency("json", ">= 1.8")
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
s.add_development_dependency "bundler", "~> 1.7"
|
|
29
29
|
s.add_development_dependency "rake", ">= 10.0"
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
end
|
|
@@ -75,7 +75,7 @@ module ExceptionNotifier
|
|
|
75
75
|
def create_issue(issue)
|
|
76
76
|
options = { :body => { :issue => issue }.to_json,
|
|
77
77
|
:headers => { "Content-Type" => "application/json" } }
|
|
78
|
-
|
|
78
|
+
::HTTParty.send(:post, issues_url, options)
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
def issue_exist?(issue)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exception_notification-redmine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Richard Piacentini
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2017-04-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: exception_notification
|