tp_client 0.3.0 → 1.0.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 +4 -4
- data/Gemfile +6 -6
- data/lib/tp_client.rb +1 -0
- data/tp_client.gemspec +6 -8
- metadata +6 -32
- data/.travis.yml +0 -43
- data/Appraisals +0 -15
- data/gemfiles/.bundle/config +0 -2
- data/gemfiles/activesupport_4.2.gemfile +0 -16
- data/gemfiles/activesupport_5.1.gemfile +0 -16
- data/gemfiles/activesupport_5.2.gemfile +0 -16
- data/gemfiles/activesupport_6.gemfile +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63110dbf8e3238a85103979a0e5a23f4b3fc885ae624b91b35b3b0ff57031e4b
|
|
4
|
+
data.tar.gz: a6b618433fb9d4bac77aa02de37f8fc71008c9dcf3d3b0c14f6e584e2d11e11a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53550896b2b236cd0f8e666f64f6a0369ee11b5d523c4e1f2d9ce75f2c4ea76ec23bb3c8f4799cd746a8a1c17680c7936872d37bce4d2877a8ef5f6efc0cb5f6
|
|
7
|
+
data.tar.gz: 152a2615e3ed48bcb8e4ccd8778b8014cd3c0c30096368d68d5e7c01cca32fe8ac89ae268e5fc7892c720b0048b1c156ea2d32efd056638a94cfc45c11c4fc4d
|
data/Gemfile
CHANGED
|
@@ -5,10 +5,10 @@ gemspec
|
|
|
5
5
|
# gem are specified in tiny-client.gemspec
|
|
6
6
|
|
|
7
7
|
group :test, :development do
|
|
8
|
-
gem
|
|
9
|
-
gem
|
|
10
|
-
gem
|
|
11
|
-
gem
|
|
12
|
-
gem
|
|
13
|
-
gem
|
|
8
|
+
gem "byebug"
|
|
9
|
+
gem "minitest"
|
|
10
|
+
gem "mocha"
|
|
11
|
+
gem "rake"
|
|
12
|
+
gem "webmock"
|
|
13
|
+
gem "yard"
|
|
14
14
|
end
|
data/lib/tp_client.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require_relative "tiny_client"
|
data/tp_client.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.platform = Gem::Platform::RUBY
|
|
3
|
-
s.name =
|
|
4
|
-
s.version =
|
|
5
|
-
s.authors = [
|
|
6
|
-
s.email =
|
|
3
|
+
s.name = "tp_client"
|
|
4
|
+
s.version = "1.0.1"
|
|
5
|
+
s.authors = ["TINYpulse DevOps"]
|
|
6
|
+
s.email = "devops@tinypulse.com"
|
|
7
7
|
|
|
8
8
|
s.license = 'MIT'
|
|
9
9
|
|
|
@@ -29,8 +29,6 @@ Gem::Specification.new do |s|
|
|
|
29
29
|
s.rdoc_options = ['--main', 'README.md']
|
|
30
30
|
s.extra_rdoc_files = ['LICENSE', 'README.md']
|
|
31
31
|
|
|
32
|
-
s.
|
|
33
|
-
s.
|
|
34
|
-
|
|
35
|
-
s.add_development_dependency 'appraisal', '~> 2.2', '>= 2.2.0'
|
|
32
|
+
s.add_dependency "curb", ">= 0.9.11", "< 1.1"
|
|
33
|
+
s.add_dependency "activesupport", ">= 4.0", "< 9"
|
|
36
34
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tp_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TINYpulse DevOps
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: curb
|
|
@@ -39,7 +39,7 @@ dependencies:
|
|
|
39
39
|
version: '4.0'
|
|
40
40
|
- - "<"
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: '
|
|
42
|
+
version: '9'
|
|
43
43
|
type: :runtime
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -49,27 +49,7 @@ dependencies:
|
|
|
49
49
|
version: '4.0'
|
|
50
50
|
- - "<"
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: '
|
|
53
|
-
- !ruby/object:Gem::Dependency
|
|
54
|
-
name: appraisal
|
|
55
|
-
requirement: !ruby/object:Gem::Requirement
|
|
56
|
-
requirements:
|
|
57
|
-
- - "~>"
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
version: '2.2'
|
|
60
|
-
- - ">="
|
|
61
|
-
- !ruby/object:Gem::Version
|
|
62
|
-
version: 2.2.0
|
|
63
|
-
type: :development
|
|
64
|
-
prerelease: false
|
|
65
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
-
requirements:
|
|
67
|
-
- - "~>"
|
|
68
|
-
- !ruby/object:Gem::Version
|
|
69
|
-
version: '2.2'
|
|
70
|
-
- - ">="
|
|
71
|
-
- !ruby/object:Gem::Version
|
|
72
|
-
version: 2.2.0
|
|
52
|
+
version: '9'
|
|
73
53
|
description: TINYclient is an HTTP/JSON crud toolkit inspired by ActiveRecord and
|
|
74
54
|
based on Curb.
|
|
75
55
|
email: devops@tinypulse.com
|
|
@@ -81,17 +61,10 @@ extra_rdoc_files:
|
|
|
81
61
|
files:
|
|
82
62
|
- ".gitignore"
|
|
83
63
|
- ".rubocop.yml"
|
|
84
|
-
- ".travis.yml"
|
|
85
|
-
- Appraisals
|
|
86
64
|
- Gemfile
|
|
87
65
|
- LICENSE
|
|
88
66
|
- README.md
|
|
89
67
|
- Rakefile
|
|
90
|
-
- gemfiles/.bundle/config
|
|
91
|
-
- gemfiles/activesupport_4.2.gemfile
|
|
92
|
-
- gemfiles/activesupport_5.1.gemfile
|
|
93
|
-
- gemfiles/activesupport_5.2.gemfile
|
|
94
|
-
- gemfiles/activesupport_6.gemfile
|
|
95
68
|
- lib/tiny_client.rb
|
|
96
69
|
- lib/tiny_client/base_error.rb
|
|
97
70
|
- lib/tiny_client/configuration.rb
|
|
@@ -105,6 +78,7 @@ files:
|
|
|
105
78
|
- lib/tiny_client/response.rb
|
|
106
79
|
- lib/tiny_client/response_error.rb
|
|
107
80
|
- lib/tiny_client/url_builder.rb
|
|
81
|
+
- lib/tp_client.rb
|
|
108
82
|
- tp_client.gemspec
|
|
109
83
|
homepage: https://github.com/TINYhr/tiny_client
|
|
110
84
|
licenses:
|
|
@@ -130,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
130
104
|
- !ruby/object:Gem::Version
|
|
131
105
|
version: '0'
|
|
132
106
|
requirements: []
|
|
133
|
-
rubygems_version: 3.
|
|
107
|
+
rubygems_version: 3.3.27
|
|
134
108
|
signing_key:
|
|
135
109
|
specification_version: 4
|
|
136
110
|
summary: TINYclient, an HTTP/JSON crud client toolkit.
|
data/.travis.yml
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
dist: bionic
|
|
2
|
-
sudo: false
|
|
3
|
-
language: ruby
|
|
4
|
-
cache: bundler
|
|
5
|
-
script: bundle exec rake
|
|
6
|
-
jobs:
|
|
7
|
-
fast_finish: true
|
|
8
|
-
include:
|
|
9
|
-
- stage: Test
|
|
10
|
-
rvm: 2.4.10
|
|
11
|
-
gemfile: gemfiles/activesupport_4.2.gemfile
|
|
12
|
-
- rvm: 2.4.10
|
|
13
|
-
gemfile: gemfiles/activesupport_5.1.gemfile
|
|
14
|
-
- rvm: 2.5.9
|
|
15
|
-
gemfile: gemfiles/activesupport_5.1.gemfile
|
|
16
|
-
- rvm: 2.5.9
|
|
17
|
-
gemfile: gemfiles/activesupport_5.2.gemfile
|
|
18
|
-
- rvm: 2.5.9
|
|
19
|
-
gemfile: gemfiles/activesupport_6.gemfile
|
|
20
|
-
- rvm: 2.6.10
|
|
21
|
-
gemfile: gemfiles/activesupport_5.2.gemfile
|
|
22
|
-
- rvm: 2.6.10
|
|
23
|
-
gemfile: gemfiles/activesupport_6.gemfile
|
|
24
|
-
- rvm: 2.7.7
|
|
25
|
-
gemfile: gemfiles/activesupport_5.2.gemfile
|
|
26
|
-
- rvm: 2.7.7
|
|
27
|
-
gemfile: gemfiles/activesupport_6.gemfile
|
|
28
|
-
- rvm: 3.0.5
|
|
29
|
-
gemfile: gemfiles/activesupport_6.gemfile
|
|
30
|
-
- if: tag IS present
|
|
31
|
-
stage: Release Gem
|
|
32
|
-
rvm: 2.5.9
|
|
33
|
-
gemfile: gemfiles/activesupport_5.1.gemfile
|
|
34
|
-
script: skip
|
|
35
|
-
deploy:
|
|
36
|
-
provider: rubygems
|
|
37
|
-
gem: tp_client
|
|
38
|
-
api_key:
|
|
39
|
-
secure: vyxUUOg1A7K1iqfjXa/P9URnbh+ntKvgfAYDAxr4My9isOsnlYXtRdDl2RgLttmmtOv5unPDrTv8Mkh5B1WMA6ihKaBUXCaU4cgyh6vLds2fSy1yxUSR/TmfnoXmRVAtBHYiuKuHol5koIW+gSDNHYenzO2mvrOks06Jtkmp0X2OJgVCS1PqWjTrDvlpfRKf2bUnE2/5/XvwnUqKCLRls1CSpV+phW6m9qsAkqMv0TMa8Em3pOUjY8mCAgFArr3cl5MtyX3Nhh95CzcGHeMUfLu8Lz0NcHscG8xNq58NnFFU6m8nQJYyxZOjFtUrJumyvy5qwZZtprwc8XxE6BmY1IJWfKCnDJbEl/qxaX0psfVG2Eiu6e/Y/Lad1NUV9hYZCXkEVEsksZa7n3sd2XOzbJmqPgM0z53Ly3koj1uMZrJ5BJ4AfZIE4gbFm5+UmSez/K9xnCWUc5NXR9+v1kyJYLsjHevn0DMxb+7xvSR5zxyS9du+GUIbIGRIKBERYGS08u+/zaPTLmGSyMpK+x5ichJoSLaJsECGGUbY2kL9aO18w41oZbvQf+Cp/656oRZM8U4DV2HtRCp6Dqc3Y8MJG1Pzft6+mHYPepon21fi08B6GOAFMF/Rcuz/SpnP9dvSCJyEcgNahDDNvRQmOwT00M8tSDeQeuR3uTXfMScBkAA=
|
|
40
|
-
on:
|
|
41
|
-
tags: true
|
|
42
|
-
branch: master
|
|
43
|
-
repo: TINYhr/tiny_client
|
data/Appraisals
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
appraise 'activesupport-4.2' do
|
|
2
|
-
gem 'activesupport', '~> 4.2'
|
|
3
|
-
end
|
|
4
|
-
|
|
5
|
-
appraise 'activesupport-5.1' do
|
|
6
|
-
gem 'activesupport', '~> 5.1'
|
|
7
|
-
end
|
|
8
|
-
|
|
9
|
-
appraise 'activesupport-5.2' do
|
|
10
|
-
gem 'activesupport', '~> 5.2'
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
appraise 'activesupport-6' do
|
|
14
|
-
gem 'activesupport', '~> 6.0'
|
|
15
|
-
end
|
data/gemfiles/.bundle/config
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "activesupport", "~> 4.2"
|
|
6
|
-
|
|
7
|
-
group :test, :development do
|
|
8
|
-
gem "byebug"
|
|
9
|
-
gem "minitest"
|
|
10
|
-
gem "mocha"
|
|
11
|
-
gem "rake"
|
|
12
|
-
gem "webmock"
|
|
13
|
-
gem "yard"
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
gemspec path: "../"
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "activesupport", "~> 5.1"
|
|
6
|
-
|
|
7
|
-
group :test, :development do
|
|
8
|
-
gem "byebug"
|
|
9
|
-
gem "minitest"
|
|
10
|
-
gem "mocha"
|
|
11
|
-
gem "rake"
|
|
12
|
-
gem "webmock"
|
|
13
|
-
gem "yard"
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
gemspec path: "../"
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "activesupport", "~> 5.2"
|
|
6
|
-
|
|
7
|
-
group :test, :development do
|
|
8
|
-
gem "byebug"
|
|
9
|
-
gem "minitest"
|
|
10
|
-
gem "mocha"
|
|
11
|
-
gem "rake"
|
|
12
|
-
gem "webmock"
|
|
13
|
-
gem "yard"
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
gemspec path: "../"
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# This file was generated by Appraisal
|
|
2
|
-
|
|
3
|
-
source "https://rubygems.org"
|
|
4
|
-
|
|
5
|
-
gem "activesupport", "~> 6.0"
|
|
6
|
-
|
|
7
|
-
group :test, :development do
|
|
8
|
-
gem "byebug"
|
|
9
|
-
gem "minitest"
|
|
10
|
-
gem "mocha"
|
|
11
|
-
gem "rake"
|
|
12
|
-
gem "webmock"
|
|
13
|
-
gem "yard"
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
gemspec path: "../"
|