Tagged Questions
6
votes
3answers
135 views
How to check syntax of ruby script that has script/runner as a shebang?
I have problems to check syntax of ruby scripts that has rails script/runner on its shebang.
Here are two example scripts and how they responses to ruby syntax checking:
Script hello_world_runner.rb:
...
3
votes
2answers
80 views
What are the differences between the ways of specifying character encoding?
I have seen several ways of specifying the string encoding as follows:
# -*- coding: utf-8 -*-
# coding: utf-8
# encoding: utf-8
#!/usr/bin/env ruby -Ku
#!/usr/bin/env ruby -Eutf-8
...
3
votes
1answer
41 views
Ruby regex works with ruby command but not shebang
I have the following 2 regular expressions in a ruby file. They run fine when i use the ruby command but if i try to run via ./apachereport.rb it generates an error.
regex:
urls = parse(@file, ...
1
vote
3answers
301 views
Rubygame on OS X shebang problem
I'm playing around with Rubygame. I installed it with the Mac Pack, and now I have the rsdl executable. rsdl game.rb works fine, but when I chmod +x the rb file, add the shebang to rsdl (tried direct ...
0
votes
1answer
149 views
have a relative shebang line
I'm writing a rails app and need to run come scripts through ./script/runner
while i could put
#!/home/cannon/src/timetracker/script/runner
at the top, that wont work in production where it ...
0
votes
4answers
1k views
For ruby/webrick, I need windows to recognize shebang (#!) notation
(Bear with me, I promise this gets to shebang and windows.)
I have about the simplest of WEBRick servers put together:
require 'webrick'
include WEBrick
s = HTTPServer.new(:Port=>2000, ...