lucid_http 1.1.1 → 1.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5b444d1938d426fbaa55d09925bab0bf625c68c1e1e36addab60ea0076dfcec
4
- data.tar.gz: abfac0e6f2ba7675977c5f16c85dc8f2f9168c14fe5c115cfeb26749db6be6e3
3
+ metadata.gz: c5eb49e10f0ed93581bd12e4c0855d540df34aad9f06b16ef998ea61829083f3
4
+ data.tar.gz: 922b6745441867819c4a766ea45491338c5f0d8c63be8936b85b74fd79eb4445
5
5
  SHA512:
6
- metadata.gz: 7aa1f8e42199b43a98070c56bb196be08bd3b898c436b6d35a5c0776f35fedc3cbb18a671633e0de0cf89180d1eebbfa46267f61ab31ed30e7f79ad532e368d3
7
- data.tar.gz: 05b720a710fa490ee93c787c9b23d0881ce947b40890cf662eaa175761432235c08eb844b50d46ea84b9b24a0bcd5ef887e899f52ba3f78ef5673efd8b032c0d
6
+ metadata.gz: 6f2f53e389652a8f76670d1a8fbe687460cffb7b1dbd67a05ddfd7a5d975247d7e01a328901c8250afbb575236d7bf2780a90e4cbd63137daed265fe5cec2c22
7
+ data.tar.gz: 19f08bb2b81fdb437fe4eb808643ab412d60861bc2f88e8b7d3583ceebe39c89efa4c786addaae924f01814b4c0cc7a76f7060ac6a5818548635a746437c536b
data/README.md CHANGED
@@ -6,7 +6,11 @@ TODO: Delete this and the text above, and describe your gem
6
6
 
7
7
  ## Installation
8
8
 
9
- Add this line to your application's Gemfile:
9
+ The rocommended way to install lucid_http is by running
10
+
11
+ $ gem install lucid_http
12
+
13
+ You could also add it to your application's Gemfile, but this gem is not meant to be used in this way:
10
14
 
11
15
  ```ruby
12
16
  gem 'lucid_http'
@@ -16,10 +20,6 @@ And then execute:
16
20
 
17
21
  $ bundle
18
22
 
19
- Or install it yourself as:
20
-
21
- $ gem install lucid_http
22
-
23
23
  ## Usage
24
24
 
25
25
  An explanation of the usage for this gem is on the book Mastering Roda, you can follow [this link](https://fiachetti.gitlab.io/mastering-roda/#a-quick-introduction-to-lucid_http) to find it
@@ -1,3 +1,3 @@
1
1
  module LucidHttp
2
- VERSION = "1.1.1"
2
+ VERSION = "1.2.0"
3
3
  end
data/lib/lucid_http.rb CHANGED
@@ -5,11 +5,21 @@ require "lucid_http/formatters"
5
5
  require "lucid_http/response"
6
6
 
7
7
  module LucidHttp
8
+ def self.base_url
9
+ @base_url
10
+ end
11
+
12
+ def self.base_url=(new_base_url)
13
+ @base_url = new_base_url
14
+ end
15
+
8
16
  class Client
9
- attr_reader :base_url
17
+ def initialize(base_url: ENV.fetch("LUCID_HTTP_BASE_URL"))
18
+ LucidHttp.base_url = base_url
19
+ end
10
20
 
11
- def initialize(base_url:)
12
- @base_url = base_url
21
+ def base_url
22
+ LucidHttp.base_url
13
23
  end
14
24
 
15
25
  %i[get post put patch delete options].each do |verb|
@@ -43,30 +53,34 @@ end
43
53
  end
44
54
  end
45
55
 
56
+ def response
57
+ @__response
58
+ end
59
+
46
60
  def body
47
- @__response.body
61
+ response.body
48
62
  end
49
63
 
50
64
  def verb
51
- @__response.verb
65
+ response.verb
52
66
  end
53
67
 
54
68
  def status
55
- @__response.status
69
+ response.status
56
70
  end
57
71
 
58
72
  def content_type
59
- @__response.content_type
73
+ response.content_type
60
74
  end
61
75
 
62
76
  def url
63
- @__response.url
77
+ response.url
64
78
  end
65
79
 
66
80
  def path
67
- @__response.path
81
+ response.path
68
82
  end
69
83
 
70
84
  def error
71
- @__response.error
85
+ response.error
72
86
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lucid_http
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Federico Iachetti
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-04-07 00:00:00.000000000 Z
11
+ date: 2023-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http