redmine_github_hook 2.2.1 → 3.0.0

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
  SHA256:
3
- metadata.gz: e557b9c48ee315b46a409c913a296b78ad7667832b77e2f377c3f2f969f4b4e0
4
- data.tar.gz: 1906894bae718bd12f182ffc30410a84839be42b150a706f21c312d4b98c4ec5
3
+ metadata.gz: 4b41dfbc32200e25fccf3b42a0a9899fc2f711452b7ffe3b4cf6bd42b0eea233
4
+ data.tar.gz: 31476e8c05966848fdfcedbf5e2c71ab8e645ee7249f8c81cc68241fdeba2f0b
5
5
  SHA512:
6
- metadata.gz: b876106487d0e71584dd3f430e859b77ad9bfcc1155b8eb67612fb8865f1b0f9c411d45300d1772a6db337b2b98362b77a60f416ec4ecd8af38fa86a3304938e
7
- data.tar.gz: 516cf70b6d902b863b3f7646ed69613250bd3c1d9736ddcc4afe7b947ad1ebb05dc0601e10d62b10ec4916a04d34626f48491b0c9d947f6b35600f3ab69213b1
6
+ metadata.gz: aba0aa23e86ffc7d58d88cfbbde28b8b315dbb6d9ee664e04683cf1ca9527bd627abbca888b8464946f55bd7d74d474df8a8c55836dda73228969be7d6267b08
7
+ data.tar.gz: 277d1e2d6022916fc3f7568f78cd6176d7796bdb4513ab4575baf332849c239d641607832a7768f0ad97b75b1f7ab1be2d2c0cbe7e62f73d0a3abf42584620fa
data/CHANGELOG.md ADDED
@@ -0,0 +1,21 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ This project adheres to [Semantic Versioning](http://semver.org/).
5
+
6
+ ## [Unreleased]
7
+
8
+ ### Added
9
+
10
+ * A changelog! (you're looking at it).
11
+ * Support for Rails 5, which means support for Redmine 4.x and no more deprecation warnings on Redmine 3.x (@bjakushka, @slamotte)
12
+
13
+ ### Changes
14
+
15
+ *
16
+
17
+ ### Removed
18
+
19
+ * Support for Redmine 2.x and earlier. If you need to use Redmine Github Hook with Redmine versions before 3.x, use the 2.x line of Redmine Github Hook.
20
+
21
+ ## 2.2.1
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014 Jakob Skjerning
1
+ Copyright (c) 2019 Jakob Skjerning
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -87,7 +87,7 @@ The interactions between the different parts of the process is outlined in the f
87
87
 
88
88
  ## License
89
89
 
90
- Copyright (c) 2009-2014 Jakob Skjerning
90
+ Copyright (c) 2009-2019 Jakob Skjerning
91
91
 
92
92
  Permission is hereby granted, free of charge, to any person
93
93
  obtaining a copy of this software and associated documentation
@@ -1,7 +1,7 @@
1
1
  require "json"
2
2
 
3
3
  class GithubHookController < ApplicationController
4
- skip_before_filter :verify_authenticity_token, :check_if_login_required
4
+ skip_before_action :verify_authenticity_token, :check_if_login_required
5
5
 
6
6
  def index
7
7
  message_logger = GithubHook::MessageLogger.new(logger)
@@ -1,3 +1,3 @@
1
1
  module RedmineGithubHook
2
- VERSION = "2.2.1"
2
+ VERSION = "3.0.0"
3
3
  end
@@ -73,7 +73,7 @@ class GithubHookControllerTest < ActionController::TestCase
73
73
  end
74
74
 
75
75
  def do_post
76
- post :index, :payload => json
76
+ post :index, :params => {:payload => json}
77
77
  end
78
78
 
79
79
  def test_should_render_response_from_github_hook_when_done
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redmine_github_hook
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jakob Skjerning
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-23 00:00:00.000000000 Z
11
+ date: 2019-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -46,6 +46,7 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - ".gitignore"
49
+ - CHANGELOG.md
49
50
  - Gemfile
50
51
  - LICENSE
51
52
  - README.md
@@ -84,8 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
85
  - !ruby/object:Gem::Version
85
86
  version: '0'
86
87
  requirements: []
87
- rubyforge_project:
88
- rubygems_version: 2.7.6
88
+ rubygems_version: 3.0.1
89
89
  signing_key:
90
90
  specification_version: 4
91
91
  summary: Allow your Redmine installation to be notified when changes have been pushed