Skip to content

Commit

Permalink
add missing requires
Browse files Browse the repository at this point in the history
  • Loading branch information
zvkemp committed Oct 4, 2017
1 parent 732853c commit 000d113
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ language: ruby
services: docker
rvm:
- 2.4.1
before_install:
- gem install bundler
before_install:
- gem install bundler
- docker-compose up --build -d
env:
- PHOENIX_HOST=localhost
2 changes: 2 additions & 0 deletions lib/phoenix/socket.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
require 'eventmachine'
require 'phoenix/inbox'
require 'json'
require 'cgi'
require 'uri'

module Phoenix
class Socket
Expand Down
2 changes: 1 addition & 1 deletion lib/phoenix/socket/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Rb
module Phoenix
module Socket
VERSION = "0.3.0"
VERSION = "0.3.1"
end
end
end
3 changes: 0 additions & 3 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
end
end

Thread.report_on_exception = true
Thread.abort_on_exception = true

ENV['PHOENIX_HOST'] ||= begin
`docker-machine ip`.strip
rescue Errno::ENOENT
Expand Down

0 comments on commit 000d113

Please sign in to comment.