Sha256: b8550f679a17e85213118015716a8d6e7564fe13a1aa506a024b1923761508b4
Contents?: true
Size: 1.11 KB
Versions: 31
Compression:
Stored size: 1.11 KB
Contents
Feature: The server/devserver command Scenario: Booting a development server When I run `geordi server` Then the output should contain "http://aruba.vcap.me:3000" And the output should contain "Util.system! bundle exec rails server -p 3000" Scenario: Passing a port as argument When I run `geordi server 3001` Then the output should contain "http://aruba.vcap.me:3001" And the output should contain "Util.system! bundle exec rails server -p 3001" Scenario: Passing a port as option When I run `geordi server -p 3001` Then the output should contain "http://aruba.vcap.me:3001" And the output should contain "Util.system! bundle exec rails server -p 3001" Scenario: The command is aliased for backwards compatibility When I run `geordi devserver` Then the output should contain "Util.system! bundle exec rails server" Scenario: Starting the server as accessible from the local network ... so it can be accessed from a test iPad or so. When I run `geordi server --public` Then the output should contain "Util.system! bundle exec rails server -b 0.0.0.0"
Version data entries
31 entries across 31 versions & 1 rubygems