bourbon_house 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: f5c4af4ff12ca6b23beec5662d2c52a4b7ea06dc
4
- data.tar.gz: ccf1c9b9404a6aa4a213223d4407954b07eb71e0
3
+ metadata.gz: ba983e8e82867083ab71ef10e53b547c1b6c27a1
4
+ data.tar.gz: f33b7bba4f3965c28bf85f1d1aae2f329d85db47
5
5
  SHA512:
6
- metadata.gz: 6cd36c284f4f4f52738dca6668915e6b8033c1938a00e881a76db2bc6758c2d57896b9a95c70a008fb78c2be0a66f9176dcbc2ec02083d40083c25170c437126
7
- data.tar.gz: 30f7d0c4416ef4ef5c61d94d02f3f41e00958b6c388cf6b23a308780678c20c43c2f7ce1f1430b45cf26a56de57568a97a822b013530b6c3a7e77207a8ac4433
6
+ metadata.gz: c8ec902a083bf06f0a845987691fff5550b18b81d9ce2484a7247fe7b0305593c5ea6eb760d26f3e1d03bd0f283af75da26705fe8fb86d44b46b3e680487e4a9
7
+ data.tar.gz: 41d9e932aba8a91f1d5a598ad880794c21ade2ca5bd7aa229e26be5681eb10cefbc72ac113b15dd8e9acc0e973f3d1604864ff1e06dc3ac313f576ced7927283
data/exe/bourbon_house CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  require "bundler/setup"
4
4
  require "bourbon_house"
5
- BourbonHouse::Server.start
5
+ BourbonHouse::Server.new(app: BourbonHouse::Application.new, Port: 9292, server: 'webrick').start
@@ -1,3 +1,3 @@
1
1
  module BourbonHouse
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bourbon_house
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryoji Yoshioka
@@ -83,7 +83,6 @@ files:
83
83
  - bin/console
84
84
  - bin/setup
85
85
  - bourbon_house.gemspec
86
- - config.ru
87
86
  - exe/bourbon_house
88
87
  - lib/bourbon_house.rb
89
88
  - lib/bourbon_house/application.rb
data/config.ru DELETED
@@ -1,5 +0,0 @@
1
- require "bundler/setup"
2
- require "bourbon_house"
3
-
4
- run BourbonHouse::Application.new
5
- # run lambda {|env| [200, {'Content-Type' => 'text/plain'}, ['Hello']] }