jets 0.8.5 → 0.8.6
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be2ed76014a054591772fdabfa1f833abe104e5d2e7a8284e4c8e9dc994b3dac
|
4
|
+
data.tar.gz: 86e525512671d55cb3b63add4d68fcc931df1ca42b8199e5e876d73a55d794c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1db0f1765ea0d72e6326ea93c2cc2df3be9f1507fac9e7b36a46d758053bcafd99c3a23d15119968ff3abd1ec5d80f23cc9a1d5e500c6a30236ccce1cf2764a
|
7
|
+
data.tar.gz: 85bdcfe8c1b8d6856ec846880a9c6d079220d6919d60589298fe77fc66ef02bde2ff4172dda1d020135d5797698110202cf8416042eb89a8e8c5174630121842
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [0.8.6]
|
7
|
+
- fix local server
|
8
|
+
|
6
9
|
## [0.8.5]
|
7
10
|
- Rename to Camelizer PR #23
|
8
11
|
- Fix helpers PR #22 from tongueroo/helpers
|
data/Gemfile.lock
CHANGED
@@ -11,7 +11,7 @@ GIT
|
|
11
11
|
PATH
|
12
12
|
remote: .
|
13
13
|
specs:
|
14
|
-
jets (0.8.
|
14
|
+
jets (0.8.6)
|
15
15
|
actionpack (>= 5.2.1)
|
16
16
|
actionview (>= 5.2.1)
|
17
17
|
activerecord (>= 5.2.1)
|
@@ -65,7 +65,7 @@ GEM
|
|
65
65
|
tzinfo (~> 1.1)
|
66
66
|
arel (9.0.0)
|
67
67
|
aws-eventstream (1.0.1)
|
68
|
-
aws-partitions (1.
|
68
|
+
aws-partitions (1.103.0)
|
69
69
|
aws-sdk-cloudformation (1.8.0)
|
70
70
|
aws-sdk-core (~> 3, >= 3.26.0)
|
71
71
|
aws-sigv4 (~> 1.0)
|
@@ -114,14 +114,10 @@ class Jets::PolyFun
|
|
114
114
|
end
|
115
115
|
|
116
116
|
def handler
|
117
|
-
# Must use
|
118
|
-
# the
|
119
|
-
|
120
|
-
#
|
121
|
-
# IE: Jets::Cfn::Builders::FunctionProperties::PythonBuilder
|
122
|
-
builder_class = "Jets::Cfn::Builders::FunctionProperties::#{@task.lang.to_s.classify}Builder".constantize
|
123
|
-
builder = builder_class.new(@task)
|
124
|
-
full_handler = builder.properties["Handler"] # full handler here
|
117
|
+
# Must use the generated CloudFormation template to get the handler because
|
118
|
+
# the handler is derived from mutiple sources.
|
119
|
+
resource = Jets::Resource::Function.new(@task)
|
120
|
+
full_handler = resource.properties["Handler"] # full handler here
|
125
121
|
File.extname(full_handler).sub(/^./,'') # the extension of the full handler is the handler
|
126
122
|
end
|
127
123
|
memoize :handler
|
data/lib/jets/version.rb
CHANGED