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 +4 -0
- data/License.txt +2 -1
- data/Rakefile +1 -1
- data/lib/rubigen/version.rb +1 -1
- data/website/index.html +1 -1
- metadata +3 -2
data/History.txt
CHANGED
data/License.txt
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
Copyright (c)
|
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).
|
data/lib/rubigen/version.rb
CHANGED
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.
|
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.
|
7
|
-
date: 2007-
|
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
|