ocra 1.3.5 → 1.3.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b08f5117bf00daab7de6290e3633a9ad77135232
4
- data.tar.gz: 8eeb139fddacc6be202f2078490c0dfd33305aaa
3
+ metadata.gz: 07d773c99a0073066c6164194f9244b2a7072d19
4
+ data.tar.gz: 9879245b7b665fac3cb8ec658a4153934e7dd2ac
5
5
  SHA512:
6
- metadata.gz: f0917075c10a5332e97b11d91ea52eaf27012232eb12cbc53dd3a8572acb6dc0a7a6a98a8841da97283373d6417016418876e4ff24bb70a0c1b94c626b8d4d37
7
- data.tar.gz: cdef1036b565df38d836851295547ec12d0debf76ccbf04ef78028bd3fcb95705bfef76493ec028369bd9c83fca4d57d1758447faad0d0248cf65faed4470035
6
+ metadata.gz: eb0c6eb2fdbf2043301340a2ac6a415b7b4a0f1d6d1d2679eabe3d08e957a4be9bcab949b989145cfc9862ecbedd255d3af1b61dae33c8cdd3a2fc2b31d7727e
7
+ data.tar.gz: 0c198644eab7b9f23d4d3abdf9627d41859193843a56aad5e2583489c1e1829bccea26a4bc1e6f734ff4a17d29e0ead6bac7c37e138ebb65a0bec300afd13160
@@ -1,3 +1,11 @@
1
+ === 1.3.6
2
+
3
+ * More robust cleanup of temporary files. Deletes using manual
4
+ recursive method instead of using the shell. Will mark files for
5
+ later deletion both using Windows (requires Administrator
6
+ privileges) and a custom method that will remove old temporary files
7
+ when the executable is restarted.
8
+
1
9
  === 1.3.5
2
10
 
3
11
  * Fixes for Ruby 2.2.2p95
@@ -47,7 +55,7 @@
47
55
 
48
56
  * New gem behaviour yet again due to changes in Rubygems. See README
49
57
  file.
50
-
58
+
51
59
  === 1.2.0
52
60
 
53
61
  * Ignore console events (Ctrl-C, Ctrl-Break). Ruby process handles
data/bin/ocra CHANGED
@@ -178,7 +178,7 @@ module Ocra
178
178
  a.sort.inject([]) { |r, e| r.last == e ? r : r << e }
179
179
  end
180
180
 
181
- VERSION = "1.3.5"
181
+ VERSION = "1.3.6"
182
182
 
183
183
  IGNORE_MODULES = /\/(enumerator.so|rational.so|complex.so|thread.rb)$/
184
184
 
@@ -1,3 +1,3 @@
1
1
  class Ocra
2
- VERSION = '1.3.5'
2
+ VERSION = '1.3.6'
3
3
  end
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ocra
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lars Christensen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-23 00:00:00.000000000 Z
11
+ date: 2015-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -101,9 +101,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
101
  version: '0'
102
102
  requirements: []
103
103
  rubyforge_project:
104
- rubygems_version: 2.4.5
104
+ rubygems_version: 2.4.8
105
105
  signing_key:
106
106
  specification_version: 4
107
107
  summary: OCRA (One-Click Ruby Application) builds Windows executables from Ruby source
108
108
  code
109
- test_files: []
109
+ test_files:
110
+ - test/test_ocra.rb