talentio-notifier 0.3.4 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f30d9a8f384d1d345598e8d7831b4526ea4e9b3ea5d42217ea850390e8b38dad
4
- data.tar.gz: d8d4fd396e155e9dd7500900468da46ffe9370e40f2e524ffeadda1deeeabd5b
3
+ metadata.gz: ab95645c024ef8541200bbffb70ba196377c46a1337b4243410da86a5b538c03
4
+ data.tar.gz: 0b4892fefdd35d45ee2caeb0bc4a06b77879c598c566803f4756004abc0ca1de
5
5
  SHA512:
6
- metadata.gz: f59830071ac545289692c18c0e89d7fbfa7029fcb070b90651b847d0a810f9cf6835b354992646812a18e051cc2a155a7563970cad4497985ed80956ae179816
7
- data.tar.gz: 130720ccb4b081849fefec2a658673ffcb8b7416158fe777e55ce018f6f12cdd63a08b664f54f84c12377c3ace4ae06d4cdab4b4555a22b4d25d95175160360e
6
+ metadata.gz: 5447045371a31ffbf115ce1e41cf50e41bd70de3fc3e7e4a72dfda1909f77d7ce4bfc5b90a5c6d28ff796cadbebe81896e51a5dd62d8ca9e21933040cc5d7b04
7
+ data.tar.gz: d7e1e35a8486a6ebd6b5b64d2354d569ebd5d804363cc1f7bbaeff3a29b7e59f2a9d3f5a1bfa7f8ed61813003a54815f329eb865e2cce096364c44df55ba042d
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.4"
6
+ RUN gem install talentio-notifier -v "0.3.5"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- talentio-notifier (0.3.4)
4
+ talentio-notifier (0.3.5)
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.4)
15
+ activesupport (6.0.3.2)
16
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
17
17
  i18n (>= 0.7, < 2)
18
18
  minitest (~> 5.1)
@@ -31,7 +31,7 @@ GEM
31
31
  gli (2.19.2)
32
32
  hashie (4.1.0)
33
33
  holiday_jp (0.7.1)
34
- i18n (1.8.4)
34
+ i18n (1.8.5)
35
35
  concurrent-ruby (~> 1.0)
36
36
  minitest (5.14.1)
37
37
  multi_json (1.15.0)
data/Makefile CHANGED
@@ -1,4 +1,4 @@
1
- VERSION=0.3.4
1
+ VERSION=0.3.5
2
2
  build:
3
3
  docker build -t talentio-notifier .
4
4
 
@@ -1,7 +1,7 @@
1
1
  require 'time'
2
2
  require 'json'
3
3
  require 'pp'
4
- require 'slack'
4
+ require 'slack-ruby-client'
5
5
  require 'holiday_jp'
6
6
  require 'active_support/core_ext/module'
7
7
  module Talentio
@@ -1,5 +1,5 @@
1
1
  module Talentio
2
2
  module Notifier
3
- VERSION = "0.3.4"
3
+ VERSION = "0.3.5"
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: "38 11,15 * * 1-5"
6
+ schedule: "0 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.4
13
+ image: pyama/talentio-notifier:0.3.5
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.4
48
+ image: pyama/talentio-notifier:0.3.5
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.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - pyama86