svn_branch 0.3.1 → 0.3.2
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 +5 -0
- data/lib/svn_branch/version.rb +1 -1
- data/lib/tasks/rails/create.rake +2 -2
- data/website/index.html +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/lib/svn_branch/version.rb
CHANGED
data/lib/tasks/rails/create.rake
CHANGED
@@ -51,11 +51,11 @@ namespace :svn do
|
|
51
51
|
# Now clone the trunk/config/database.yml and gsub(/#{app_name}/,"#{app_name}_#{name}")
|
52
52
|
# get database adapter type
|
53
53
|
# now create dev + test dbs
|
54
|
-
if adapter == 'postgresql'
|
54
|
+
if adapter == 'postgresql '
|
55
55
|
createdb = "createdb -E utf8"
|
56
56
|
createdb += " --username=#{config["development"]["username"]} --password" if config["development"]["username"]
|
57
57
|
elsif adapter == 'mysql'
|
58
|
-
createdb = "mysqladmin"
|
58
|
+
createdb = "mysqladmin "
|
59
59
|
createdb += " -u #{config["development"]["username"]} " +
|
60
60
|
"-p" if config["development"]["username"]
|
61
61
|
createdb += " create"
|
data/website/index.html
CHANGED
@@ -33,7 +33,7 @@
|
|
33
33
|
<h1>svn_branch</h1>
|
34
34
|
<div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/svn_branch"; return false'>
|
35
35
|
Get Version
|
36
|
-
<a href="http://rubyforge.org/projects/svn_branch" class="numbers">0.3.
|
36
|
+
<a href="http://rubyforge.org/projects/svn_branch" class="numbers">0.3.2</a>
|
37
37
|
</div>
|
38
38
|
<h1>→ rake svn:branch:create <span class="caps">NAME</span>=branchname</h1>
|
39
39
|
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4.3
|
|
3
3
|
specification_version: 1
|
4
4
|
name: svn_branch
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.3.
|
6
|
+
version: 0.3.2
|
7
7
|
date: 2007-10-29 00:00:00 +10:00
|
8
8
|
summary: A collection of rake tasks to automate the svn functions within a project, with special support for rails projects. For example, the creation of new branch, plus for rails apps, a new database.yml and new databases for development and test, for the branch.
|
9
9
|
require_paths:
|