CoffeeScript 0.3.1, quick patch for 'instanceof'

This commit is contained in:
Jeremy Ashkenas 2010-01-27 08:01:18 -05:00
parent 2f3a94678f
commit 5b2ab36246
5 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = 'coffee-script'
s.version = '0.3.0' # Keep version in sync with coffee-script.rb
s.date = '2010-1-26'
s.version = '0.3.1' # Keep version in sync with coffee-script.rb
s.date = '2010-1-27'
s.homepage = "http://jashkenas.github.com/coffee-script/"
s.summary = "The CoffeeScript Compiler"

View File

@ -51,7 +51,7 @@
<p>
<b>Latest Version:</b>
<a href="http://gemcutter.org/gems/coffee-script">0.3.0</a>
<a href="http://gemcutter.org/gems/coffee-script">0.3.1</a>
</p>
<h2>Table of Contents</h2>

View File

@ -37,7 +37,7 @@
<p>
<b>Latest Version:</b>
<a href="http://gemcutter.org/gems/coffee-script">0.3.0</a>
<a href="http://gemcutter.org/gems/coffee-script">0.3.1</a>
</p>
<h2>Table of Contents</h2>

View File

@ -10,7 +10,7 @@ require "coffee_script/parse_error"
# Namespace for all CoffeeScript internal classes.
module CoffeeScript
VERSION = '0.3.0' # Keep in sync with the gemspec.
VERSION = '0.3.1' # Keep in sync with the gemspec.
# Compile a script (String or IO) to JavaScript.
def self.compile(script, options={})

View File

@ -5,5 +5,5 @@
"description": "Unfancy JavaScript",
"keywords": ["javascript", "language"],
"author": "Jeremy Ashkenas",
"version": "0.3.0"
"version": "0.3.1"
}