jets 1.9.13 → 1.9.14
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/CHANGELOG.md +4 -0
- data/lib/jets/commands/call.rb +1 -1
- data/lib/jets/stack.rb +3 -1
- data/lib/jets/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbab0491cbf5561c945b39f00571bc36a166d2ca2b7f4aea030af1b900cd66be
|
|
4
|
+
data.tar.gz: ec018b50f0934339920af17683201d3b198d72c4a8fba7552ea63f12128c5739
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8be8503dc99e02075251bd455427bde36023bb6d9b9a7a8da73ef7e3c9ca2caaa2136a29de5c594188aec6fc843b943c29e1f359199befc21b9788283d4c236
|
|
7
|
+
data.tar.gz: 200d2ff299fb1f2491f171166d6158add14099c6eaff2e5595cdf60cb45dc6993cceb14e472b8fdef1398a0b5115879ddd8b39e4d5da59454544025a1292b1d1
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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/).
|
|
5
5
|
|
|
6
|
+
## [1.9.14]
|
|
7
|
+
- #288 fix shared eager loading so only shared classes are loaded
|
|
8
|
+
- #287 fix lambda url on the jets call command
|
|
9
|
+
|
|
6
10
|
## [1.9.13]
|
|
7
11
|
- #285 optimize by moving reloader middleware after shotgun static middleware
|
|
8
12
|
|
data/lib/jets/commands/call.rb
CHANGED
|
@@ -135,7 +135,7 @@ class Jets::Commands::Call
|
|
|
135
135
|
|
|
136
136
|
# TODO: for add_console_link_to_clipboard get the region from the ~/.aws/config and AWS_PROFILE setting
|
|
137
137
|
region = Aws.config[:region] || 'us-east-1'
|
|
138
|
-
link = "https://console.aws.amazon.com/lambda/
|
|
138
|
+
link = "https://console.aws.amazon.com/lambda/home?region=#{region}#/functions/#{function_name}?tab=configuration"
|
|
139
139
|
system("echo #{link} | pbcopy")
|
|
140
140
|
puts "Pro tip: The Lambda Console Link to the #{function_name} function has been added to your clipboard." unless @options[:mute]
|
|
141
141
|
end
|
data/lib/jets/stack.rb
CHANGED
data/lib/jets/version.rb
CHANGED