class Shoestring::Server

Public Class Methods

start(command = 'bundle exec rails s') click to toggle source
# File lib/shoestring/server.rb, line 4
def self.start(command = 'bundle exec rails s')
  puts "\nShoestrings tied!\n\nStarting app server..."
  system %(#{command})
end