iyyov 1.3.0-java → 1.3.1-java

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: fb9a4d2984880e18916ce5a0e68cca50950a4932
4
- data.tar.gz: 97b47e8ed075a1df2d439fa0579656fdbe3f55cd
3
+ metadata.gz: 67a3d4c305989d0268b4d35f524ab8cbb6fdceef
4
+ data.tar.gz: b760d3d4fba4b68e730d34289c693d5d53d66c45
5
5
  SHA512:
6
- metadata.gz: 5a6cfbc1ce3601d6fa0a3e811e965802071e550772bf8bedcb2be6818a42da6ecd3dc3c442885d012d90ded4ea1082e677d451a2850d2dda59304cc0b3eba59e
7
- data.tar.gz: e752e1fe1473db6330c188b37a259006f629b521ee91ac3cd848591f9c18a8fc25d7895398cbd5aac93e02f3e3ce9fe410b3aa6f724eb68200dec4f06a0e8664
6
+ metadata.gz: e85359bba5b411697c96889394b50f65ec662bd9f2489faf70ffeef88a7a6ba73fee40c7ebe68e42da6007373f9c511996f97837d614699fbe958e41d7bc1906
7
+ data.tar.gz: dd249971aef8f9f4b824c64d21e965cf91121f1b14e7da751834a78e39672e814229bfc34ecae2ecb529c542770131d38398e8ddcd9800652aeeb45027fa6f26
@@ -1,3 +1,6 @@
1
+ === 1.3.1 (2015-1-25)
2
+ * Increase daemon RAM to 128MiB
3
+
1
4
  === 1.3.0 (2014-2-24)
2
5
  * Add Context.load_directory to load the contents of a jobs.d
3
6
  directory. Each contained executable *.rb file is loaded. This
@@ -83,7 +83,7 @@ the above provided examples.
83
83
 
84
84
  == License
85
85
 
86
- Copyright (c) 2010-2014 David Kellum
86
+ Copyright (c) 2010-2015 David Kellum
87
87
 
88
88
  Licensed under the Apache License, Version 2.0 (the "License"); you
89
89
  may not use this file except in compliance with the License. You
@@ -4,7 +4,7 @@
4
4
  #. hashdot.vm.options += -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled
5
5
 
6
6
  #--
7
- # Copyright (c) 2010-2014 David Kellum
7
+ # Copyright (c) 2010-2015 David Kellum
8
8
  #
9
9
  # Licensed under the Apache License, Version 2.0 (the "License"); you
10
10
  # may not use this file except in compliance with the License. You
@@ -14,7 +14,7 @@
14
14
  gem_home="/opt/jruby/gems"
15
15
 
16
16
  # (Exact) Gem version of iyyov to run
17
- version="1.3.0"
17
+ version="1.3.1"
18
18
 
19
19
  # User to run the daemon as (should own rundir)
20
20
  user="iyyov"
data/init/iyyov CHANGED
@@ -3,11 +3,11 @@
3
3
  #. hashdot.profile += daemon
4
4
  #. hashdot.pid_file = ./iyyov.pid
5
5
  #. hashdot.io_redirect.file = ./iyyov.log
6
- #. hashdot.vm.options += -Xmx64m
6
+ #. hashdot.vm.options += -Xmx128m
7
7
  #. hashdot.vm.options += -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled
8
8
 
9
9
  #--
10
- # Copyright (c) 2010-2014 David Kellum
10
+ # Copyright (c) 2010-2015 David Kellum
11
11
  #
12
12
  # Licensed under the Apache License, Version 2.0 (the "License"); you
13
13
  # may not use this file except in compliance with the License. You
@@ -24,7 +24,7 @@
24
24
 
25
25
  require 'rubygems'
26
26
 
27
- gem( "iyyov", "= 1.3.0" )
27
+ gem( "iyyov", "= 1.3.1" )
28
28
 
29
29
  require 'rjack-logback'
30
30
  RJack::Logback.config_console( :full => true, :thread => true )
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -16,5 +16,5 @@
16
16
 
17
17
  module Iyyov
18
18
  # Iyyov version
19
- VERSION = '1.3.0'
19
+ VERSION = '1.3.1'
20
20
  end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2010-2014 David Kellum
2
+ # Copyright (c) 2010-2015 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  #.hashdot.profile += jruby-shortlived
3
3
  #--
4
- # Copyright (c) 2010-2014 David Kellum
4
+ # Copyright (c) 2010-2015 David Kellum
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License"); you
7
7
  # may not use this file except in compliance with the License. You
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  #.hashdot.profile += jruby-shortlived
3
3
  #--
4
- # Copyright (c) 2010-2014 David Kellum
4
+ # Copyright (c) 2010-2015 David Kellum
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License"); you
7
7
  # may not use this file except in compliance with the License. You
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  #.hashdot.profile += jruby-shortlived
3
3
  #--
