smithy-client 1.0.0.pre0

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 (5) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +2 -0
  3. data/VERSION +1 -0
  4. data/lib/smithy-client.rb +7 -0
  5. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dbcc7c50be767042e3eae29206ceb174f523f1d5421c4ec90d0457c24acd9b10
4
+ data.tar.gz: 5ef14301b0132b7018a9782f01b2a6b4a8c62fbcb6f74a614bebb19fe16ea86d
5
+ SHA512:
6
+ metadata.gz: 4a6471db9b9a88bdc41546e9b004e6e7871611ba00eeb499cfbee9d28f750aff842a360786a2111add5bfc57c009fef074f494900f814cf0eb6d3c7c6a4f7d43
7
+ data.tar.gz: 184ac4c3e36023db7b7212aecf825535d1b5bae6701f3c63a2ebf5afdf5ddd5e1a5d15e34db8a314144a9a296fa6ce7298899514849a47d051b5b595da1bc8f8
data/CHANGELOG.md ADDED
@@ -0,0 +1,2 @@
1
+ Unreleased Changes
2
+ ------------------
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.0.0.pre0
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Smithy
4
+ module Client
5
+ VERSION = File.read(File.expand_path('../VERSION', __dir__)).strip
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: smithy-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.pre0
5
+ platform: ruby
6
+ authors:
7
+ - Amazon Web Services
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-11-20 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Smithy is a code generation toolkit for creating Client and Server SDKs
14
+ from Smithy models.
15
+ email:
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - CHANGELOG.md
21
+ - VERSION
22
+ - lib/smithy-client.rb
23
+ homepage: https://github.com/smithy-lang/smithy-ruby
24
+ licenses:
25
+ - Apache-2.0
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '3.0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.5.11
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Base runtime dependency for Smithy generated clients
46
+ test_files: []