tp_client 0.1.0 → 0.1.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
- SHA1:
3
- metadata.gz: ab9aaf3befe004379de592b2c5013cf917eacf5e
4
- data.tar.gz: 77c525ffff5cd8be2a655f921db1326fa39fa883
2
+ SHA256:
3
+ metadata.gz: 7b6e1a1452c2f80721a7d00464e719cd537e959b81fda87cd8a073b02ea5ad73
4
+ data.tar.gz: d50c95716224df623cd4924703cac548c8f206415afc1831f8be397b89c38b4e
5
5
  SHA512:
6
- metadata.gz: 5c6d7870119bd22e8387aef07b94a454fd33c956150ac07e7a9b0ca58fa7197e8544802f047954a54826d97543bf68dcd7d91422fbac0c2950a52502568fb0a7
7
- data.tar.gz: 0f451d61b4b1d4314836781de07afc846ffec1eb45adf0a4ff24b173384e599741c938d15d5c448b89105a539c2d96975012872ddf4ac1fc8913d73e8de616d8
6
+ metadata.gz: a4061292d6d68ab89cf31d7104579ecb958b0aec38e2ae5f887b9724cf9c76709c291222c8caf330295405ac535337c887398d32db6c733891b659ab04fc9c5a
7
+ data.tar.gz: 107e315e52118de4326c16c4a5da7aaa3c0dc3f08257f272e92fa3e4d1cde58b284d5440359a81a285feb228e097d161fc4c2bd9f0e284614517ceb997412deb
@@ -1,12 +1,13 @@
1
+ sudo: false
1
2
  language: ruby
2
3
  rvm:
3
- - 2.4.0
4
+ - 2.4.0
4
5
  deploy:
5
6
  provider: rubygems
6
7
  api_key:
7
8
  secure: rhnpzPKF7/SYka8XSo8ohtIT/YZB+eltG+uK1Yrup+RHYUvvjL5VbGuVXK71ouNtA5g0iA0xHB8lYyXBkC/DsovURjwhYQXymykqWz68yGjCQgl3i0IP8bgntAP5+PYbeOvYpy8DlH+6qakoTewa/cOhYvLLVlE91zk92UFORIW2b0TVxxMASB2cuKBOkI5a7vRpncpBYupIWLMIHwQd2IGPlWCPOx53QumZkuG1Xze8wuxGTdT+Oo4pIJsNZi1Oz5KKbOaYgYOZa29TlXesz43HcTruIIeMJgKuVMOMgSO0OuQGZa2wK5r7frWqepL8fOvkxS1MYM/9CBC2oUDPQMfX8OIbKQrvgmmIWy5gb78PXQzc8nzYXi+D8HZSydL+7lGnW6Jj5wUUcZ/s8pzfUtC5vgVq+mA7HssKwt3vFACh2prDa+EZuas7jDz36ek9GZsKooKHzMaN2gO9um8JfwgonWbqvXJvhz64QOqTu8ySaWX4is0Y93wc+3fLHPtS6gnyG/ClhLtm7PtJ1+LPo6xrn+9dMfcMfpLTq/z1urHJyzj+8NspMp+ZAZVu+WgfmfcX3/UmzOUBcTOCjA4i2L+jEydFgrOJhYXgGp3iCueKUhHmAAFzWkG8Vtt/KgmvW400kjCAjqIKYo+2DZjlqILZbT19Kr/ZMqDiwnB5ozI=
8
9
  gem: tp_client
9
- gemspec: tiny_client.gemspec
10
10
  on:
11
11
  tags: true
