runit-man 2.3.20 → 2.3.21
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/CHANGELOG.markdown +2 -1
- data/lib/runit-man/service_info/logger.rb +1 -1
- data/lib/runit-man/version.rb +1 -1
- metadata +3 -3
data/CHANGELOG.markdown
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
## Changes
|
|
2
2
|
|
|
3
|
-
### Version 2.3.
|
|
3
|
+
### Version 2.3.21
|
|
4
4
|
|
|
5
5
|
* Running using <tt>bundle exec</tt> is fixed.
|
|
6
6
|
* Initial staging environment added using [http://vagrantup.com/](Vagrant "Vagrant").
|
|
7
|
+
* Fix internal error when log downloads directory is absent.
|
|
7
8
|
|
|
8
9
|
### Version 2.3.18
|
|
9
10
|
|
|
@@ -14,7 +14,7 @@ class ServiceInfo::Logger < ServiceInfo::Base
|
|
|
14
14
|
lfloc = log_file_location
|
|
15
15
|
return [] if lfloc.nil?
|
|
16
16
|
r = []
|
|
17
|
-
dir_name = File.dirname(File.dirname(
|
|
17
|
+
dir_name = File.dirname(File.dirname(lfloc))
|
|
18
18
|
Dir.foreach(dir_name) do |name|
|
|
19
19
|
next if ServiceInfo::Base.itself_or_parent?(name)
|
|
20
20
|
full_name = File.expand_path(name, dir_name)
|
data/lib/runit-man/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runit-man
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 41
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 2
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 2.3.
|
|
9
|
+
- 21
|
|
10
|
+
version: 2.3.21
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Akzhan Abdulin
|