4
- # Copyright (c) 2010-2014 David Kellum
4
+ # Copyright (c) 2010-2015 David Kellum
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License"); you
7
7
  # may not use this file except in compliance with the License. You
metadata CHANGED
@@ -1,18 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iyyov
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: java
6
6
  authors:
7
7
  - David Kellum
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-24 00:00:00.000000000 Z
11
+ date: 2015-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rjack-slf4j
15
- version_requirements: !ruby/object:Gem::Requirement
14
+ requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
16
  - - '>='
18
17
  - !ruby/object:Gem::Version
@@ -20,7 +19,10 @@ dependencies:
20
19
  - - <
21
20
  - !ruby/object:Gem::Version
22
21
  version: '1.8'
23
- requirement: !ruby/object:Gem::Requirement
22
+ name: rjack-slf4j
23
+ prerelease: false
24
+ type: :runtime
25
+ version_requirements: !ruby/object:Gem::Requirement
24
26
  requirements:
25
27
  - - '>='
26
28
  - !ruby/object:Gem::Version
@@ -28,78 +30,90 @@ dependencies:
28
30
  - - <
29
31
  - !ruby/object:Gem::Version
30
32
  version: '1.8'
31
- prerelease: false
32
- type: :runtime
33
33
  - !ruby/object:Gem::Dependency
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: '1.2'
34
39
  name: rjack-logback
40
+ prerelease: false
41
+ type: :runtime
35
42
  version_requirements: !ruby/object:Gem::Requirement
36
43
  requirements:
37
44
  - - ~>
38
45
  - !ruby/object:Gem::Version
39
46
  version: '1.2'
47
+ - !ruby/object:Gem::Dependency
40
48
  requirement: !ruby/object:Gem::Requirement
41
49
  requirements:
42
- - - ~>
50
+ - - '='
43
51
  - !ruby/object:Gem::Version
44
- version: '1.2'
52
+ version: 1.2.1
53
+ name: logrotate
45
54
  prerelease: false
46
55
  type: :runtime
47
- - !ruby/object:Gem::Dependency
48
- name: logrotate
49
56
  version_requirements: !ruby/object:Gem::Requirement
50
57
  requirements:
51
58
  - - '='
52
59
  - !ruby/object:Gem::Version
53
60
  version: 1.2.1
61
+ - !ruby/object:Gem::Dependency
54
62
  requirement: !ruby/object:Gem::Requirement
55
63
  requirements:
56
- - - '='
64
+ - - ~>
57
65
  - !ruby/object:Gem::Version
58
- version: 1.2.1
59
- prerelease: false
60
- type: :runtime
61
- - !ruby/object:Gem::Dependency
66
+ version: 4.7.4
62
67
  name: minitest
68
+ prerelease: false
69
+ type: :development
63
70
  version_requirements: !ruby/object:Gem::Requirement
64
71
  requirements:
65
72
  - - ~>
66
73
  - !ruby/object:Gem::Version
67
74
  version: 4.7.4
75
+ - !ruby/object:Gem::Dependency
68
76
  requirement: !ruby/object:Gem::Requirement
69
77
  requirements:
70
78
  - - ~>
71
79
  - !ruby/object:Gem::Version
72
- version: 4.7.4
80
+ version: 4.0.1
81
+ name: rdoc
73
82
  prerelease: false
74
83
  type: :development
75
- - !ruby/object:Gem::Dependency
76
- name: hashdot-test-daemon
77
84
  version_requirements: !ruby/object:Gem::Requirement
78
85
  requirements:
79
86
  - - ~>
80
87
  - !ruby/object:Gem::Version
81
- version: '1.2'
88
+ version: 4.0.1
89
+ - !ruby/object:Gem::Dependency
82
90
  requirement: !ruby/object:Gem::Requirement
83
91
  requirements:
84
92
  - - ~>
85
93
  - !ruby/object:Gem::Version
86
94
  version: '1.2'
95
+ name: hashdot-test-daemon
87
96
  prerelease: false
88
97
  type: :development
89
- - !ruby/object:Gem::Dependency
90
- name: rjack-tarpit
91
98
  version_requirements: !ruby/object:Gem::Requirement
92
99
  requirements:
93
100
  - - ~>
94
101
  - !ruby/object:Gem::Version
95
- version: '2.1'
102
+ version: '1.2'
103
+ - !ruby/object:Gem::Dependency
96
104
  requirement: !ruby/object:Gem::Requirement
97
105
  requirements:
98
106
  - - ~>
99
107
  - !ruby/object:Gem::Version
100
108
  version: '2.1'
109
+ name: rjack-tarpit
101
110
  prerelease: false
102
111
  type: :development
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ~>
115
+ - !ruby/object:Gem::Version
116
+ version: '2.1'
103
117
  description:
104
118
  email:
105
119
  - dek-oss@gravitext.com