mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
0.4.8: More descriptive errors.
This commit is contained in:
parent
d4fb87dd94
commit
ae3f78a21e
5 changed files with 12 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
=== 0.4.8 2010-02-08
|
||||
* 1 major enhancements
|
||||
* expose line number and source name on JavascriptErrors.
|
||||
|
||||
=== 0.4.5 2010-01-18
|
||||
* 3 major enhancements
|
||||
* case munging so that ruby methods(perl_case) are accessed through javascript in camelCase.
|
||||
|
|
|
@ -4,7 +4,6 @@ Manifest.txt
|
|||
README.rdoc
|
||||
Rakefile
|
||||
docs/data_conversion.txt
|
||||
ext/v8/Makefile
|
||||
ext/v8/callbacks.cpp
|
||||
ext/v8/callbacks.h
|
||||
ext/v8/convert_ruby.cpp
|
||||
|
|
5
Rakefile
5
Rakefile
|
@ -41,6 +41,11 @@ Rake::ExtensionTask.new("v8", $hoe.spec) do |ext|
|
|||
ext.source_pattern = "*.{cpp,h}"
|
||||
end
|
||||
|
||||
|
||||
task :clean do
|
||||
sh "rm -f ext/v8/Makefile"
|
||||
end
|
||||
|
||||
require 'newgem/tasks'
|
||||
Dir['tasks/**/*.rake'].each { |t| load t }
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
|
|||
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
||||
|
||||
module V8
|
||||
VERSION = '0.4.7'
|
||||
VERSION = '0.4.8'
|
||||
require 'v8/v8' #native glue
|
||||
require 'v8/to'
|
||||
require 'v8/context'
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{therubyracer}
|
||||
s.version = "0.4.7"
|
||||
s.version = "0.4.8"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Charles Lowell", "Bill Robertson"]
|
||||
s.date = %q{2010-02-04}
|
||||
s.date = %q{2010-02-08}
|
||||
s.description = %q{Embed the V8 Javascript interpreter into Ruby.}
|
||||
s.email = ["cowboyd@thefrontside.net", "billrobertson42@gmail.com"]
|
||||
s.extensions = ["ext/v8/extconf.rb"]
|
||||
|
|
Loading…
Add table
Reference in a new issue