A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

6 lines
159 B

  1. require File.expand_path('../lib/parse_server.rb', __FILE__)
  2. task :start_server, [:port_number] do |t, args|
  3. start_server Integer(args[:port_number])
  4. end