pangea-component-network 0.0.1

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: 442c0235936e9e8c757d89967f8e3f8d2e40ce4e3e7dd005cd2d6c4581920014
4
+ data.tar.gz: d597610c64a911a215eb7a5d276664f6368c688802dfb3dd44960e826a9d1570
5
+ SHA512:
6
+ metadata.gz: 9e5790d2512e38cfaa7209436fc3e0de4d87771dc210faa653ffc85866107f51ec13fabac209acac0a62e7c9abef37527a30a17b7a3999db246971b25be4920c
7
+ data.tar.gz: 4bf134e15a7ad8356c55b09c17729811d0ab0bc2563536380054efd321dd1506b81bb08f705a9440fc7249135dcdb1f6087ddae85471b0c6017decc6292b67e1
data/.gitignore ADDED
@@ -0,0 +1,56 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ # Used by dotenv library to load environment variables.
14
+ # .env
15
+
16
+ # Ignore Byebug command history file.
17
+ .byebug_history
18
+
19
+ ## Specific to RubyMotion:
20
+ .dat*
21
+ .repl_history
22
+ build/
23
+ *.bridgesupport
24
+ build-iPhoneOS/
25
+ build-iPhoneSimulator/
26
+
27
+ ## Specific to RubyMotion (use of CocoaPods):
28
+ #
29
+ # We recommend against adding the Pods directory to your .gitignore. However
30
+ # you should judge for yourself, the pros and cons are mentioned at:
31
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
32
+ #
33
+ # vendor/Pods/
34
+
35
+ ## Documentation cache and generated files:
36
+ /.yardoc/
37
+ /_yardoc/
38
+ /doc/
39
+ /rdoc/
40
+
41
+ ## Environment normalization:
42
+ /.bundle/
43
+ /vendor/bundle
44
+ /lib/bundler/man/
45
+
46
+ # for a library or gem, you might want to ignore these files since the code is
47
+ # intended to run in multiple environments; otherwise, check them in:
48
+ # Gemfile.lock
49
+ # .ruby-version
50
+ # .ruby-gemset
51
+
52
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
53
+ .rvmrc
54
+
55
+ # Used by RuboCop. Remote config files pulled in from inherit_from directive.
56
+ # .rubocop-https?--*
data/.rubocop.yml ADDED
@@ -0,0 +1,54 @@
1
+ AllCops:
2
+ TargetRubyVersion: '3.0'
3
+ NewCops: enable
4
+
5
+ Gemspec/RequiredRubyVersion:
6
+ Enabled: false
7
+
8
+ Style/FrozenStringLiteralComment:
9
+ Enabled: false
10
+
11
+ Style/Documentation:
12
+ Enabled: false
13
+
14
+ Style/GlobalVars:
15
+ Enabled: false
16
+
17
+ Style/GuardClause:
18
+ Enabled: false
19
+
20
+ Style/StringConcatenation:
21
+ Enabled: false
22
+
23
+ Metrics/MethodLength:
24
+ Enabled: false
25
+
26
+ Metrics/ModuleLength:
27
+ Enabled: false
28
+
29
+ Metrics/AbcSize:
30
+ Enabled: false
31
+
32
+ Metrics/PerceivedComplexity:
33
+ Enabled: false
34
+
35
+ Metrics/ParameterLists:
36
+ Enabled: false
37
+
38
+ Style/MissingRespondToMissing:
39
+ Enabled: false
40
+
41
+ Lint/MissingSuper:
42
+ Enabled: false
43
+
44
+ Metrics/CyclomaticComplexity:
45
+ Enabled: false
46
+
47
+ Metrics/ClassLength:
48
+ Enabled: false
49
+
50
+ Metrics/BlockLength:
51
+ Enabled: false
52
+
53
+ Naming/AccessorMethodName:
54
+ Enabled: false
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ pangea-component-network
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.1.0
data/Gemfile ADDED
@@ -0,0 +1,31 @@
1
+ source %(https://rubygems.org)
2
+
3
+ group :development do
4
+ %w[
5
+ rubocop-rspec
6
+ rubocop-rake
7
+ keycutter
8
+ rspec
9
+ rake
10
+ yard
11
+ ].each do |this_gem|
12
+ gem this_gem
13
+ end
14
+ end
15
+
16
+ group :production do
17
+ %w[
18
+ aws-sdk-dynamodb
19
+ terraform-synthesizer
20
+ abstract-synthesizer
21
+ tty-progressbar
22
+ tty-option
23
+ tty-table
24
+ tty-color
25
+ tty-box
26
+ toml-rb
27
+ bundler
28
+ ].each do |this_gem|
29
+ gem this_gem
30
+ end
31
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,123 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ abstract-synthesizer (0.0.2)
5
+ ast (2.4.2)
6
+ aws-eventstream (1.3.0)
7
+ aws-partitions (1.856.0)
8
+ aws-sdk-core (3.188.0)
9
+ aws-eventstream (~> 1, >= 1.0.2)
10
+ aws-partitions (~> 1, >= 1.651.0)
11
+ aws-sigv4 (~> 1.5)
12
+ jmespath (~> 1, >= 1.6.1)
13
+ aws-sdk-dynamodb (1.97.0)
14
+ aws-sdk-core (~> 3, >= 3.188.0)
15
+ aws-sigv4 (~> 1.1)
16
+ aws-sigv4 (1.7.0)
17
+ aws-eventstream (~> 1, >= 1.0.2)
18
+ citrus (3.0.2)
19
+ diff-lcs (1.5.0)
20
+ jmespath (1.6.2)
21
+ json (2.6.3)
22
+ keycutter (1.0.2)
23
+ language_server-protocol (3.17.0.3)
24
+ parallel (1.23.0)
25
+ parser (3.2.2.4)
26
+ ast (~> 2.4.1)
27
+ racc
28
+ pastel (0.8.0)
29
+ tty-color (~> 0.5)
30
+ racc (1.7.3)
31
+ rainbow (3.1.1)
32
+ rake (13.1.0)
33
+ regexp_parser (2.8.2)
34
+ rexml (3.2.6)
35
+ rspec (3.12.0)
36
+ rspec-core (~> 3.12.0)
37
+ rspec-expectations (~> 3.12.0)
38
+ rspec-mocks (~> 3.12.0)
39
+ rspec-core (3.12.2)
40
+ rspec-support (~> 3.12.0)
41
+ rspec-expectations (3.12.3)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.12.0)
44
+ rspec-mocks (3.12.6)
45
+ diff-lcs (>= 1.2.0, < 2.0)
46
+ rspec-support (~> 3.12.0)
47
+ rspec-support (3.12.1)
48
+ rubocop (1.57.2)
49
+ json (~> 2.3)
50
+ language_server-protocol (>= 3.17.0)
51
+ parallel (~> 1.10)
52
+ parser (>= 3.2.2.4)
53
+ rainbow (>= 2.2.2, < 4.0)
54
+ regexp_parser (>= 1.8, < 3.0)
55
+ rexml (>= 3.2.5, < 4.0)
56
+ rubocop-ast (>= 1.28.1, < 2.0)
57
+ ruby-progressbar (~> 1.7)
58
+ unicode-display_width (>= 2.4.0, < 3.0)
59
+ rubocop-ast (1.30.0)
60
+ parser (>= 3.2.1.0)
61
+ rubocop-capybara (2.19.0)
62
+ rubocop (~> 1.41)
63
+ rubocop-factory_bot (2.24.0)
64
+ rubocop (~> 1.33)
65
+ rubocop-rake (0.6.0)
66
+ rubocop (~> 1.0)
67
+ rubocop-rspec (2.25.0)
68
+ rubocop (~> 1.40)
69
+ rubocop-capybara (~> 2.17)
70
+ rubocop-factory_bot (~> 2.22)
71
+ ruby-progressbar (1.13.0)
72
+ strings (0.2.1)
73
+ strings-ansi (~> 0.2)
74
+ unicode-display_width (>= 1.5, < 3.0)
75
+ unicode_utils (~> 1.4)
76
+ strings-ansi (0.2.0)
77
+ terraform-synthesizer (0.0.2)
78
+ toml-rb (2.2.0)
79
+ citrus (~> 3.0, > 3.0)
80
+ tty-box (0.7.0)
81
+ pastel (~> 0.8)
82
+ strings (~> 0.2.0)
83
+ tty-cursor (~> 0.7)
84
+ tty-color (0.6.0)
85
+ tty-cursor (0.7.1)
86
+ tty-option (0.3.0)
87
+ tty-progressbar (0.18.2)
88
+ strings-ansi (~> 0.2)
89
+ tty-cursor (~> 0.7)
90
+ tty-screen (~> 0.8)
91
+ unicode-display_width (>= 1.6, < 3.0)
92
+ tty-screen (0.8.1)
93
+ tty-table (0.12.0)
94
+ pastel (~> 0.8)
95
+ strings (~> 0.2.0)
96
+ tty-screen (~> 0.8)
97
+ unicode-display_width (2.5.0)
98
+ unicode_utils (1.4.0)
99
+ yard (0.9.34)
100
+
101
+ PLATFORMS
102
+ x86_64-linux
103
+
104
+ DEPENDENCIES
105
+ abstract-synthesizer
106
+ aws-sdk-dynamodb
107
+ bundler
108
+ keycutter
109
+ rake
110
+ rspec
111
+ rubocop-rake
112
+ rubocop-rspec
113
+ terraform-synthesizer
114
+ toml-rb
115
+ tty-box
116
+ tty-color
117
+ tty-option
118
+ tty-progressbar
119
+ tty-table
120
+ yard
121
+
122
+ BUNDLED WITH
123
+ 2.3.3
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 drzln
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # pangea-component-network
2
+ Networking components for the Pangea framework
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require %(bundler/gem_tasks)
4
+ require %(rubocop/rake_task)
5
+ require %(rspec/core/rake_task)
6
+
7
+ RuboCop::RakeTask.new(:rubocop) do |t|
8
+ t.options = [%(--display-cop-names)]
9
+ end
10
+
11
+ task :bundix do
12
+ sh %(bundle lock --update)
13
+ sh %(bundix)
14
+ end
@@ -0,0 +1,4 @@
1
+ def render
2
+ # return hash of rendered component
3
+ {}
4
+ end
@@ -0,0 +1,7 @@
1
+ module Pangea
2
+ module Component
3
+ module Network
4
+ VERSION = %(0.0.1).freeze
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path(%(lib), __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require_relative %(./lib/pangea/component/network/version)
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = %(pangea-component-network)
9
+ spec.version = Pangea::Component::Network::VERSION
10
+ spec.authors = [%(drzthslnt@gmail.com)]
11
+ spec.email = [%(drzthslnt@gmail.com)]
12
+ spec.description = %(network components)
13
+ spec.summary = %(network components)
14
+ spec.homepage = %(https://github.com/drzln/#{spec.name})
15
+ spec.license = %(MIT)
16
+ spec.require_paths = [%(lib)]
17
+ spec.required_ruby_version = %(>= #{`cat .ruby-version`})
18
+
19
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
20
+ f.match(%r{^(test|spec|features)/})
21
+ end
22
+
23
+ %i[
24
+ rubocop-rspec
25
+ rubocop-rake
26
+ solargraph
27
+ keycutter
28
+ rubocop
29
+ rspec
30
+ rake
31
+ yard
32
+ ].each do |gem|
33
+ spec.add_development_dependency(gem)
34
+ end
35
+
36
+ %i[terraform-synthesizer].each do |gem|
37
+ spec.add_runtime_dependency(gem)
38
+ end
39
+
40
+ spec.metadata[%(rubygems_mfa_required)] = %(true)
41
+ end
metadata ADDED
@@ -0,0 +1,182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pangea-component-network
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - drzthslnt@gmail.com
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-11-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rubocop-rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rubocop-rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: solargraph
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: keycutter
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: yard
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: terraform-synthesizer
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: network components
140
+ email:
141
+ - drzthslnt@gmail.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".gitignore"
147
+ - ".rubocop.yml"
148
+ - ".ruby-gemset"
149
+ - ".ruby-version"
150
+ - Gemfile
151
+ - Gemfile.lock
152
+ - LICENSE
153
+ - README.md
154
+ - Rakefile
155
+ - lib/pangea/component/network/entrypoint.rb
156
+ - lib/pangea/component/network/version.rb
157
+ - pangea-component-network.gemspec
158
+ homepage: https://github.com/drzln/pangea-component-network
159
+ licenses:
160
+ - MIT
161
+ metadata:
162
+ rubygems_mfa_required: 'true'
163
+ post_install_message:
164
+ rdoc_options: []
165
+ require_paths:
166
+ - lib
167
+ required_ruby_version: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - ">="
170
+ - !ruby/object:Gem::Version
171
+ version: 3.1.0
172
+ required_rubygems_version: !ruby/object:Gem::Requirement
173
+ requirements:
174
+ - - ">="
175
+ - !ruby/object:Gem::Version
176
+ version: '0'
177
+ requirements: []
178
+ rubygems_version: 3.3.3
179
+ signing_key:
180
+ specification_version: 4
181
+ summary: network components
182
+ test_files: []