trinidad_hotdeploy_extension 0.1.0 → 0.1.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
ADDED
data/README
CHANGED
|
@@ -13,7 +13,11 @@ Extension to allow Trinidad to redeploy an application each time a file, for ins
|
|
|
13
13
|
|
|
14
14
|
# CONFIGURE
|
|
15
15
|
|
|
16
|
-
To configure it, you need to add it into the extensions section of a web application
|
|
16
|
+
To configure it, you need to add it into the extensions section of a web application in the Trinidad's configuration file.
|
|
17
|
+
|
|
18
|
+
http://wiki.github.com/calavera/trinidad/advanced-configuration
|
|
19
|
+
|
|
20
|
+
It also allows to configure the name of the file to monitorize and the period of time that it waits between each check.
|
|
17
21
|
|
|
18
22
|
---
|
|
19
23
|
web_apps:
|
|
@@ -3,7 +3,7 @@ module Trinidad
|
|
|
3
3
|
require File.expand_path('../../trinidad-libs/trinidad-hotdeploy-extension.jar', __FILE__)
|
|
4
4
|
|
|
5
5
|
class HotdeployWebAppExtension < WebAppExtension
|
|
6
|
-
VERSION = '0.1.
|
|
6
|
+
VERSION = '0.1.1'
|
|
7
7
|
|
|
8
8
|
def configure(tomcat, app_context)
|
|
9
9
|
@options[:monitor] ||= File.join(app_context.doc_base, 'tmp/restart.txt')
|
|
Binary file
|
|
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
14
14
|
## the sub! line in the Rakefile
|
|
15
15
|
s.name = 'trinidad_hotdeploy_extension'
|
|
16
|
-
s.version = '0.1.
|
|
17
|
-
s.date = '2010-
|
|
16
|
+
s.version = '0.1.1'
|
|
17
|
+
s.date = '2010-05-09'
|
|
18
18
|
s.rubyforge_project = 'trinidad_hotdeploy_extension'
|
|
19
19
|
|
|
20
20
|
## Make sure your summary is short. The description may be as long
|
|
@@ -40,7 +40,7 @@ Gem::Specification.new do |s|
|
|
|
40
40
|
|
|
41
41
|
## List your runtime dependencies here. Runtime dependencies are those
|
|
42
42
|
## that are needed for an end user to actually USE your code.
|
|
43
|
-
s.add_dependency('
|
|
43
|
+
s.add_dependency('trinidad', '>=0.9.1')
|
|
44
44
|
|
|
45
45
|
## List your development dependencies here. Development dependencies are
|
|
46
46
|
## those that are only needed during development
|
|
@@ -52,6 +52,7 @@ Gem::Specification.new do |s|
|
|
|
52
52
|
## THE MANIFEST COMMENTS, they are used as delimiters by the task.
|
|
53
53
|
# = MANIFEST =
|
|
54
54
|
s.files = %w[
|
|
55
|
+
History.txt
|
|
55
56
|
LICENSE
|
|
56
57
|
README
|
|
57
58
|
Rakefile
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- David Calavera
|
|
@@ -14,11 +14,11 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-
|
|
17
|
+
date: 2010-05-09 00:00:00 +02:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
|
-
name:
|
|
21
|
+
name: trinidad
|
|
22
22
|
prerelease: false
|
|
23
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
@@ -26,7 +26,9 @@ dependencies:
|
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
segments:
|
|
28
28
|
- 0
|
|
29
|
-
|
|
29
|
+
- 9
|
|
30
|
+
- 1
|
|
31
|
+
version: 0.9.1
|
|
30
32
|
type: :runtime
|
|
31
33
|
version_requirements: *id001
|
|
32
34
|
- !ruby/object:Gem::Dependency
|
|
@@ -63,6 +65,7 @@ extra_rdoc_files:
|
|
|
63
65
|
- README
|
|
64
66
|
- LICENSE
|
|
65
67
|
files:
|
|
68
|
+
- History.txt
|
|
66
69
|
- LICENSE
|
|
67
70
|
- README
|
|
68
71
|
- Rakefile
|