capistrano-teams 1.0.0 → 1.0.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
  SHA256:
3
- metadata.gz: 109610593702b3c23d33d6a4deac385fbfe1f0fd541b262c7446a584b061e784
4
- data.tar.gz: 61948c2f8f58d0987eb97127014691c57b8397a8e15974b500c57b520f13a8cd
3
+ metadata.gz: 6c4040ce43cac2c6b0e4c06356ab36b8541ad401240a52ab41b422ed2fd71273
4
+ data.tar.gz: db6dd9555047885b54ae0f060111c39f254b958c6a820d80244a0ed5d0716743
5
5
  SHA512:
6
- metadata.gz: ab50b9a83b8d2fa6ba44e11eb8b88288f16d4d3d7cd1e03704df6ca015e16d19803b1e6382a1e0050c6467cb0d6098b2cf6aa1d36dc22b24e7233455af48291b
7
- data.tar.gz: 4730104e2d1164d9ffd594d3a1893ad27da180625fc2cc9f6487866dc2876f775a089a412ec5f6ef5779ddf24210429092c9303315eaeffddaef17e1e97f0019
6
+ metadata.gz: 07d09a0aa583355fdaa3f44eeb0f7f9b3fec1f16181ba1cd7b0b9033b5ee0b09a22ab110eb7f56530b08679ba5cc583064fc6b8aac72e91d05ba6436c1494a03
7
+ data.tar.gz: ec4b88e344387412ddf0484166721aed3e3eef6f301ae73d9a86d0d97dbef161cbf572e9b5e13b2a569d7e63ec2bf590587aba05cbd4631e784fb00a50f1e2b4
@@ -1,10 +1,9 @@
1
1
  name: Ruby Gem
2
2
 
3
3
  on:
4
- push:
5
- branches: [ master ]
6
- pull_request:
7
- branches: [ master ]
4
+ create:
5
+ tags:
6
+ - v*
8
7
 
9
8
  jobs:
10
9
  build:
@@ -7,11 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.1] - 2020-10-17
11
+
12
+ ### Changed
13
+
14
+ - README.md description
15
+
10
16
  ## [1.0.0] - 2020-08-09
11
17
 
12
18
  ### Added
13
19
 
14
20
  - Plugin logic
15
21
 
16
- [unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...HEAD
22
+ [unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.1...HEAD
23
+ [1.0.1]: https://github.com/danieltoader/capistrano-teams/releases/tag/v1.0.1
17
24
  [1.0.0]: https://github.com/danieltoader/capistrano-teams/releases/tag/v1.0.0
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Gem Downloads](http://img.shields.io/gem/dt/capistrano-teams.svg)](https://rubygems.org/gems/capistrano-teams)
4
4
  [![GitHub](https://img.shields.io/github/license/danieltoader/capistrano-teams?color=113399)](https://github.com/danieltoader/capistrano-teams/blob/master/LICENSE.md)
5
- [![Changelog](https://img.shields.io/badge/capistrano-capistran--teams-E05735)](https://github.com/danieltoader/capistrano-teams/blob/master/CHANGELOG.md)
5
+ [![Changelog](https://img.shields.io/badge/log-capistrano--teams-E05735)](https://github.com/danieltoader/capistrano-teams/blob/master/CHANGELOG.md)
6
6
  [![Gem Version](http://img.shields.io/gem/v/capistrano-teams.svg)](https://rubygems.org/gems/capistrano-teams)
7
7
  [![Build Status](http://img.shields.io/travis/danieltoader/capistrano-teams.svg)](http://travis-ci.org/danieltoader/capistrano-teams)
8
8
  [![Build status](https://ci.appveyor.com/api/projects/status/8e9dteu7ibxsb4ou?svg=true)](https://ci.appveyor.com/project/danieltoader/capistrano-teams)
@@ -117,6 +117,11 @@ Rake::Task["teams:notify"].execute(
117
117
  To remove a default hook from this plugin you can use the following line, it can be used
118
118
  anywhere in the desired `deploy.rb` or stage file
119
119
  ```ruby
120
+ Rake::Task['teams:deploy:starting'].clear_actions
121
+ Rake::Task['teams:deploy:finishing'].clear_actions
122
+ ```
123
+ OR
124
+ ```ruby
120
125
  Rake::Task['deploy:starting'].prerequisites.delete('teams:deploy:starting')
121
126
  ```
122
127
 
@@ -8,6 +8,8 @@ environment:
8
8
  matrix:
9
9
  - ruby_version: "23"
10
10
  - ruby_version: "23-x64"
11
+ - ruby_version: "27"
12
+ - ruby_version: "27-x64"
11
13
 
12
14
  install:
13
15
  - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Teams
3
- VERSION = '1.0.0'.freeze
3
+ VERSION = '1.0.1'.freeze
4
4
  end
5
5
  end
@@ -6,8 +6,6 @@ require 'capistrano/teams/message/types'
6
6
 
7
7
  module Capistrano
8
8
  module Teams
9
- class Error < StandardError; end
10
-
11
9
  # Teams Webhook class
12
10
  class WebHook
13
11
  def notify(
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-teams
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Toader
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-09 00:00:00.000000000 Z
11
+ date: 2020-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano