serverless-rack 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +11 -0
- data/serverless-rack.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b325c23f99696047036bb5c48c6f8def6c0b721a56e5db67ccfd6ef6d5aa6ed9
|
4
|
+
data.tar.gz: 7be7f5a9cffa63d8444a0fa6fc81b0d3372cd71f81df8703a5682e1ab342e596
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e0383afd67ebfafc0c962940a151a3812c9866adf3061d335c210000a6c9e7258cae3352d765de319090685a0de2a36efc43c2a465388d023b4a55f5467aa59
|
7
|
+
data.tar.gz: ff5cd3e42a3397d82450719276118114c649fea910dda321874cf3fd2e5d6252de520d6e7780c7e4b990b9bb45c48e92bb67ea2d301e48da43e87305e8a43445
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
# 1.0.2
|
2
|
+
|
3
|
+
- Remove `BUNDLED WITH` from Gemfile to allow using different version of
|
4
|
+
Bundler from the one provided by AWS Lambda (#3)
|
5
|
+
- Add `configPath` option for setting path to `config.ru` (#4)
|
6
|
+
|
7
|
+
_Yousaf Nabi_
|
8
|
+
|
1
9
|
# 1.0.1
|
2
10
|
|
3
11
|
- Support additional bundler arguments to be passed when using docker (#2)
|
data/README.md
CHANGED
@@ -181,6 +181,17 @@ custom:
|
|
181
181
|
bundlerBin: /path/to/bundler
|
182
182
|
```
|
183
183
|
|
184
|
+
### Rack configuration file
|
185
|
+
|
186
|
+
If your Rack configuration file (`config.ru`) is not in `./`, set the path explicitly using the `configPath`
|
187
|
+
configuration option:
|
188
|
+
|
189
|
+
```yaml
|
190
|
+
custom:
|
191
|
+
rack:
|
192
|
+
configPath: path/to/config.ru
|
193
|
+
```
|
194
|
+
|
184
195
|
### Local server
|
185
196
|
|
186
197
|
For convenience, a `sls rack serve` command is provided to run your Rack application
|
data/serverless-rack.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: serverless-rack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Logan Raarup
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|