talentio-notifier 0.3.3 → 0.3.4

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: 36e5f675dccc46f19602ae75bead46aebf66918e56aed012390887863cb6bb5d
4
- data.tar.gz: 2810b152e21c90bd484eafd8173798bf43d6f11ec0af9cdd4addf3f3cb7c1cf3
3
+ metadata.gz: f30d9a8f384d1d345598e8d7831b4526ea4e9b3ea5d42217ea850390e8b38dad
4
+ data.tar.gz: d8d4fd396e155e9dd7500900468da46ffe9370e40f2e524ffeadda1deeeabd5b
5
5
  SHA512:
6
- metadata.gz: 9c99ce5e78a55245d4d65b13ed0321458ddd9d34efb9cd08246dd302808613baeb1c973fe2dcd88d314c284b3c15e3cc4e4b66ff85c0ee9a6005f125aa3adfea
7
- data.tar.gz: 73bacf2346a0d81866f8f3668c8bbbf7f7835731320efdddd61050def675e52ee6623b0f4a20a8e25fa228cc1413c5b37e2ebaeffbd6c9526997a84261b30df1
6
+ metadata.gz: f59830071ac545289692c18c0e89d7fbfa7029fcb070b90651b847d0a810f9cf6835b354992646812a18e051cc2a155a7563970cad4497985ed80956ae179816
7
+ data.tar.gz: 130720ccb4b081849fefec2a658673ffcb8b7416158fe777e55ce018f6f12cdd63a08b664f54f84c12377c3ace4ae06d4cdab4b4555a22b4d25d95175160360e
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 -v "0.3.3"
6
+ RUN gem install talentio-notifier -v "0.3.4"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- talentio-notifier (0.3.3)
4
+ talentio-notifier (0.3.4)
5
5
  activesupport
6
6
  faraday
7
7
  holiday_jp
@@ -12,7 +12,7 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- activesupport (6.0.3.3)
15
+ activesupport (6.0.3.4)
16
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
17
17
  i18n (>= 0.7, < 2)
18
18
  minitest (~> 5.1)
data/Makefile CHANGED
@@ -1,4 +1,4 @@
1
- VERSION=0.3.3
1
+ VERSION=0.3.4
2
2
  build:
3
3
  docker build -t talentio-notifier .
4
4
 
@@ -17,7 +17,7 @@ module Talentio
17
17
 
18
18
  # 登録当日はスキップする
19
19
  base_time = Time.parse(data[param[:limit_key]])
20
- return if base_time >= Date.today
20
+ return if base_time >= Date.today.to_time
21
21
 
22
22
  slack_mentions = client.mention_id_from_evaluations(data[:evaluations])
23
23
  slack_mentions.each do |m|
@@ -1,5 +1,5 @@
1
1
  module Talentio
2
2
  module Notifier
3
- VERSION = "0.3.3"
3
+ VERSION = "0.3.4"
4
4
  end
5
5
  end
@@ -3,14 +3,14 @@ kind: CronJob
3
3
  metadata:
4
4
  name: talentio-notifier-result
5
5
  spec:
6
- schedule: "0 11,15 22 * 1-5"
6
+ schedule: "38 11,15 * * 1-5"
7
7
  jobTemplate:
8
8
  spec:
9
9
  template:
10
10
  spec:
11
11
  containers:
12
12
  - name: talentio-notifier
13
- image: pyama/talentio-notifier:0.3.3
13
+ image: pyama/talentio-notifier:0.3.4
14
14
  imagePullPolicy: Always
15
15
  env:
16
16
  - name: LANG
@@ -45,7 +45,7 @@ spec:
45
45
  spec:
46
46
  containers:
47
47
  - name: talentio-notifier
48
- image: pyama/talentio-notifier:0.3.3
48
+ image: pyama/talentio-notifier:0.3.4
49
49
  env:
50
50
  - name: TALENTIO_SKIP_STAGE
51
51
  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.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - pyama86