carraway 1.4.0 → 1.5.0
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/lib/carraway/cli.rb +2 -1
- data/lib/carraway/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: 15fe719a43bb25c79127772813cf84ec3f8fd841e06596fdd708cbe16951b6ac
|
4
|
+
data.tar.gz: 150220eeaa530372a7b44a48570e1ec9e7bb7301ecbe1a695c1760417713a8c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 314eaccd38793ca5cef7a2c8600261e760ebc5168fcbcf3be310497be33f066e5883cdf55982639e89e3fdaf413dde89a488caa08b85d04b08eff84ddd08b844
|
7
|
+
data.tar.gz: dfb12e40f6db05135ec98fc4864c42f634e8380cf4fe984f9ab5d030062c5b4bf45278b0b1ed1a939b8e4d5d96796bc36bcff918e560ec6ade99d8c887c8b82a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v1.4.0](https://github.com/adorechic/carraway/tree/v1.4.0) (2019-03-27)
|
4
|
+
[Full Changelog](https://github.com/adorechic/carraway/compare/v1.3.0...v1.4.0)
|
5
|
+
|
6
|
+
**Merged pull requests:**
|
7
|
+
|
8
|
+
- Update bundler [\#17](https://github.com/adorechic/carraway/pull/17) ([isohi](https://github.com/isohi))
|
9
|
+
- Add views option [\#16](https://github.com/adorechic/carraway/pull/16) ([isohi](https://github.com/isohi))
|
10
|
+
|
3
11
|
## [v1.3.0](https://github.com/adorechic/carraway/tree/v1.3.0) (2019-03-15)
|
4
12
|
[Full Changelog](https://github.com/adorechic/carraway/compare/v1.2.0...v1.3.0)
|
5
13
|
|
data/lib/carraway/cli.rb
CHANGED
@@ -4,9 +4,10 @@ module Carraway
|
|
4
4
|
class CLI < Thor
|
5
5
|
desc 'start', 'Start server'
|
6
6
|
option :config, default: 'carraway.yml', aliases: 'c', type: :string
|
7
|
+
option :bind, default: 'localhost', aliases: 'o', type: :string
|
7
8
|
def start
|
8
9
|
Carraway::Config.load(options[:config])
|
9
|
-
Carraway::Server.run!(port: Config.port)
|
10
|
+
Carraway::Server.run!(port: Config.port, bind: options[:bind])
|
10
11
|
end
|
11
12
|
|
12
13
|
|
data/lib/carraway/version.rb
CHANGED