mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
0.5.5: now runs on RHEL 5
This commit is contained in:
parent
e30e74d0da
commit
1bc3d650ee
4 changed files with 10 additions and 5 deletions
|
@ -1,6 +1,11 @@
|
|||
=== 0.5.5 2010-03-15
|
||||
* 2 minor enhancements
|
||||
* fix string encoding issue that was breaking RHEL 5.x
|
||||
* fix pthread linking issue on RHEL 5.2
|
||||
|
||||
=== 0.5.4 2010-03-09
|
||||
* 1 minor enhancement
|
||||
* add ext directory to gem require paths which was causing problems for non-binary gems
|
||||
* add ext directory to gem require paths which was causing problems for non-binary gems
|
||||
|
||||
=== 0.5.3 2010-03-01
|
||||
* 1 major enhancement
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -9,7 +9,7 @@ begin
|
|||
require 'jeweler'
|
||||
Jeweler::Tasks.new do |gemspec|
|
||||
gemspec.name = gemspec.rubyforge_project = "therubyracer"
|
||||
gemspec.version = "0.5.4"
|
||||
gemspec.version = "0.5.5"
|
||||
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"
|
||||
|
|
|
@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
|
|||
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
||||
|
||||
module V8
|
||||
VERSION = '0.5.4'
|
||||
VERSION = '0.5.5'
|
||||
require 'v8/v8' #native glue
|
||||
require 'v8/to'
|
||||
require 'v8/context'
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = %q{therubyracer}
|
||||
s.version = "0.5.4"
|
||||
s.version = "0.5.5"
|
||||
|
||||
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-03-09}
|
||||
s.date = %q{2010-03-15}
|
||||
s.default_executable = %q{therubyracer}
|
||||
s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
|
||||
s.email = %q{cowboyd@thefrontside.net}
|
||||
|
|
Loading…
Add table
Reference in a new issue