mirror of https://github.com/percyliang/sempre
feat(install): Add unlisted dependency and change shebang of ruby script
This commit is contained in:
parent
7eabe5794a
commit
d7cda19953
|
|
@ -83,6 +83,7 @@ You must have the following already installed on your system.
|
||||||
- Ruby 1.8.7 or 1.9
|
- Ruby 1.8.7 or 1.9
|
||||||
- wget
|
- wget
|
||||||
- make (for compiling fig and Virtuoso)
|
- make (for compiling fig and Virtuoso)
|
||||||
|
- zip (for unzip downloaded dependencies)
|
||||||
|
|
||||||
Other dependencies will be downloaded as you need them. SEMPRE has been tested
|
Other dependencies will be downloaded as you need them. SEMPRE has been tested
|
||||||
on Ubuntu Linux 12.04 and MacOS X. Your mileage will vary depending on how
|
on Ubuntu Linux 12.04 and MacOS X. Your mileage will vary depending on how
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
require 'open-uri'
|
require 'open-uri'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
require 'open-uri'
|
require 'open-uri'
|
||||||
require 'json'
|
require 'json'
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
# This script provides a convenient wrapper for the Virtuoso SPARQL server.
|
# This script provides a convenient wrapper for the Virtuoso SPARQL server.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
# This is the main entry point for running SHRDLURN. See
|
# This is the main entry point for running SHRDLURN. See
|
||||||
# fig/lib/execrunner.rb for more documentation for how commands are generated.
|
# fig/lib/execrunner.rb for more documentation for how commands are generated.
|
||||||
|
|
|
||||||
2
run
2
run
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
# This is the main entry point for running all SEMPRE programs. See
|
# This is the main entry point for running all SEMPRE programs. See
|
||||||
# fig/lib/execrunner.rb for more documentation for how commands are generated.
|
# fig/lib/execrunner.rb for more documentation for how commands are generated.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
ARGV.each { |e|
|
ARGV.each { |e|
|
||||||
e = e.sub(/\.exec$/, '')
|
e = e.sub(/\.exec$/, '')
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
# Input: src
|
# Input: src
|
||||||
# Output: module-classes.txt
|
# Output: module-classes.txt
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
# Heuristically find all hard-coded paths in the source code.
|
# Heuristically find all hard-coded paths in the source code.
|
||||||
# There should be no absolute paths.
|
# There should be no absolute paths.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
# Hacky script for automatically fixing style errors. This script is far from
|
# Hacky script for automatically fixing style errors. This script is far from
|
||||||
# perfect and you should manually inspect all changes before making changes.
|
# perfect and you should manually inspect all changes before making changes.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
# Verifies that the codebase is sane (compiles, doesn't crash, gets reasonable
|
# Verifies that the codebase is sane (compiles, doesn't crash, gets reasonable
|
||||||
# accuracy) every once in a while. If something fails, an email is sent out
|
# accuracy) every once in a while. If something fails, an email is sent out
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue