noko 2.0.0 → 2.1.0

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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +4 -0
  3. data/LICENSE.txt +1 -1
  4. data/README.md +0 -2
  5. data/noko.gemspec +4 -9
  6. metadata +20 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53d47e75f7bdd0e95aa8bc46eb113b6c77ab843a67779d607f80301858d3b7ae
4
- data.tar.gz: e8ec80330855516418562ce5e07b67bb965bce7242aaa6be32167acbacc2a8fd
3
+ metadata.gz: 37717695b83bb6b16fc132690db4a966483cdd69e9ac70132665a44e7228835b
4
+ data.tar.gz: c2947149c6f8458411c131b8654c1bc7a9a05d4884fd13b162f7f27b4fe42943
5
5
  SHA512:
6
- metadata.gz: 3b33dcf562a83582a1d9fdcbd9a4c3e5d0342e4157663b6d44cbf8d31983f3df4543bf3d17ddaf6d791bb3fec51a34d05d6bd374af796f4b46d48b2aeccba0c1
7
- data.tar.gz: 3f70da92e422530ff8d668ff3e638d65715140caab87c01c163ddcb39d5c55f33e218d405bf25a2b1727e294759c8cfdc91e81f4107170e25028620dcd37cf98
6
+ metadata.gz: 7098912f8ceeefa2917135b4087996fee8f079313a4dfd8ef0869f5b99af678d5f591de927d912954a7f05170d5ef6808d26501cff4f75b95297927b1d13fe57
7
+ data.tar.gz: a0358f74621ee86a3cdd7f242e8e537af2b20d2af00ef28fd42c163cc3fd7f6263f6b3be158589568da58136a1f0c66a5becfac109a979b97e531a044b25816a
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.1.0
2
+
3
+ * Added openssl dependency
4
+
1
5
  # 2.0.0
2
6
 
3
7
  * **Required ruby version is now 3.1.0**
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015-2024 TIMCRAFT
1
+ Copyright (c) 2015-2026 TIMCRAFT
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person
4
4
  obtaining a copy of this software and associated documentation
data/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  # noko
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/noko.svg)](https://badge.fury.io/rb/noko) [![Test Status](https://github.com/timcraft/noko/actions/workflows/test.yml/badge.svg)](https://github.com/timcraft/noko/actions/workflows/test.yml)
4
-
5
3
  Ruby client for the [Noko API](https://developer.nokotime.com/v2/).
6
4
 
7
5
 
data/noko.gemspec CHANGED
@@ -1,23 +1,18 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'noko'
3
- s.version = '2.0.0'
3
+ s.version = '2.1.0'
4
4
  s.license = 'MIT'
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.authors = ['Tim Craft']
7
- s.email = ['mail@timcraft.com']
7
+ s.email = ['email@timcraft.com']
8
8
  s.homepage = 'https://github.com/timcraft/noko'
9
9
  s.description = 'Ruby client for the Noko API'
10
- s.summary = 'See description'
10
+ s.summary = 'Ruby client for the Noko API'
11
11
  s.files = Dir.glob('lib/**/*.rb') + %w(CHANGES.md LICENSE.txt README.md noko.gemspec)
12
12
  s.required_ruby_version = '>= 3.1.0'
13
13
  s.require_path = 'lib'
14
- s.metadata = {
15
- 'homepage' => 'https://github.com/timcraft/noko',
16
- 'source_code_uri' => 'https://github.com/timcraft/noko',
17
- 'bug_tracker_uri' => 'https://github.com/timcraft/noko/issues',
18
- 'changelog_uri' => 'https://github.com/timcraft/noko/blob/main/CHANGES.md'
19
- }
20
14
  s.add_dependency 'net-http'
15
+ s.add_dependency 'openssl'
21
16
  s.add_dependency 'json', '~> 2'
22
17
  s.add_dependency 'uri', '~> 1'
23
18
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: noko
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Craft
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: net-http
@@ -24,6 +23,20 @@ dependencies:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
25
  version: '0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: openssl
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
27
40
  - !ruby/object:Gem::Dependency
28
41
  name: json
29
42
  requirement: !ruby/object:Gem::Requirement
@@ -54,7 +67,7 @@ dependencies:
54
67
  version: '1'
55
68
  description: Ruby client for the Noko API
56
69
  email:
57
- - mail@timcraft.com
70
+ - email@timcraft.com
58
71
  executables: []
59
72
  extensions: []
60
73
  extra_rdoc_files: []
@@ -86,12 +99,7 @@ files:
86
99
  homepage: https://github.com/timcraft/noko
87
100
  licenses:
88
101
  - MIT
89
- metadata:
90
- homepage: https://github.com/timcraft/noko
91
- source_code_uri: https://github.com/timcraft/noko
92
- bug_tracker_uri: https://github.com/timcraft/noko/issues
93
- changelog_uri: https://github.com/timcraft/noko/blob/main/CHANGES.md
94
- post_install_message:
102
+ metadata: {}
95
103
  rdoc_options: []
96
104
  require_paths:
97
105
  - lib
@@ -106,8 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
114
  - !ruby/object:Gem::Version
107
115
  version: '0'
108
116
  requirements: []
109
- rubygems_version: 3.5.22
110
- signing_key:
117
+ rubygems_version: 4.0.6
111
118
  specification_version: 4
112
- summary: See description
119
+ summary: Ruby client for the Noko API
113
120
  test_files: []