smithy 2.0.0.pre0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: caac54dead11621fd0d7a29869e6f9dd39945a7a2e0a0dea66435e2c17c79ab1
4
+ data.tar.gz: b6ec328bb2439cae20f86056326e769b39376301b293ba5438170d105315e5a5
5
+ SHA512:
6
+ metadata.gz: d7b62fcc5ce4c8bb2af3f89886ed59b49f26189e923368a27e3d92094a6f58616a0d28d9668a3f2771a21880f8857dec059af3e96c55d4cb8f4fc9061bed2f3c
7
+ data.tar.gz: 152b056cddc6c5bffa308da073cb6bb8443ff6fc98780946e1d8409486e59b72b80dd78464feee32de1c520219c3b149ccd77bf7d6e2880aa3bb4e282e86bd12
data/CHANGELOG.md ADDED
@@ -0,0 +1,4 @@
1
+ Unreleased Changes
2
+ ------------------
3
+
4
+ * Feature - Initial version of this gem. Versions `~> 1` are not associated with this product.
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 2.0.0.pre0
data/bin/smithy-ruby ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ puts "I'm being executed!"
5
+
6
+ require 'smithy'
7
+
8
+ Smithy::Plan.new(ARGV)
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Smithy
4
+ class Plan
5
+ def initialize(*args)
6
+ puts 'Creating a Smithy plan'
7
+ puts "ARGS: #{args.join(', ')}"
8
+ end
9
+ end
10
+ end
data/lib/smithy.rb ADDED
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'smithy/plan'
4
+
5
+ module Smithy
6
+ VERSION = File.read(File.expand_path('../VERSION', __dir__)).strip
7
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: smithy
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.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
+ - smithy-ruby
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - CHANGELOG.md
22
+ - VERSION
23
+ - bin/smithy-ruby
24
+ - lib/smithy.rb
25
+ - lib/smithy/plan.rb
26
+ homepage: https://github.com/smithy-lang/smithy-ruby
27
+ licenses:
28
+ - Apache-2.0
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '3.0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.5.11
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: An SDK code generator for Smithy API models
49
+ test_files: []