telegem 1.0.1 → 1.0.3

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: cd276e3c33c6cc67adf953bd39e6510bf4becf3ccf0d1dec56b8b9b2303b6020
4
- data.tar.gz: 22acdab9199a29b6e2123864b1fffe8f0d04816e7c6c9b9c282ba1337c767f02
3
+ metadata.gz: ea53e017f3e5f0ff481d9f640bf82c5681d9b3dabd68ee49337c34b5ea0aea66
4
+ data.tar.gz: 1b03ff5505a56bb8f162551e5b0cc9581c8a768392f9e4bcf2ac18498e674df9
5
5
  SHA512:
6
- metadata.gz: 6cbd47c453cdee5fab92f3207e957badd6e54a251d251f302dbdc9383d2ac3bd900b36cc2d5b4628fc32119908ea9b3975fee6fc83bc31346c5291eba107d46e
7
- data.tar.gz: ed504a73d426090f53eea2ecacaa018646255a10547654c0caa266e6c0582e650fa4f916de95f7b52582ba86293d422b46dbb80ccc94259eb1d0944712ed4a4f
6
+ metadata.gz: d64bc2fc39a48c2841a6556b293db447a35bc23763037698a2e8e102679569df83fcb1d81c764d7a337920de8af27b09dc2393ef4bff897694edfb5c4cf8b006
7
+ data.tar.gz: 1a59d2eb28883e015048400c7951f1281fe85cc9d665875c81112239ba8ceeb4287d78cc2c6a1effe3fd127257fb67b3a0a571d4a50881ad5557f7d1a17d6bbe
data/lib/api/client.rb CHANGED
@@ -14,7 +14,7 @@ module Telegem
14
14
 
15
15
  # HTTPX with persistent connections and proper async support
16
16
  @http = HTTPX.plugin(:persistent)
17
- .plugin(:retries, max_retries: 3, retry_on: [Timeout::Error, HTTPX::Error])
17
+ .plugin(:retries, max_retries: 3)
18
18
  .with(
19
19
  timeout: {
20
20
  connect_timeout: 10,
@@ -1,7 +1,7 @@
1
1
  # lib/core/memory_store.rb - Generic in-memory store for caching/rate limiting
2
2
  module Telegem
3
3
  module Core
4
- class CacheStore
4
+ class MemoryStore
5
5
  def initialize(default_ttl: 300) # 5 minutes default
6
6
  @store = {}
7
7
  @ttls = {}
data/lib/telegem.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  require 'logger'
3
3
  require 'json'
4
4
  module Telegem
5
- VERSION = "1.0.1".freeze
5
+ VERSION = "1.0.3".freeze
6
6
  end
7
7
 
8
8
  # Load core components
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: telegem
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Your Name