newjs 1.3.2 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 1.3.3 2008-02-20
2
+
3
+ * Push out rubigen 1.2.1 with its bug fixes for APP_ROOT
4
+ * generate/destroy apply expand_path to APP_ROOT
5
+
1
6
  == 1.3.2 2008-02-20
2
7
 
3
8
  * remove options from 'env ruby' in newjs bin
data/config/hoe.rb CHANGED
@@ -62,7 +62,7 @@ hoe = Hoe.new(GEM_NAME, VERS) do |p|
62
62
  ['RedCloth','>=3.0.4'],
63
63
  ['syntax','>=1.0.0'],
64
64
  ['activesupport','>=2.0.2'],
65
- ['rubigen','>=1.2.0']
65
+ ['rubigen','>=1.2.1']
66
66
  ]
67
67
 
68
68
  #p.spec_extras = {} # A hash of extra values to set in the gemspec.
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 = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/script/destroy CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ruby
1
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
2
2
  APP_ROOT = File.join(File.dirname(__FILE__), '..')
3
3
 
4
4
  begin
data/script/generate CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- APP_ROOT = File.join(File.dirname(__FILE__), '..')
2
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
3
 
4
4
  begin
5
5
  require 'rubigen'
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.2</a>
34
+ <a href="http://rubyforge.org/projects/newjs" class="numbers">1.3.3</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.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dr Nic Williams
@@ -46,7 +46,7 @@ dependencies:
46
46
  requirements:
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: 1.2.0
49
+ version: 1.2.1
50
50
  version:
51
51
  description: "Description: The +newjs+ command creates a new JavaScript project/application with a default directory structure and configuration at the path you specify. Example: +newjs path/to/my-app-name+ This generates a skeletal JavaScript project/application installation in path/to/my-app-name"
52
52
  email: