rubigen 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.0.5 2007-10-08
2
+
3
+ * Added Jeremy Kemper to license/copyright/gem author list.
4
+
1
5
  == 1.0.4 2007-09-07
2
6
 
3
7
  * New manifest actions:
data/License.txt CHANGED
@@ -1,4 +1,5 @@
1
- Copyright (c) 2007 Dr Nic Williams
1
+ Copyright (c) 2005-7 Jeremy Kemper (original code from Ruby on Rails)
2
+ Copyright (c) 2007 Dr Nic Williams (extraction into RubiGen)
2
3
  Permission is hereby granted, free of charge, to any person obtaining
3
4
  a copy of this software and associated documentation files (the
4
5
  "Software"), to deal in the Software without restriction, including
data/Rakefile CHANGED
@@ -26,7 +26,7 @@ end
26
26
  include FileUtils
27
27
  require File.join(File.dirname(__FILE__), 'lib', 'rubigen', 'version')
28
28
 
29
- AUTHOR = 'Dr Nic Williams' # can also be an array of Authors
29
+ AUTHOR = ['Dr Nic Williams', 'Jeremy Kemper'] # can also be an array of Authors
30
30
  EMAIL = "drnicwilliams@gmail.com"
31
31
  DESCRIPTION = <<-EOS
32
32
  A framework to allow Ruby applications to generate file/folder stubs (like the rails command does for Ruby on Rails, and the ‘script/generate’ command within a Rails application during development).
@@ -2,7 +2,7 @@ module Rubigen #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- TINY = 4
5
+ TINY = 5
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/website/index.html CHANGED
@@ -31,7 +31,7 @@
31
31
  <h1>rubigen</h1>
32
32
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/rubigen"; return false'>
33
33
  <p>Get Version</p>
34
- <a href="http://rubyforge.org/projects/rubigen" class="numbers">1.0.4</a>
34
+ <a href="http://rubyforge.org/projects/rubigen" class="numbers">1.0.5</a>
35
35
  </div>
36
36
  <h1>Ruby Generator Framework</h1>
37
37
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4.3
3
3
  specification_version: 1
4
4
  name: rubigen
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.4
7
- date: 2007-09-07 00:00:00 +02:00
6
+ version: 1.0.5
7
+ date: 2007-10-08 00:00:00 +10:00
8
8
  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)."
9
9
  require_paths:
10
10
  - lib
@@ -28,6 +28,7 @@ cert_chain:
28
28
  post_install_message:
29
29
  authors:
30
30
  - Dr Nic Williams
31
+ - Jeremy Kemper
31
32
  files:
32
33
  - History.txt
33
34
  - License.txt