teamtailor 0.3.1 → 0.3.2

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: 9312c6ec378d1c25c5895620a19cac0a4e5ad918bcd1371ac88e127d1c5d31ec
4
- data.tar.gz: 5b264b0ee8a3b37bf3d61f392e56deff840a005155a29a653196bff9a376e8dd
3
+ metadata.gz: 21d34e982de83e86e65d3fbf16e09a7896132d1c770df881bd1ddbb057014979
4
+ data.tar.gz: 52574ee9d3ff95ac04b7871270398a3eab142fe0cfa75f8d815b8b18620feee8
5
5
  SHA512:
6
- metadata.gz: aa0fe0d0eba2cb7e327513a82d6d655698f612bd47dd1c8619d4c70e77e445695a2405412dba18af2554fba93b93027ce351e52664012f3597677ca251060a7c
7
- data.tar.gz: 0c50f558b01f8221a827e52e5b3d3dc8e84904c47d1d8487bfc2f1ed71f5ef4e994a35d690ffdb2ebcc2a5d9e607552a4b5eb8db866161d35bdd68b44e7af89c
6
+ metadata.gz: 797d6283055aa61d6691d39bd26fcd5d6d0846601eddae1d5b9a3636151a7da27925fd8e305b790e48d3ca54e4b656e8f3e21b4b4065612d77cc3acd080adfae
7
+ data.tar.gz: 8afe108bb7fe23e590580038c896abf08535494934c5ca5a96b5cf49a86a694b5574ca8cc1af0a63038378612554977ab90e0e9bfa855b387bc96fc62771f9fa
@@ -0,0 +1,33 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ main ]
13
+ pull_request:
14
+ branches: [ main ]
15
+
16
+ jobs:
17
+ test:
18
+
19
+ runs-on: ubuntu-latest
20
+
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - name: Set up Ruby
24
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
25
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
26
+ # uses: ruby/setup-ruby@v1
27
+ uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
28
+ with:
29
+ ruby-version: 2.6
30
+ - name: Install dependencies
31
+ run: bundle install
32
+ - name: Run tests
33
+ run: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## Unreleased
2
2
 
3
+ ## v0.3.2 - 2021-02-03
4
+
5
+ - Add support for `CustomField::Select` and `CustomField::MultiSelect`
6
+
3
7
  ## v0.3.1 - 2020-11-13
4
8
 
5
9
  - Update metadata in the `teamtailor.gemspec`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- teamtailor (0.3.1)
4
+ teamtailor (0.3.2)
5
5
  typhoeus (~> 1.3.1)
6
6
 
7
7
  GEM
@@ -35,6 +35,7 @@ module Teamtailor
35
35
  when 'departments' then Teamtailor::Department.new(record, included)
36
36
  when 'locations' then Teamtailor::Location.new(record, included)
37
37
  when 'custom-fields' then Teamtailor::CustomField.new(record, included)
38
+ when 'custom-field-selects' then Teamtailor::CustomField.new(record, included)
38
39
  when 'custom-field-values' then Teamtailor::CustomFieldValue.new(record, included)
39
40
  when 'referrals' then Teamtailor::Referral.new(record, included)
40
41
  when 'partner-results' then Teamtailor::PartnerResult.new(record, included)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Teamtailor
4
- VERSION = '0.3.1'
4
+ VERSION = '0.3.2'
5
5
  end
data/teamtailor.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
 
16
16
  spec.metadata['homepage_uri'] = spec.homepage
17
17
  spec.metadata['source_code_uri'] = 'https://github.com/bzf/teamtailor-rb'
18
- spec.metadata['changelog_uri'] = 'https://github.com/bzf/teamtailor-rb/master/CHANGELOG.md'
18
+ spec.metadata['changelog_uri'] = 'https://github.com/bzf/teamtailor-rb/main/CHANGELOG.md'
19
19
 
20
20
  spec.extra_rdoc_files = ['README.md']
21
21
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teamtailor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Ligné
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-13 00:00:00.000000000 Z
11
+ date: 2021-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 1.3.1
41
- description:
41
+ description:
42
42
  email:
43
43
  - hi@andreligne.se
44
44
  executables: []
@@ -46,6 +46,7 @@ extensions: []
46
46
  extra_rdoc_files:
47
47
  - README.md
48
48
  files:
49
+ - ".github/workflows/ruby.yml"
49
50
  - ".gitignore"
50
51
  - ".rspec"
51
52
  - ".travis.yml"
@@ -88,8 +89,8 @@ licenses:
88
89
  metadata:
89
90
  homepage_uri: https://github.com/teamtailor/teamtailor-gem
90
91
  source_code_uri: https://github.com/bzf/teamtailor-rb
91
- changelog_uri: https://github.com/bzf/teamtailor-rb/master/CHANGELOG.md
92
- post_install_message:
92
+ changelog_uri: https://github.com/bzf/teamtailor-rb/main/CHANGELOG.md
93
+ post_install_message:
93
94
  rdoc_options: []
94
95
  require_paths:
95
96
  - lib
@@ -104,8 +105,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
105
  - !ruby/object:Gem::Version
105
106
  version: '0'
106
107
  requirements: []
107
- rubygems_version: 3.1.2
108
- signing_key:
108
+ rubygems_version: 3.1.4
109
+ signing_key:
109
110
  specification_version: 4
110
111
  summary: Library for interacting with the Teamtailor API
111
112
  test_files: []