architect-functions 0.0.0
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 +7 -0
- data/lib/architect/functions.rb +43 -0
- metadata +44 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: fdb57f0ab451a9ba0453db495601b3a7494308abd178bc609557f3a8084787ee
|
|
4
|
+
data.tar.gz: a03b6c87246a3b424229151fcf4952cd79bdc45b783f10656030dc29b44981f9
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: df0c24877993c8007b21f54ba3471d6703d3518f4f3845dff7993d0d52db3376c0debd693a8bf06748d2754f42ef101fa60125cc96f0f44cb31f29e7d240d712
|
|
7
|
+
data.tar.gz: f9e41ec73759b0a156ab8b1dce73e9443bea064e3889ddf5a502341b0191c2e8e7e555d10c9a592e924110e97a9675ab468c46402fb609740ea0d983da8e3939
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
module Architect
|
|
2
|
+
module Events
|
|
3
|
+
def self.publish
|
|
4
|
+
puts 'todo: impl arc.events.publish'
|
|
5
|
+
end
|
|
6
|
+
end
|
|
7
|
+
module Queues
|
|
8
|
+
def self.publish
|
|
9
|
+
puts 'todo: impl arc.queues.publish'
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
class WS
|
|
13
|
+
def initialize(event)
|
|
14
|
+
@event = event
|
|
15
|
+
end
|
|
16
|
+
def send(params)
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
module HTTP
|
|
20
|
+
module Helpers
|
|
21
|
+
def self.url
|
|
22
|
+
puts 'todo: impl arc.http.helpers.url'
|
|
23
|
+
end
|
|
24
|
+
def self.static
|
|
25
|
+
puts 'todo: impl arc.http.helpers.static'
|
|
26
|
+
end
|
|
27
|
+
def self.verify
|
|
28
|
+
puts 'todo: impl arc.http.helpers.verify'
|
|
29
|
+
end
|
|
30
|
+
def self.interpolate
|
|
31
|
+
puts 'todo: impl arc.http.helpers.interpolate'
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
module Session
|
|
35
|
+
def self.read
|
|
36
|
+
puts 'todo: impl arc.http.session.read'
|
|
37
|
+
end
|
|
38
|
+
def self.write
|
|
39
|
+
puts 'todo: impl arc.http.session.write'
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: architect-functions
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Brian LeRoux
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-01-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A simple hello world gem
|
|
14
|
+
email: b@brian.io
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/architect/functions.rb
|
|
20
|
+
homepage: http://rubygems.org/gems/architect-functions
|
|
21
|
+
licenses:
|
|
22
|
+
- Apache-2.0
|
|
23
|
+
metadata: {}
|
|
24
|
+
post_install_message:
|
|
25
|
+
rdoc_options: []
|
|
26
|
+
require_paths:
|
|
27
|
+
- lib
|
|
28
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - ">="
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '0'
|
|
38
|
+
requirements: []
|
|
39
|
+
rubyforge_project:
|
|
40
|
+
rubygems_version: 2.7.6
|
|
41
|
+
signing_key:
|
|
42
|
+
specification_version: 4
|
|
43
|
+
summary: Helper functions for AWS Lambda
|
|
44
|
+
test_files: []
|