rubigen 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,6 +1,11 @@
1
+ == 1.3.4 2008-11-12
2
+
3
+ * ruby_app: fixed reference to non-existent version.rb [jperkins]
4
+
1
5
  == 1.3.3 2008-10-21
2
6
 
3
7
  * prepend_sources correctly places arguments at start of sources list
8
+ * removed lib/rubigen/version.rb; RubiGen::VERSION is in lib/rubigen.rb now; there is no RubiGen::VERSION::STRING
4
9
 
5
10
  == 1.3.2 2008-05-19
6
11
 
data/bin/ruby_app CHANGED
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require File.dirname(__FILE__) + '/../lib/rubigen/version'
4
3
  if %w(--version -v).include? ARGV.first
5
4
  puts "Rails #{RubiGen::VERSION}"
6
5
  exit(0)
data/lib/rubigen.rb CHANGED
@@ -9,7 +9,7 @@ rescue LoadError
9
9
  end
10
10
 
11
11
  module RubiGen
12
- VERSION = '1.3.3'
12
+ VERSION = '1.3.4'
13
13
  end
14
14
 
15
15
  require 'rubigen/base'
data/website/index.html CHANGED
@@ -35,7 +35,7 @@
35
35
  <div class="sidebar">
36
36
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/rubigen"; return false'>
37
37
  <p>Get Version</p>
38
- <a href="http://rubyforge.org/projects/rubigen" class="numbers">1.3.3</a>
38
+ <a href="http://rubyforge.org/projects/rubigen" class="numbers">1.3.4</a>
39
39
  </div>
40
40
 
41
41
  <div id="twitter_search">
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubigen
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
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2008-10-26 00:00:00 +10:00
13
+ date: 2008-11-12 00:00:00 +10:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -31,7 +31,7 @@ dependencies:
31
31
  requirements:
32
32
  - - ">="
33
33
  - !ruby/object:Gem::Version
34
- version: 1.8.0
34
+ version: 1.8.2
35
35
  version:
36
36
  description: "A framework to allow Ruby applications to generate file/folder stubs (like the rails command does for Ruby on Rails, and the \xE2\x80\x98script/generate\xE2\x80\x99 command within a Rails application during development)."
37
37
  email: drnicwilliams@gmail.com
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  requirements: []
153
153
 
154
154
  rubyforge_project: rubigen
155
- rubygems_version: 1.3.0
155
+ rubygems_version: 1.3.1
156
156
  signing_key:
157
157
  specification_version: 2
158
158
  summary: "A framework to allow Ruby applications to generate file/folder stubs (like the rails command does for Ruby on Rails, and the \xE2\x80\x98script/generate\xE2\x80\x99 command within a Rails application during development)."