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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b7a8962d89d229e36626b069fb9337244a15fca9439f489b9efbc97f001b33d
4
- data.tar.gz: 7a43146ef527e3f6242aeb0a765d1817ff9f08772dca155f6579235c8f16de6c
3
+ metadata.gz: 15fe719a43bb25c79127772813cf84ec3f8fd841e06596fdd708cbe16951b6ac
4
+ data.tar.gz: 150220eeaa530372a7b44a48570e1ec9e7bb7301ecbe1a695c1760417713a8c0
5
5
  SHA512:
6
- metadata.gz: 8560afff599524aa4b0aa4878dac9677904a0731ef884df4921e0669e9db8c7393afd432e2693b1f84286041b976aec3d5224f1cb3fcb782d1c485de1d29bbe5
7
- data.tar.gz: '0682a499da758eba0eccf43b85471046bd0c4f3675d39052baa2c2f8d3e866b5037edd47e4bfc0a8e24a18db6145b9076b13c0c8a66c47d4ebc5eb82f86e3552'
6
+ metadata.gz: 314eaccd38793ca5cef7a2c8600261e760ebc5168fcbcf3be310497be33f066e5883cdf55982639e89e3fdaf413dde89a488caa08b85d04b08eff84ddd08b844
7
+ data.tar.gz: dfb12e40f6db05135ec98fc4864c42f634e8380cf4fe984f9ab5d030062c5b4bf45278b0b1ed1a939b8e4d5d96796bc36bcff918e560ec6ade99d8c887c8b82a
@@ -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
 
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module Carraway
2
- VERSION = "1.4.0"
2
+ VERSION = "1.5.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: carraway
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - adorechic