12
+ branch: master
12
13
  repo: TINYhr/tiny_client
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # TINYclient, a tiny HTTP/JSON crud client toolkit
2
- [![Gem Version](https://badge.fury.io/rb/tiny_client.svg)](https://badge.fury.io/rb/tiny_client) [![Build Status](https://travis-ci.org/TINYhr/tiny_client.svg)](https://travis-ci.org/TINYhr/tiny_client) [![Code Climate](https://codeclimate.com/github/TINYhr/tiny_client/badges/gpa.svg)](https://codeclimate.com/github/TINYhr/tiny_client)
2
+ [![Gem Version](https://badge.fury.io/rb/tp_client.svg)](https://badge.fury.io/rb/tp_client) [![Build Status](https://travis-ci.org/TINYhr/tiny_client.svg)](https://travis-ci.org/TINYhr/tiny_client) [![Code Climate](https://codeclimate.com/github/TINYhr/tiny_client/badges/gpa.svg)](https://codeclimate.com/github/TINYhr/tiny_client)
3
3
 
4
4
  TINYclient is inspired by [Active Record](http://guides.rubyonrails.org/active_record_basics.html) and based on [Curb](https://github.com/taf2/curb).
5
5
 
@@ -1,10 +1,12 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'tp_client'
3
3
  s.authors = ['TINYpulse Devops']
4
- s.version = '0.1.0'
5
- s.description = 'TINYclient, an HTTP/JSON crud client toolkit.'
4
+ s.version = '0.1.1'
5
+
6
+ s.summary = 'TINYclient, an HTTP/JSON crud client toolkit.'
7
+ s.description = 'TINYclient is an HTTP/JSON crud toolkit inspired by ActiveRecord and based on Curb.'
6
8
  s.email = 'devops@tinypulse.com'
7
- s.extra_rdoc_files = ['LICENSE', 'README.md']
9
+
8
10
  s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
9
11
 
10
12
  if s.respond_to?(:metadata)
@@ -13,19 +15,19 @@ Gem::Specification.new do |s|
13
15
  raise "RubyGems 2.0 or newer is required to protect against " \
14
16
  "public gem pushes."
15
17
  end
18
+
16
19
  #### Load-time details
17
20
  s.require_paths = %w(lib ext)
18
21
  s.rubyforge_project = 'tiny_client'
19
- s.summary = 'TINYclient is an HTTP/JSON crud toolkit inspired by ActiveRecord and based on Curb.'
20
22
  s.test_files = ['test/tiny_client/']
21
23
 
22
24
  #### Documentation and testing.
23
25
  s.has_rdoc = 'yard'
24
26
  s.homepage = 'https://github.com/TINYhr/tiny_client'
25
27
  s.rdoc_options = ['--main', 'README.md']
28
+ s.extra_rdoc_files = ['LICENSE', 'README.md']
26
29
 
27
30
  s.platform = Gem::Platform::RUBY
28
-
29
31
  s.license = 'MIT'
30
32
 
31
33
  s.add_runtime_dependency 'curb', '> 0.7.0', '< 1.0.0'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tp_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TINYpulse Devops
@@ -50,7 +50,8 @@ dependencies:
50
50
  - - "<"
51
51
  - !ruby/object:Gem::Version
52
52
  version: '6.0'
53
- description: TINYclient, an HTTP/JSON crud client toolkit.
53
+ description: TINYclient is an HTTP/JSON crud toolkit inspired by ActiveRecord and
54
+ based on Curb.
54
55
  email: devops@tinypulse.com
55
56
  executables: []
56
57
  extensions: []
@@ -78,7 +79,7 @@ files:
78
79
  - lib/tiny_client/response.rb
79
80
  - lib/tiny_client/response_error.rb
80
81
  - lib/tiny_client/url_builder.rb
81
- - tiny_client.gemspec
82
+ - tp_client.gemspec
82
83
  homepage: https://github.com/TINYhr/tiny_client
83
84
  licenses:
84
85
  - MIT
@@ -103,9 +104,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
104
  version: '0'
104
105
  requirements: []
105
106
  rubyforge_project: tiny_client
106
- rubygems_version: 2.6.8
107
+ rubygems_version: 2.7.6
107
108
  signing_key:
108
109
  specification_version: 4
109
- summary: TINYclient is an HTTP/JSON crud toolkit inspired by ActiveRecord and based
110
- on Curb.
110
+ summary: TINYclient, an HTTP/JSON crud client toolkit.
111
111
  test_files: []