architect-functions 0.0.0 → 0.1.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 +4 -4
- data/lib/architect/functions.rb +8 -42
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85c975a689ad0c7de8383ccac7b833dd1ee06824d520f1953e80387a1aa4d733
|
|
4
|
+
data.tar.gz: bb81e2056bde2334e56960da6cbf0235d15a477c060db831d11be609e930b7f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2637583f0dc97895e4aa3a1bf36af31205284b52e131b00afa64dc71e8d293e17454e79ae2b83497f465850ef4e0b19f5c6706c90bba6ac1092006dbe0ac3d5
|
|
7
|
+
data.tar.gz: bc1b2b84eccdef036749f764edd74a15cc57f746b2b41c04fdf1b8b625185ee63a61ec5f7607d1eb26b848b0720db5ff14fe2eb87ae5ea5ee7f0d071328332ea
|
data/lib/architect/functions.rb
CHANGED
|
@@ -1,43 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
|
1
|
+
require_relative 'reflect'
|
|
2
|
+
require_relative 'http'
|
|
3
|
+
require_relative 'ws'
|
|
4
|
+
require_relative 'events'
|
|
5
|
+
require_relative 'queues'
|
|
6
|
+
require_relative 'tables'
|
|
7
|
+
|
|
8
|
+
module Arc
|
|
43
9
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: architect-functions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian LeRoux
|
|
@@ -10,7 +10,7 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2019-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
13
|
+
description: Runtime helpers for Architect Lambdas
|
|
14
14
|
email: b@brian.io
|
|
15
15
|
executables: []
|
|
16
16
|
extensions: []
|
|
@@ -36,8 +36,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
36
36
|
- !ruby/object:Gem::Version
|
|
37
37
|
version: '0'
|
|
38
38
|
requirements: []
|
|
39
|
-
|
|
40
|
-
rubygems_version: 2.7.6
|
|
39
|
+
rubygems_version: 3.0.4
|
|
41
40
|
signing_key:
|
|
42
41
|
specification_version: 4
|
|
43
42
|
summary: Helper functions for AWS Lambda
|