pivotal-screw-unit-server 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ 0.5.6
2
+ - Fixed require thin issue in ScrewUnit::Server.start
3
+
1
4
  0.5.5
2
5
  - Renamed ScrewUnit::ThinRunner to ScrewUnit::Server
3
6
 
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 5
4
- :patch: 5
4
+ :patch: 6
@@ -3,7 +3,6 @@
3
3
  dir = File.dirname(__FILE__)
4
4
  $LOAD_PATH.unshift("#{dir}/../lib")
5
5
  require "screw_unit"
6
- require "thin"
7
6
 
8
7
  unless ENV["SCREW_UNIT_SPEC_ROOT"]
9
8
  ENV["SCREW_UNIT_SPEC_ROOT"] = ARGV[0]
@@ -1,6 +1,7 @@
1
1
  module ScrewUnit
2
2
  class Server
3
3
  def self.start
4
+ require "thin"
4
5
  Thin::Runner.new([
5
6
  "--port", "8080",
6
7
  "--rackup", File.expand_path("#{File.dirname(__FILE__)}/../../standalone.ru"),
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pivotal-screw-unit-server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pivotal Labs