tiny-rest-client 0.2.0 → 0.2.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
2
  SHA256:
3
- metadata.gz: 0ae594ba15f60d217c03513ffd00bfb867e607cf24e86f2faba66309ec41b252
4
- data.tar.gz: c13258411fd7212dafade551a2b7384973837c47e47803eb35fb3244e1cad7ce
3
+ metadata.gz: f09282185efbece684932d3948209e72499ec8c4031addb174aebbcfd63b1fe9
4
+ data.tar.gz: b0def93e35f743ce5527d84f3bd6252b25162f98416fed14cfa1281c3fa9c092
5
5
  SHA512:
6
- metadata.gz: '08e9d7be9ecb2f17dc0052cc4965f6336408d35712f9443a2be1e7315a7b2d7ee76ce715d0b181799370d1e6b986fd2ff3175d2790ec8c44031dc100920af77c'
7
- data.tar.gz: 3d314db3b3a4d8efd17dd3730f82ef1adbf2dd545d4884a8d20ca0c30e479481ef596d6c8727fc8118a2f1fde6fb9770e8d753e42f62a6324daf7620afadb9db
6
+ metadata.gz: 4a652a084126647ff8db999ac13e0179f054637e26ada3000a1e0088658e073151639e5f764bb5081f7c7a2212b4a12d5369e45f3d45d4329bd0982774edf30b
7
+ data.tar.gz: 6bde4f84e45822efcf26fe96964907d84987435ea9934bdfe7e3d5cbd0e0d71065a87bc82e095e970ff93e80d5a63a0ee1c06d451c08b4eaf493aecf682b03a6
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.1] - 2026-03-03
9
+
10
+ ### Fixed
11
+ - Ensure the gem can be required without `require:` option in Gemfile
12
+ - Add `lib/tiny-rest-client.rb` loader file for RubyGems auto-require compatibility
13
+
8
14
  ## [0.2.0] - 2026-03-03
9
15
 
10
16
  ### Added
@@ -28,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
28
34
  - Full Minitest suite (classic + spec style examples)
29
35
  - Basic README documentation
30
36
 
31
- [Unreleased]: https://github.com/Dabrovsky/tiny_rest_client/compare/v0.2.0...HEAD
37
+ [Unreleased]: https://github.com/Dabrovsky/tiny_rest_client/compare/v0.2.1...HEAD
38
+ [0.2.1]: https://github.com/Dabrovsky/tiny_rest_client/compare/v0.2.0...v0.2.1
32
39
  [0.2.0]: https://github.com/Dabrovsky/tiny_rest_client/compare/v0.1.0...v0.2.0
33
40
  [0.1.0]: https://github.com/Dabrovsky/tiny_rest_client/releases/tag/v0.1.0
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "#{File.dirname(__FILE__)}/tiny_rest_client"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TinyRestClient
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny-rest-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dabrovski
@@ -39,6 +39,7 @@ files:
39
39
  - lib/generators/tiny_rest_client/templates/client.rb.tt
40
40
  - lib/generators/tiny_rest_client/templates/client_spec.rb.tt
41
41
  - lib/generators/tiny_rest_client/templates/client_test.rb.tt
42
+ - lib/tiny-rest-client.rb
42
43
  - lib/tiny_rest_client.rb
43
44
  - lib/tiny_rest_client/railtie.rb
44
45
  - lib/tiny_rest_client/request.rb