svn_branch 0.2.1
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 +8 -0
- data/Manifest.txt +17 -0
- data/README.txt +6 -0
- data/Rakefile +95 -0
- data/lib/svn_branch/version.rb +9 -0
- data/lib/svn_branch.rb +1 -0
- data/lib/tasks/create.rake +86 -0
- data/lib/tasks/merge.rake +72 -0
- data/scripts/txt2html +67 -0
- data/setup.rb +1585 -0
- data/test/test_helper.rb +2 -0
- data/test/test_svn_branch.rb +11 -0
- data/website/index.html +98 -0
- data/website/index.txt +42 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +129 -0
- data/website/template.rhtml +48 -0
- metadata +75 -0
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.4.1
|
3
|
+
specification_version: 1
|
4
|
+
name: svn_branch
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.2.1
|
7
|
+
date: 2007-06-17 00:00:00 +02:00
|
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
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: drnicwilliams@gmail.com
|
12
|
+
homepage: http://drnicutilities.rubyforge.org
|
13
|
+
rubyforge_project: drnicutilities
|
14
|
+
description: A collection of rake tasks to automate the svn functions within a project, with special support for rails projects.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- nicwilliams
|
31
|
+
files:
|
32
|
+
- History.txt
|
33
|
+
- Manifest.txt
|
34
|
+
- README.txt
|
35
|
+
- Rakefile
|
36
|
+
- lib/svn_branch.rb
|
37
|
+
- lib/svn_branch/version.rb
|
38
|
+
- lib/tasks/create.rake
|
39
|
+
- lib/tasks/merge.rake
|
40
|
+
- scripts/txt2html
|
41
|
+
- setup.rb
|
42
|
+
- test/test_helper.rb
|
43
|
+
- test/test_svn_branch.rb
|
44
|
+
- website/index.html
|
45
|
+
- website/index.txt
|
46
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
47
|
+
- website/stylesheets/screen.css
|
48
|
+
- website/template.rhtml
|
49
|
+
test_files:
|
50
|
+
- test/test_helper.rb
|
51
|
+
- test/test_svn_branch.rb
|
52
|
+
rdoc_options:
|
53
|
+
- --main
|
54
|
+
- README.txt
|
55
|
+
extra_rdoc_files:
|
56
|
+
- History.txt
|
57
|
+
- Manifest.txt
|
58
|
+
- README.txt
|
59
|
+
- website/index.txt
|
60
|
+
executables: []
|
61
|
+
|
62
|
+
extensions: []
|
63
|
+
|
64
|
+
requirements: []
|
65
|
+
|
66
|
+
dependencies:
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: gemsonrails
|
69
|
+
version_requirement:
|
70
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 0.5.0
|
75
|
+
version:
|