mirror of
https://github.com/rails/execjs
synced 2023-03-27 23:21:20 -04:00
ExecJS 1.0.0
This commit is contained in:
parent
178166635f
commit
de9d10fa91
2 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
Gem::Specification.new do |s|
|
||||
s.name = "execjs"
|
||||
s.version = "0.4.0"
|
||||
s.date = "2011-05-17"
|
||||
s.version = "1.0.0"
|
||||
s.date = "2011-05-18"
|
||||
|
||||
s.homepage = "https://github.com/sstephenson/execjs"
|
||||
s.summary = "Run JavaScript code from Ruby"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
require "rbconfig"
|
||||
|
||||
module ExecJS
|
||||
VERSION = "1.0.0"
|
||||
|
||||
class Error < ::StandardError; end
|
||||
class RuntimeError < Error; end
|
||||
class ProgramError < Error; end
|
||||
|
|
Loading…
Reference in a new issue