jets 0.8.11 → 0.8.12
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 +3 -0
- data/Gemfile.lock +1 -1
- data/jets.gemspec +3 -3
- data/lib/jets/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dca2784566463fbc97df7951013c7947f6bc266c81e888460984c6bb124dda6e
|
|
4
|
+
data.tar.gz: 3cc7ad59b7a35a2f4e2f617e8c3f12589ee035240ea384e63c980f78cfef2653
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4336f2a024f7541da2aa1fb664b03b10cd654d80d230c9aa6739cc372b4206e7f47a392f0201f2067f8c55934b91ad159fe89bb5df7e362f91ee86f2926f3c15
|
|
7
|
+
data.tar.gz: e105c5ca57a3c83fd733524cc570b341c6f597e166915c12a6d9d04b06c7c733c36c6a6f81ce4a0944ac23321b6e00975b1ec8d6f0e1e3ee909dc3cca5c459e5
|
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.12]
|
|
7
|
+
- fix jets gem summary and description
|
|
8
|
+
|
|
6
9
|
## [0.8.11]
|
|
7
10
|
- Inherit class properties from parent classes PR #25
|
|
8
11
|
- Make more puts like methods show up in cloudwatch logs
|
data/Gemfile.lock
CHANGED
data/jets.gemspec
CHANGED
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Jets::VERSION
|
|
9
9
|
spec.authors = ["Tung Nguyen"]
|
|
10
10
|
spec.email = ["tongueroo@gmail.com"]
|
|
11
|
-
spec.
|
|
12
|
-
spec.
|
|
13
|
-
spec.homepage = "
|
|
11
|
+
spec.summary = "Ruby Serverless Framework on AWS Lambda"
|
|
12
|
+
spec.description = "Jets is a framework that allows you to create serverless applications with a beautiful language: Ruby. It includes everything required to build an application and deploy it to AWS Lambda. Jets makes serverless accessible to everyone."
|
|
13
|
+
spec.homepage = "http://rubyonjets.com"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
vendor_files = Dir.glob("vendor/**/*")
|
data/lib/jets/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.8.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
@@ -388,7 +388,9 @@ dependencies:
|
|
|
388
388
|
- - ">="
|
|
389
389
|
- !ruby/object:Gem::Version
|
|
390
390
|
version: '0'
|
|
391
|
-
description:
|
|
391
|
+
description: 'Jets is a framework that allows you to create serverless applications
|
|
392
|
+
with a beautiful language: Ruby. It includes everything required to build an application
|
|
393
|
+
and deploy it to AWS Lambda. Jets makes serverless accessible to everyone.'
|
|
392
394
|
email:
|
|
393
395
|
- tongueroo@gmail.com
|
|
394
396
|
executables:
|
|
@@ -720,7 +722,7 @@ files:
|
|
|
720
722
|
- vendor/lambdagem/spec/lib/cli_spec.rb
|
|
721
723
|
- vendor/lambdagem/spec/lib/upload_spec.rb
|
|
722
724
|
- vendor/lambdagem/spec/spec_helper.rb
|
|
723
|
-
homepage:
|
|
725
|
+
homepage: http://rubyonjets.com
|
|
724
726
|
licenses:
|
|
725
727
|
- MIT
|
|
726
728
|
metadata: {}
|
|
@@ -743,5 +745,5 @@ rubyforge_project:
|
|
|
743
745
|
rubygems_version: 2.7.6
|
|
744
746
|
signing_key:
|
|
745
747
|
specification_version: 4
|
|
746
|
-
summary:
|
|
748
|
+
summary: Ruby Serverless Framework on AWS Lambda
|
|
747
749
|
test_files: []
|