jruby_activiti 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e703dba663fa296d8d44984fe46b78b8bd9a7fbe
4
- data.tar.gz: ff1a77a827f31481d9fa67336e4e566f3446b801
3
+ metadata.gz: 52cbc724f6de0c4e566e41941f262a41c15589ef
4
+ data.tar.gz: 6b4aecbe6f802bde2d4759a0912913281c914aa8
5
5
  SHA512:
6
- metadata.gz: 098be44353e7be866456424b7ca11c0ae594f6e77e6e84c90160a5d80b57f5ea285114590ff614edb99bda531b7fedc41d0ec27ba33b6c0e6a049a3d7731d022
7
- data.tar.gz: d9852a383236ec8d453d260630b55bddb1e8a8365a8e348038c69c7ca92d50b22447eb2e4a46ae05a6e5f48a626d5c1997cc2827152fda7b60204c2cd2097197
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 3 files, edit the config/activiti.cfg.xml as your need.
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
@@ -1,3 +1,3 @@
1
1
  module JrubyActiviti
2
- VERSION = "1.2.1"
2
+ VERSION = "1.2.2"
3
3
  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.1
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