yobi-http 0.12.0 → 0.12.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +21 -0
  3. data/lib/yobi/version.rb +1 -1
  4. metadata +19 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 713eaa43f4787691ddcf301d17652886a9f1141cd92600924a0b4737b87f0637
4
- data.tar.gz: ec5199666420337034a8f2d17a011dbdb0c5acde3851f2b533ef333c049b9c3a
3
+ metadata.gz: 7efd95af878b93f23bcd1cf7818ba462149167ef20a3fdba36329bd3244ddd09
4
+ data.tar.gz: 4a7e891936fbeb1aaf858d3becfb28c17a0816e16a0202619ed38ab8e2fbf655
5
5
  SHA512:
6
- metadata.gz: 8cb41090b4a1b2c2b89795d86d22ec593395429f50a89f9655857ab7ab2cd46b9e03bec8b6843bdc492c625614c6f9a8976566cebe0b77deb06bb6a584fe062b
7
- data.tar.gz: d1a04f1b46bda0d9786d151477d76c25bd981b60c9c6a2a0e80a39a46b05a64d45da695578d39774fecabdbb6fd3726fb87a7c45fd5ccf231e55becd73b9a617
6
+ metadata.gz: e6d6df9a77745606a84a9105764634eaae1f45fd1b30737853431c128eb2d03595f61c3f2f002f71cd8218c653e93110f60bdf03969653e12a3d5f936faae6a8
7
+ data.tar.gz: af7229d3a2792de4ab88291375af5b1b71fb9be4a25cbe42c0390366397b394ee08dbbfa0043c8ac7a1c775e03657361c34a8ce261911917ae524777644f9327
data/MIT-LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ Copyright (c) Daniel Vinciguerra
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+
data/lib/yobi/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Yobi
4
4
  # Yobi gem version
5
- VERSION = "0.12.0"
5
+ VERSION = "0.12.2"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yobi-http
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Vinciguerra
@@ -37,8 +37,19 @@ dependencies:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
39
  version: '0.7'
40
- description: Yobi is a simple HTTP client for testing APIs from the command line built
41
- with Ruby
40
+ description: |
41
+ +Yobi+ is a terminal tool to make +HTTP+ requests and display responses in a friendly way inspired by HTTPie.
42
+
43
+ It allows you to easily send HTTP requests and view the responses in a human-readable format, making it easier
44
+ to debug and test APIs from the command line.
45
+
46
+ === The main features of Yobi include:
47
+
48
+ * Support for various HTTP methods _(GET, POST, PUT, DELETE, etc.)_
49
+ * Customizable request +headers+ and +body+
50
+ * Pretty-printed responses with _syntax highlighting_
51
+ * _Download mode_ saves response content to a file
52
+ * _Low dependency_ and _easy installation_
42
53
  email:
43
54
  - daniel.vinciguerra@bivee.com.br
44
55
  executables:
@@ -51,6 +62,7 @@ files:
51
62
  - CHANGELOG.md
52
63
  - CODE_OF_CONDUCT.md
53
64
  - Examples.md
65
+ - MIT-LICENSE
54
66
  - README.md
55
67
  - Rakefile
56
68
  - exe/yobi
@@ -76,7 +88,8 @@ files:
76
88
  - spec/yobi/http_spec.rb
77
89
  - spec/yobi_spec.rb
78
90
  homepage: https://github.com/dvinciguerra/yobi-http
79
- licenses: []
91
+ licenses:
92
+ - MIT
80
93
  metadata:
81
94
  homepage_uri: https://github.com/dvinciguerra/yobi-http
82
95
  source_code_uri: https://github.com/dvinciguerra/yobi-http
@@ -97,6 +110,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
110
  requirements: []
98
111
  rubygems_version: 3.6.2
99
112
  specification_version: 4
100
- summary: Yobi is a simple HTTP client for testing APIs from the command line built
101
- with Ruby
113
+ summary: Yobi is a terminal tool to make HTTP requests and display responses in a
114
+ friendly way inspired by HTTPie.
102
115
  test_files: []