newjs 1.3.3 → 1.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.3.4 2008-02-20
2
+
3
+ * update jsunittest.js to 0.6.1
4
+
1
5
  == 1.3.3 2008-02-20
2
6
 
3
7
  * Push out rubigen 1.2.1 with its bug fixes for APP_ROOT
@@ -1,4 +1,4 @@
1
- /* Jsunittest, version 0.6.0
1
+ /* Jsunittest, version 0.6.1
2
2
  * (c) 2008 Dr Nic Williams
3
3
  *
4
4
  * Jsunittest is freely distributable under
@@ -8,7 +8,7 @@
8
8
  *--------------------------------------------------------------------------*/
9
9
 
10
10
  var JsUnitTest = {
11
- Version: '0.6.0',
11
+ Version: '0.6.1',
12
12
  };
13
13
 
14
14
  var DrNicTest = {
@@ -472,7 +472,7 @@ DrNicTest.ajax = function( options ) {
472
472
  };
473
473
 
474
474
  // Establish the connection to the server
475
- xml.send();
475
+ xml.send(null);
476
476
 
477
477
  // Determine the success of the HTTP response
478
478
  function httpSuccess(r) {
data/lib/newjs/version.rb CHANGED
@@ -2,7 +2,7 @@ module Newjs #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 3
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -1,4 +1,4 @@
1
- /* Jsunittest, version 0.6.0
1
+ /* Jsunittest, version 0.6.1
2
2
  * (c) 2008 Dr Nic Williams
3
3
  *
4
4
  * Jsunittest is freely distributable under
@@ -8,7 +8,7 @@
8
8
  *--------------------------------------------------------------------------*/
9
9
 
10
10
  var JsUnitTest = {
11
- Version: '0.6.0',
11
+ Version: '0.6.1',
12
12
  };
13
13
 
14
14
  var DrNicTest = {
@@ -472,7 +472,7 @@ DrNicTest.ajax = function( options ) {
472
472
  };
473
473
 
474
474
  // Establish the connection to the server
475
- xml.send();
475
+ xml.send(null);
476
476
 
477
477
  // Determine the success of the HTTP response
478
478
  function httpSuccess(r) {
data/website/index.html CHANGED
@@ -31,7 +31,7 @@
31
31
  <h1>JavaScript Project Generator</h1>
32
32
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/newjs"; return false'>
33
33
  <p>Get Version</p>
34
- <a href="http://rubyforge.org/projects/newjs" class="numbers">1.3.3</a>
34
+ <a href="http://rubyforge.org/projects/newjs" class="numbers">1.3.4</a>
35
35
  </div>
36
36
  <h1>&#x2192; &#8216;newjs&#8217;</h1>
37
37
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newjs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dr Nic Williams