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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd2dd51828c1ae0f153053036a35167e60c22039f32445b1c127ea95faa8ee16
4
- data.tar.gz: da31e24c5e47127c0439af71b08735c38332ccdfbb2fcf8d988669f79c22ade6
3
+ metadata.gz: cbab0491cbf5561c945b39f00571bc36a166d2ca2b7f4aea030af1b900cd66be
4
+ data.tar.gz: ec018b50f0934339920af17683201d3b198d72c4a8fba7552ea63f12128c5739
5
5
  SHA512:
6
- metadata.gz: 35726900c387362e24ce55f34559b9d435abd8dc9fb7ed74c85d6f0377eb6d0864eaf601249d85272a3cac4ef0707c3e37cd85c6d1204768c2b196e2207264dc
7
- data.tar.gz: 0637fbe434d1a92aba01124c28dcc61decfeaef65ba3449563d2d0bc8467513c839edfb8de82670bd72449f58a7eea5a3dd3441ef7bddd1032c7b64b9d674731
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
 
@@ -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/homepage?region=#{region}#/functions/#{function_name}?tab=configuration"
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
@@ -74,7 +74,9 @@ module Jets
74
74
  end
75
75
 
76
76
  def eager_load_shared_resources!
77
- Jets::Autoloaders.main.eager_load
77
+ Dir.glob("#{Jets.root}/app/shared/**").each do |path|
78
+ Jets::Autoloaders.main.preload(path)
79
+ end
78
80
  end
79
81
 
80
82
  def lookup(logical_id)
data/lib/jets/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "1.9.13"
2
+ VERSION = "1.9.14"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.13
4
+ version: 1.9.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen