jruby_activiti 1.2.1 → 1.2.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.
- checksums.yaml +4 -4
- data/README.md +2 -1
- data/lib/generators/jruby_activiti/install_generator.rb +4 -0
- data/lib/jruby_activiti/version.rb +1 -1
- data/log4j.properties +9 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52cbc724f6de0c4e566e41941f262a41c15589ef
|
|
4
|
+
data.tar.gz: 6b4aecbe6f802bde2d4759a0912913281c914aa8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e83d66f445d80d5326e188c3bf2b8c103fad0a8aed0d382b20688323559f24e392354af64b6ac14b15dd467d22c0ed85e547a605f282ae2c89873a487a87713
|
|
7
|
+
data.tar.gz: c77a3d3afa9cecfe5044f0e5b866aea56b861a33d0691fc51cd872045916426d13e19e98dae8b554326c614c2539e955ff87e16e68bde6dfc9fafe0ecbeb5460
|
data/README.md
CHANGED
|
@@ -21,10 +21,11 @@ You need to run the generator:
|
|
|
21
21
|
rails g jruby_activiti:install
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
It will create
|
|
24
|
+
It will create 4 files, edit the log4j.properties, config/activiti.cfg.xml as your need.
|
|
25
25
|
|
|
26
26
|
```
|
|
27
27
|
create Jarfile
|
|
28
|
+
create log4j.properties
|
|
28
29
|
create config/activiti.cfg.xml
|
|
29
30
|
create config/initializers/jruby_activiti.rb
|
|
30
31
|
```
|
|
@@ -11,6 +11,10 @@ module JrubyActiviti
|
|
|
11
11
|
copy_file "../../../../Jarfile", "Jarfile"
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
def create_log4j_config
|
|
15
|
+
copy_file "../../../../log4j.properties", "log4j.properties"
|
|
16
|
+
end
|
|
17
|
+
|
|
14
18
|
def create_config
|
|
15
19
|
copy_file "activiti.cfg.xml", "config/activiti.cfg.xml"
|
|
16
20
|
end
|
data/log4j.properties
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
log4j.rootCategory=INFO, S
|
|
2
|
+
log4j.logger.org.w3c.tidy=FATAL
|
|
3
|
+
log4j.logger.org.springframework.integration.activiti=DEBUG
|
|
4
|
+
log4j.logger.org.springframework.integration.activiti.gateway=DEBUG
|
|
5
|
+
log4j.logger.org.springframework.integration.activiti.impls=DEBUG
|
|
6
|
+
|
|
7
|
+
log4j.appender.S = org.apache.log4j.ConsoleAppender
|
|
8
|
+
log4j.appender.S.layout = org.apache.log4j.PatternLayout
|
|
9
|
+
log4j.appender.S.layout.ConversionPattern = [log4j] %d{yyyy-MM-dd HH:mm:ss} %c{1} [%p] %m%n
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby_activiti
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- richfisher
|
|
@@ -60,6 +60,7 @@ files:
|
|
|
60
60
|
- lib/generators/jruby_activiti/templates/initializer.rb
|
|
61
61
|
- lib/jruby_activiti.rb
|
|
62
62
|
- lib/jruby_activiti/version.rb
|
|
63
|
+
- log4j.properties
|
|
63
64
|
- test/base_test.rb
|
|
64
65
|
- test/resources/VacationRequest.bpmn20.xml
|
|
65
66
|
- test/resources/activiti.cfg.xml
|