svn_branch 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ == 0.3.2 2007-10-29
2
+
3
+ * Fixed db create calls
4
+ * Refactored create/merge into tasks/rails, and started rubygems versions.
5
+
1
6
  == 0.3.1 2007-10-29
2
7
 
3
8
  * When determining project/app_name, use reverse repos root path parts (not just last) and
@@ -2,7 +2,7 @@ module SvnBranch #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -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"
@@ -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.1</a>
36
+ <a href="http://rubyforge.org/projects/svn_branch" class="numbers">0.3.2</a>
37
37
  </div>
38
38
  <h1>&#x2192; 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.1
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: