yobi-http 0.12.0 → 0.12.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.
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 +18 -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: fb20dc471298499f2ba3baa43cd51e83039cf67935544fe1f0299de33e709b4c
4
+ data.tar.gz: 9df3715695a95f5c23b506f1568b4bc42d3ecbe1e031bc6aab6e20d69b482a5d
5
5
  SHA512:
6
- metadata.gz: 8cb41090b4a1b2c2b89795d86d22ec593395429f50a89f9655857ab7ab2cd46b9e03bec8b6843bdc492c625614c6f9a8976566cebe0b77deb06bb6a584fe062b
7
- data.tar.gz: d1a04f1b46bda0d9786d151477d76c25bd981b60c9c6a2a0e80a39a46b05a64d45da695578d39774fecabdbb6fd3726fb87a7c45fd5ccf231e55becd73b9a617
6
+ metadata.gz: b7761b5b83c95b4f8dafcadb20e9c7ab7463fc93f2c4d9334e2de37516ac5990ba5915deffc1dbce0a12f7ceb390d4a4b62b796590b3c966975dbe382ccefb8c
7
+ data.tar.gz: 342112ecb2fe37dbe4ce278353850207db149eef0cf1bfd088f4d1d646a563771756b481b3eaa76d83a081d3f2e9bea0ebb0457654d95543a2c9c9f0ac024c35
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.1"
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Vinciguerra
@@ -37,8 +37,18 @@ 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
+ * Support for various HTTP methods (GET, POST, PUT, DELETE, etc.)
48
+ * Customizable request headers and body
49
+ * Pretty-printed responses with syntax highlighting
50
+ * Download response content to a file
51
+ * Low dependency and easy installation
42
52
  email:
43
53
  - daniel.vinciguerra@bivee.com.br
44
54
  executables:
@@ -51,6 +61,7 @@ files:
51
61
  - CHANGELOG.md
52
62
  - CODE_OF_CONDUCT.md
53
63
  - Examples.md
64
+ - MIT-LICENSE
54
65
  - README.md
55
66
  - Rakefile
56
67
  - exe/yobi
@@ -76,7 +87,8 @@ files:
76
87
  - spec/yobi/http_spec.rb
77
88
  - spec/yobi_spec.rb
78
89
  homepage: https://github.com/dvinciguerra/yobi-http
79
- licenses: []
90
+ licenses:
91
+ - MIT
80
92
  metadata:
81
93
  homepage_uri: https://github.com/dvinciguerra/yobi-http
82
94
  source_code_uri: https://github.com/dvinciguerra/yobi-http
@@ -97,6 +109,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
109
  requirements: []
98
110
  rubygems_version: 3.6.2
99
111
  specification_version: 4
100
- summary: Yobi is a simple HTTP client for testing APIs from the command line built
101
- with Ruby
112
+ summary: Yobi is a terminal tool to make HTTP requests and display responses in a
113
+ friendly way inspired by HTTPie.
102
114
  test_files: []