talentio-notifier 0.2.0 → 0.3.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: 1a336b1af38d8f513dadbd506d1c56dda99bd06244241669714b2f6135d0ed5d
4
- data.tar.gz: b07859f3085e5232ae36e2e4125f15a551ae07328369ee5cca13a7d70ccfe4a3
3
+ metadata.gz: 81698a2c0c5687a69552609c6101dd56286da60b0e38a0a8e17fa0e2a9b299fd
4
+ data.tar.gz: 0b6f458718883c8d195691b28d15428839932557e9107caa1296e467aa9c8843
5
5
  SHA512:
6
- metadata.gz: 22291b73914d53966bcac589bd5cf3a77e42b7efac34023d532430c0db92670988890c8c423b70fd99163ce55a8eb320236b5728ef9b65aa532577d987bf2467
7
- data.tar.gz: 60359000cb941b894ce94c45a8275bd87eb345aaba17cc02ec67a2d07b077c193c64a9b8ae8f2fda3d147dbef527f3f932fb05c745e8d365e4e0c739ec2cc8a6
6
+ metadata.gz: 6b7aa5399e32a44a8bfedb475b080650b17136c8fa724c2fd2acfbc2228b504f7da00dde4436270cbcf15fb86a109b448bd329ee2bf4c1766534841ee7c4f3d4
7
+ data.tar.gz: 88d744b4d3d0b100666f9188411fd5b0cfee1b0ff018537c414da64b0b7aaec634d802d3bc2e1e65d349f45f25545c528ecb7293153d7f7eddf2f97c1872d036
data/Dockerfile CHANGED
@@ -3,4 +3,4 @@ WORKDIR /talentio-notifier
3
3
  ENV LANG C.UTF-8
4
4
  RUN apt update -qqy && apt install -qqy python git python-yaml
5
5
  RUN git clone https://github.com/emasaka/jpholidayp.git
6
- RUN gem install talentio-notifier
6
+ RUN gem install talentio-notifier -v "0.3.0"
data/Makefile CHANGED
@@ -1,4 +1,4 @@
1
- VERSION=0.0.1
1
+ VERSION=0.3.0
2
2
  build:
3
3
  docker build -t talentio-notifier .
4
4
 
@@ -3,6 +3,7 @@ require 'json'
3
3
  require 'pp'
4
4
  require 'slack'
5
5
  require 'holiday_jp'
6
+ require 'forwardable'
6
7
  module Talentio
7
8
  module Notifier
8
9
  class Slack
@@ -1,5 +1,5 @@
1
1
  module Talentio
2
2
  module Notifier
3
- VERSION = "0.2.0"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
data/manifests/cron.yml CHANGED
@@ -10,7 +10,7 @@ spec:
10
10
  spec:
11
11
  containers:
12
12
  - name: talentio-notifier
13
- image: pyama/talentio-notifier:0.0.1
13
+ image: pyama/talentio-notifier:0.3.0
14
14
  env:
15
15
  - name: LANG
16
16
  value: C.UTF-8
@@ -44,7 +44,7 @@ spec:
44
44
  spec:
45
45
  containers:
46
46
  - name: talentio-notifier
47
- image: pyama/talentio-notifier:0.0.1
47
+ image: pyama/talentio-notifier:0.3.0
48
48
  env:
49
49
  - name: TALENTIO_SKIP_STAGE
50
50
  value: "3"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: talentio-notifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - pyama86