public
Description: newjs - create new JavaScript libraries
Homepage: http://newjs.rubyforge.org
Clone URL: git://github.com/drnic/newjs.git
Search Repo:
1.3.3: upgrading to rubigen 1.2.1
drnic (author)
Wed Feb 20 04:10:52 -0800 2008
commit  edc62ae00af63af19c9736eb868063efe91077fa
tree    f195540a639bc34e0200c6b72ad53a08272d2cdb
parent  cb32daf7e2edb2599e76b4752857b8443ef1271f
...
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
0
@@ -1,3 +1,8 @@
0
+== 1.3.3 2008-02-20
0
+
0
+* Push out rubigen 1.2.1 with its bug fixes for APP_ROOT
0
+* generate/destroy apply expand_path to APP_ROOT
0
+
0
 == 1.3.2 2008-02-20
0
 
0
 * remove options from 'env ruby' in newjs bin
...
62
63
64
65
 
66
67
68
...
62
63
64
 
65
66
67
68
0
@@ -62,7 +62,7 @@ hoe = Hoe.new(GEM_NAME, VERS) do |p|
0
     ['RedCloth','>=3.0.4'],
0
     ['syntax','>=1.0.0'],
0
     ['activesupport','>=2.0.2'],
0
- ['rubigen','>=1.2.0']
0
+ ['rubigen','>=1.2.1']
0
   ]
0
   
0
   #p.spec_extras = {} # A hash of extra values to set in the gemspec.
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module Newjs #:nodoc:
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 3
0
- TINY = 2
0
+ TINY = 3
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-#!/usr/bin/env ruby
0
+APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
0
 APP_ROOT = File.join(File.dirname(__FILE__), '..')
0
 
0
 begin
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 #!/usr/bin/env ruby
0
-APP_ROOT = File.join(File.dirname(__FILE__), '..')
0
+APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
0
 
0
 begin
0
   require 'rubigen'
...
31
32
33
34
 
35
36
37
...
31
32
33
 
34
35
36
37
0
@@ -31,7 +31,7 @@
0
     <h1>JavaScript Project Generator</h1>
0
     <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/newjs"; return false'>
0
       <p>Get Version</p>
0
- <a href="http://rubyforge.org/projects/newjs" class="numbers">1.3.2</a>
0
+ <a href="http://rubyforge.org/projects/newjs" class="numbers">1.3.3</a>
0
     </div>
0
     <h1>&#x2192; &#8216;newjs&#8217;</h1>
0
 

Comments

    No one has commented yet.