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: 96421520e6785d9b0ecf33b41d2e2b86d7d516f417c634fa0ec537b50ec462c1
4
- data.tar.gz: 36c7a0111342c116e6c9fa90da21f8b6beadf0657a3e88f38c94fc1741e3ad09
3
+ metadata.gz: be2ed76014a054591772fdabfa1f833abe104e5d2e7a8284e4c8e9dc994b3dac
4
+ data.tar.gz: 86e525512671d55cb3b63add4d68fcc931df1ca42b8199e5e876d73a55d794c6
5
5
  SHA512:
6
- metadata.gz: 8cc413d4a3c20e6b039d19c40ce28e2cc018c334bc6183b907832235ab43df113c78b22fe9c05b69f03627cb42c72ca46889cf4523ac160ad7caaaee2b85b785
7
- data.tar.gz: 4e4f81cd56d96bc637fc8d1bad521039f9c1693e4f2e9b46a98f047bad200ac239b8af66269d1f4330a71ee61a73ce202419e64236563cf118e12ca6ec2b706d
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.5)
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.102.0)
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)
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  <!DOCTYPE html>
3
2
  <html>
4
3
  <head>
@@ -13,7 +13,6 @@ class Jets::Commands::WebpackerTemplate < Thor::Group
13
13
  end
14
14
 
15
15
  def reapply_templates
16
- puts "options #{options.inspect}"
17
16
  directory "app/javascript", "app/javascript", force: options[:force]#, bootstrap: options[:bootstrap]
18
17
  end
19
18
  end
@@ -114,14 +114,10 @@ class Jets::PolyFun
114
114
  end
115
115
 
116
116
  def handler
117
- # Must use FunctionProperties to get the handler because that the class that combines
118
- # the mutiple sources of how the handler can get set.
119
- # puts "handler path #{@task.handler_path}"
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
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "0.8.5"
2
+ VERSION = "0.8.6"
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: 0.8.5
4
+ version: 0.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen