exception_notification-redmine 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6235ab191a5880fb5c9c9718518050dd57e2d49a
4
- data.tar.gz: 1ca42e1f816262522f350cb224f56eedd562d666
3
+ metadata.gz: a895e0cff08afd0aca06dbc49b23ae213a637175
4
+ data.tar.gz: 38ecf4a10117c62871be39e04e434678a9690b7f
5
5
  SHA512:
6
- metadata.gz: 70c2ab0f07145522de3484038b7a74da3225e449b81bbfd61eebbf704fc58eeff0ccd10839332a8becdfee9bfac087e71087da287aacc76955a271ad0b8b23a3
7
- data.tar.gz: 7038fd21ffd6cb7996076841d48aa9711d81c9d55882d41f9cc6652e063f5382ac4ac3bb8449892f7587fabc9e05172424c92950505044ce9e4e78e8a1543588
6
+ metadata.gz: fab2e24bea3396294c4f8fa78d3804837a028e56d01bfde9990fe21be233d870f7c17336b812b885bc3703925a797b99a61d57f3e5a08c1c7342328b92160742
7
+ data.tar.gz: dea9de555d981c4d3187c9f78c13248ece77084c4673571d026214de27728c6ad8d79430cf6b79f8b9e3b7065e6483f10e5515277dfa64804924788877182f73
@@ -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, TODO.md, and LICENCE
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 = "2014-10-28"
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
@@ -1,5 +1,5 @@
1
1
  module ExceptionNotification
2
2
  module Redmine
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  end
5
5
  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
- response = ::HTTParty.send(:post, issues_url, options)
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.0
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: 2014-10-28 00:00:00.000000000 Z
12
+ date: 2017-04-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: exception_notification