pivotal-screw-unit-server 0.5.4 → 0.5.5

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.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ 0.5.5
2
+ - Renamed ScrewUnit::ThinRunner to ScrewUnit::Server
3
+
1
4
  0.5.4
2
5
  - Added ScrewUnit::ThinRunner.start
3
6
 
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 5
4
- :patch: 4
4
+ :patch: 5
@@ -13,4 +13,4 @@ unless ENV["SCREW_UNIT_PUBLIC"]
13
13
  ENV["SCREW_UNIT_PUBLIC"] = ARGV[1]
14
14
  end
15
15
 
16
- ScrewUnit::ThinRunner.start
16
+ ScrewUnit::Server.start
data/lib/screw_unit.rb CHANGED
@@ -5,7 +5,7 @@ $:.unshift(File.expand_path("#{dir}/../vendor/js-test-core/lib"))
5
5
  require "js_test_core"
6
6
 
7
7
  require "#{dir}/screw_unit/representations"
8
- require "#{dir}/screw_unit/thin_runner"
8
+ require "#{dir}/screw_unit/server"
9
9
 
10
10
  JsTestCore.core_path = File.expand_path("#{dir}/../core/lib")
11
11
  JsTestCore::Resources::SpecFile.spec_representation_class = ScrewUnit::Representations::Spec
@@ -1,5 +1,5 @@
1
1
  module ScrewUnit
2
- class ThinRunner
2
+ class Server
3
3
  def self.start
4
4
  Thin::Runner.new([
5
5
  "--port", "8080",
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.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pivotal Labs
@@ -89,7 +89,7 @@ files:
89
89
  - lib/screw_unit.rb
90
90
  - lib/screw_unit/representations.rb
91
91
  - lib/screw_unit/representations/spec.html.rb
92
- - lib/screw_unit/thin_runner.rb
92
+ - lib/screw_unit/server.rb
93
93
  - spec/functional_suite.rb
94
94
  - spec/spec_suite.rb
95
95
  - spec/unit_suite.rb