docman 0.0.49 → 0.0.50
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/lib/application.rb +3 -0
- data/lib/docman/builders/builder.rb +1 -0
- data/lib/docman/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d34371a74c9895f62b533fa3656a62b97ad70cf
|
4
|
+
data.tar.gz: 742447f9a65e7fd862f9ba36c7cf86bdf66d1455
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d95703fa66f13e7222df1f98083373e5d8eca4017769452e69c7a648a8b36a7d49d9024b4cd88935f21769e1fc47db6cc4e85c910d79fc3a048e78144f24c678
|
7
|
+
data.tar.gz: b85cfe9ed0ab8f3194248428c18f98269e9a730cff5dc730dfcee92e3a5146ff2c1a9f17d942ded2b7530d3b04afa8bf377ed870f079354096ff943746884670
|
data/lib/application.rb
CHANGED
@@ -125,6 +125,9 @@ module Docman
|
|
125
125
|
unless environment['previous'].nil?
|
126
126
|
unless environment['previous'][name].nil?
|
127
127
|
properties['project_last_result'] = environment['previous'][name]['result'] unless environment['previous'][name]['result'].nil?
|
128
|
+
unless environment['previous'][name]['context'].nil?
|
129
|
+
properties['temp_path'] = environment['previous'][name]['context']['temp_path'] unless environment['previous'][name]['context']['temp_path'].nil?
|
130
|
+
end
|
128
131
|
end
|
129
132
|
end
|
130
133
|
end
|
@@ -30,6 +30,7 @@ module Docman
|
|
30
30
|
|
31
31
|
info_file = File.join(@context['full_build_path'], 'info.yaml')
|
32
32
|
info = YAML::load_file(info_file) if File.file? info_file
|
33
|
+
info['context'] = @context
|
33
34
|
if info
|
34
35
|
name = @context['name']
|
35
36
|
environment['previous'] = {} if environment['previous'].nil?
|
data/lib/docman/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.50
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexander Tolstikov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|