ucb_deployer 0.1.5 → 0.1.6
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/README.txt +8 -0
- data/Rakefile +1 -1
- data/lib/ucb_deployer/jira_deployer.rb +3 -0
- data/ucb_deployer.gemspec +2 -2
- metadata +4 -4
data/README.txt
CHANGED
|
@@ -11,6 +11,8 @@ UCB Deployer is gem to automate confluence and jira deployments to Tomcat.
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
=== Assumptions
|
|
14
|
+
|
|
15
|
+
==== Tomcat Setup
|
|
14
16
|
We assume __Jira__ and __Confluence__ both have their own instance of tomcat (their own
|
|
15
17
|
$CATALINA_HOME). For more information on this type of setup see:
|
|
16
18
|
|
|
@@ -24,6 +26,12 @@ $HOME/config/jira/deploy.yml
|
|
|
24
26
|
Where $HOME is the home directory of the user that will be doing the deployments:
|
|
25
27
|
we are using a special user __app_relmgt__ for this purpose.
|
|
26
28
|
|
|
29
|
+
==== Move Jars into common/lib
|
|
30
|
+
The following jars are in $CATALINA_HOME/common/lib
|
|
31
|
+
* activation-1.0.2.jar
|
|
32
|
+
* javamail-1.3.3.jar
|
|
33
|
+
* postgresql-8.3-604.jdbc3.jar
|
|
34
|
+
|
|
27
35
|
=== Configuration
|
|
28
36
|
|
|
29
37
|
The deploy.yml files for __Jira__ and __Confluence__ both accept the following options:
|
data/Rakefile
CHANGED
|
@@ -3,7 +3,7 @@ require 'rake'
|
|
|
3
3
|
require 'echoe'
|
|
4
4
|
require 'spec/rake/spectask'
|
|
5
5
|
|
|
6
|
-
Echoe.new('ucb_deployer', '0.1.
|
|
6
|
+
Echoe.new('ucb_deployer', '0.1.6') do |p|
|
|
7
7
|
p.description = "Tool for deploying (Java/JRuby) war files to tomcat"
|
|
8
8
|
p.url = "http://ucbrb.rubyforge.org"
|
|
9
9
|
p.author = "Steven Hansen"
|
|
@@ -190,6 +190,9 @@ module UcbDeployer
|
|
|
190
190
|
"#{build_dir}/src/edit-webapp/WEB-INF/lib/")
|
|
191
191
|
FileUtils.cp(Dir["#{UcbDeployer::RESOURCES_DIR}/soulwing-casclient-*"],
|
|
192
192
|
"#{build_dir}/src/edit-webapp/WEB-INF/lib/")
|
|
193
|
+
# These have been placed in $CATALINA_HOME/common/lib
|
|
194
|
+
FileUtils.rm("#{build_dir}/src/webapp/WEB-INF/lib/activation-1.0.2.jar")
|
|
195
|
+
FileUtils.rm("#{build_dir}/src/webapp/WEB-INF/lib/javamail-1.3.3.jar")
|
|
193
196
|
end
|
|
194
197
|
|
|
195
198
|
end
|
data/ucb_deployer.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{ucb_deployer}
|
|
5
|
-
s.version = "0.1.
|
|
5
|
+
s.version = "0.1.6"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Steven Hansen"]
|
|
9
|
-
s.date = %q{2010-10-
|
|
9
|
+
s.date = %q{2010-10-26}
|
|
10
10
|
s.default_executable = %q{ucb_deploy}
|
|
11
11
|
s.description = %q{Tool for deploying (Java/JRuby) war files to tomcat}
|
|
12
12
|
s.email = %q{runner@berkeley.edu}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ucb_deployer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.1.6
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Steven Hansen
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-10-
|
|
18
|
+
date: 2010-10-26 00:00:00 -07:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies: []
|
|
21
21
|
|