Description:
Changed shebang from `/usr/bin/ruby` to `/usr/bin/env ruby`
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r204:6f1fd9fdb8ac - - 7 files changed: 7 inserted, 7 deleted
@@ -1,13 +1,13 | |||||
|
1 | - #!/usr/bin/ruby |
|
1 | + #!/usr/bin/env ruby |
|
2 |
|
2 | ||
|
3 | # new_problem: |
|
3 | # new_problem: |
|
4 | # * creates a directory for a problem in the current directory, |
|
4 | # * creates a directory for a problem in the current directory, |
|
5 | # * create standard testcase config file |
|
5 | # * create standard testcase config file |
|
6 |
|
6 | ||
|
7 | require 'erb' |
|
7 | require 'erb' |
|
8 |
|
8 | ||
|
9 | def process_options(options) |
|
9 | def process_options(options) |
|
10 | i = 2 |
|
10 | i = 2 |
|
11 | while i<ARGV.length |
|
11 | while i<ARGV.length |
|
12 | if ARGV[i]=='-t' |
|
12 | if ARGV[i]=='-t' |
|
13 | options[:time_limit] = ARGV[i+1].to_i if ARGV.length>i+1 |
|
13 | options[:time_limit] = ARGV[i+1].to_i if ARGV.length>i+1 |
@@ -1,13 +1,13 | |||||
|
1 | - #!/usr/bin/ruby |
|
1 | + #!/usr/bin/env ruby |
|
2 |
|
2 | ||
|
3 | # |
|
3 | # |
|
4 | # This is a check script wrapper. It read all required information |
|
4 | # This is a check script wrapper. It read all required information |
|
5 | # and call a real check script call REAL_CHECK_SCRIPT in directory |
|
5 | # and call a real check script call REAL_CHECK_SCRIPT in directory |
|
6 | # [problem_home]/script |
|
6 | # [problem_home]/script |
|
7 | # |
|
7 | # |
|
8 |
|
8 | ||
|
9 | REAL_CHECK_SCRIPT = "<%= script_name %>" |
|
9 | REAL_CHECK_SCRIPT = "<%= script_name %>" |
|
10 |
|
10 | ||
|
11 | # The REAL_CHECK_SCRIPT is called with: |
|
11 | # The REAL_CHECK_SCRIPT is called with: |
|
12 | # |
|
12 | # |
|
13 | # (script) <lang> <test-num> <in-file> <out-file> <ans-file> <full-score> |
|
13 | # (script) <lang> <test-num> <in-file> <out-file> <ans-file> <full-score> |
@@ -1,13 +1,13 | |||||
|
1 | - #!/usr/bin/ruby |
|
1 | + #!/usr/bin/env ruby |
|
2 |
|
2 | ||
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
5 |
|
5 | ||
|
6 | if ARGV.length < 2 |
|
6 | if ARGV.length < 2 |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
8 | exit(0) |
|
8 | exit(0) |
|
9 | end |
|
9 | end |
|
10 |
|
10 | ||
|
11 | language = ARGV[0] |
|
11 | language = ARGV[0] |
|
12 | test_num = ARGV[1].to_i |
|
12 | test_num = ARGV[1].to_i |
|
13 | if ARGV.length >= 3 |
|
13 | if ARGV.length >= 3 |
@@ -1,13 +1,13 | |||||
|
1 | - #!/usr/bin/ruby |
|
1 | + #!/usr/bin/env ruby |
|
2 |
|
2 | ||
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
5 |
|
5 | ||
|
6 | if ARGV.length < 2 |
|
6 | if ARGV.length < 2 |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
8 | exit(0) |
|
8 | exit(0) |
|
9 | end |
|
9 | end |
|
10 |
|
10 | ||
|
11 | language = ARGV[0] |
|
11 | language = ARGV[0] |
|
12 | test_num = ARGV[1].to_i |
|
12 | test_num = ARGV[1].to_i |
|
13 | if ARGV.length >= 3 |
|
13 | if ARGV.length >= 3 |
@@ -1,13 +1,13 | |||||
|
1 | - #!/usr/bin/ruby |
|
1 | + #!/usr/bin/env ruby |
|
2 |
|
2 | ||
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
5 |
|
5 | ||
|
6 | if ARGV.length < 2 |
|
6 | if ARGV.length < 2 |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
8 | exit(0) |
|
8 | exit(0) |
|
9 | end |
|
9 | end |
|
10 |
|
10 | ||
|
11 | language = ARGV[0] |
|
11 | language = ARGV[0] |
|
12 | test_num = ARGV[1].to_i |
|
12 | test_num = ARGV[1].to_i |
|
13 | if ARGV.length >= 3 |
|
13 | if ARGV.length >= 3 |
@@ -1,13 +1,13 | |||||
|
1 | - #!/usr/bin/ruby |
|
1 | + #!/usr/bin/env ruby |
|
2 |
|
2 | ||
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
5 |
|
5 | ||
|
6 | if ARGV.length < 2 |
|
6 | if ARGV.length < 2 |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
8 | exit(0) |
|
8 | exit(0) |
|
9 | end |
|
9 | end |
|
10 |
|
10 | ||
|
11 | language = ARGV[0] |
|
11 | language = ARGV[0] |
|
12 | test_num = ARGV[1].to_i |
|
12 | test_num = ARGV[1].to_i |
|
13 | if ARGV.length >= 3 |
|
13 | if ARGV.length >= 3 |
@@ -1,13 +1,13 | |||||
|
1 | - #!/usr/bin/ruby |
|
1 | + #!/usr/bin/env ruby |
|
2 |
|
2 | ||
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
3 | problem_home = ENV['PROBLEM_HOME'] |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
4 | require "#{problem_home}/script/test_dsl.rb" |
|
5 |
|
5 | ||
|
6 | if ARGV.length < 2 |
|
6 | if ARGV.length < 2 |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
7 | puts "Usage: check <language> <test-number> [<output-file>]" |
|
8 | exit(0) |
|
8 | exit(0) |
|
9 | end |
|
9 | end |
|
10 |
|
10 | ||
|
11 | language = ARGV[0] |
|
11 | language = ARGV[0] |
|
12 | test_num = ARGV[1].to_i |
|
12 | test_num = ARGV[1].to_i |
|
13 | if ARGV.length >= 3 |
|
13 | if ARGV.length >= 3 |
You need to be logged in to leave comments.
Login now