teamtailor 0.3.0 → 0.3.1

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: 2149b16c38eaf624c87c2f06eec2acea93d0cd3e92d6b7a6322f43809c20816f
4
- data.tar.gz: 1250d366f8bb782a3909a10768219d938d411d6ede3222153ab9873cd3c6167f
3
+ metadata.gz: 9312c6ec378d1c25c5895620a19cac0a4e5ad918bcd1371ac88e127d1c5d31ec
4
+ data.tar.gz: 5b264b0ee8a3b37bf3d61f392e56deff840a005155a29a653196bff9a376e8dd
5
5
  SHA512:
6
- metadata.gz: 2f0da415942f37cc09fd8f8ea914ca78001305be8c3b9de66b9a2a215a12a489f13e0f13133661129042603d8c055428e2062b1dcabad230b7ed84be2125b937
7
- data.tar.gz: 323f5bdd970d9bf602d87fd8822cb1c99141b0d0ae7ad9a903e639c09a078d6b03748f975ec717228818ca0728d440bd81f9104bb3676005e5859a397eb522d8
6
+ metadata.gz: aa0fe0d0eba2cb7e327513a82d6d655698f612bd47dd1c8619d4c70e77e445695a2405412dba18af2554fba93b93027ce351e52664012f3597677ca251060a7c
7
+ data.tar.gz: 0c50f558b01f8221a827e52e5b3d3dc8e84904c47d1d8487bfc2f1ed71f5ef4e994a35d690ffdb2ebcc2a5d9e607552a4b5eb8db866161d35bdd68b44e7af89c
@@ -1,6 +1,10 @@
1
1
  ## Unreleased
2
2
 
3
- ## v0.3.0 - 2020-05-18
3
+ ## v0.3.1 - 2020-11-13
4
+
5
+ - Update metadata in the `teamtailor.gemspec`
6
+
7
+ ## v0.3.0 - 2020-06-30
4
8
 
5
9
  - [BREAKING] Update `Teamtailor::Relationship` to always return multiple records
6
10
  - Add `Teamtailor::Requisition` and `Client#requisitions`
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- teamtailor (0.3.0)
4
+ teamtailor (0.3.1)
5
5
  typhoeus (~> 1.3.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -117,7 +117,7 @@ git commits and tags, and push the `.gem` file to
117
117
  ## Contributing
118
118
 
119
119
  Bug reports and pull requests are welcome on GitHub at
120
- https://github.com/bzf/teamtailor-rb.
120
+ https://github.com/teamtailor/teamtailor-rb.
121
121
 
122
122
 
123
123
  ## License
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Teamtailor
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.1'
5
5
  end
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ['hi@andreligne.se']
10
10
 
11
11
  spec.summary = 'Library for interacting with the Teamtailor API'
12
- spec.homepage = 'https://github.com/bzf/teamtailor-gem'
12
+ spec.homepage = 'https://github.com/teamtailor/teamtailor-gem'
13
13
  spec.license = 'MIT'
14
14
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
15
15
 
@@ -17,6 +17,8 @@ Gem::Specification.new do |spec|
17
17
  spec.metadata['source_code_uri'] = 'https://github.com/bzf/teamtailor-rb'
18
18
  spec.metadata['changelog_uri'] = 'https://github.com/bzf/teamtailor-rb/master/CHANGELOG.md'
19
19
 
20
+ spec.extra_rdoc_files = ['README.md']
21
+
20
22
  spec.add_development_dependency 'rspec', '~> 3.2'
21
23
  spec.add_dependency 'typhoeus', '~> 1.3.1'
22
24
 
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.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Ligné
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-30 00:00:00.000000000 Z
11
+ date: 2020-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -43,7 +43,8 @@ email:
43
43
  - hi@andreligne.se
44
44
  executables: []
45
45
  extensions: []
46
- extra_rdoc_files: []
46
+ extra_rdoc_files:
47
+ - README.md
47
48
  files:
48
49
  - ".gitignore"
49
50
  - ".rspec"
@@ -81,11 +82,11 @@ files:
81
82
  - lib/teamtailor/request.rb
82
83
  - lib/teamtailor/version.rb
83
84
  - teamtailor.gemspec
84
- homepage: https://github.com/bzf/teamtailor-gem
85
+ homepage: https://github.com/teamtailor/teamtailor-gem
85
86
  licenses:
86
87
  - MIT
87
88
  metadata:
88
- homepage_uri: https://github.com/bzf/teamtailor-gem
89
+ homepage_uri: https://github.com/teamtailor/teamtailor-gem
89
90
  source_code_uri: https://github.com/bzf/teamtailor-rb
90
91
  changelog_uri: https://github.com/bzf/teamtailor-rb/master/CHANGELOG.md
91
92
  post_install_message: