mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
add exception backtraces for segfaults and fatal errors.
This commit is contained in:
parent
83abd10113
commit
e509bebe05
6 changed files with 53 additions and 6 deletions
15
Rakefile
15
Rakefile
|
|
@ -9,7 +9,7 @@ manifest.exclude "ext/**/test/*", "ext/**/test/*", "ext/**/samples/*", "ext/**/b
|
|||
Gem::Specification.new do |gemspec|
|
||||
$gemspec = gemspec
|
||||
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
||||
gemspec.version = "0.6.1"
|
||||
gemspec.version = "0.7.0"
|
||||
gemspec.summary = "Embed the V8 Javascript interpreter into Ruby"
|
||||
gemspec.description = "Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript."
|
||||
gemspec.email = "cowboyd@thefrontside.net"
|
||||
|
|
@ -41,11 +41,14 @@ task :clean do
|
|||
sh "rm -rf lib/v8/*.bundle lib/v8/*.so"
|
||||
end
|
||||
|
||||
namespace :clean do
|
||||
desc "remove all built v8 objects"
|
||||
task "v8" => "clean" do
|
||||
sh "cd #{UPSTREAM} && make clean"
|
||||
end
|
||||
desc "remove all built v8 objects"
|
||||
task "v8:clean" => "clean" do
|
||||
sh "cd #{UPSTREAM} && make clean"
|
||||
end
|
||||
|
||||
desc "build v8 with debugging symbols (much slower)"
|
||||
task "v8:debug" do
|
||||
sh "cd #{UPSTREAM} && make debug"
|
||||
end
|
||||
|
||||
for file in Dir['tasks/*.rake']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue