iroki 0.0.24 → 0.0.25

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: d8c25d56c48df6641fe6617ca2ada16ec5f54ee5
4
- data.tar.gz: b69c7f8daab4f9cf8ddd74cf40b7d5db35c11bff
3
+ metadata.gz: 1353014b106465bf35d48a151d021f1a75d71be7
4
+ data.tar.gz: dc1e7cdb040b541bd19651feb2dd3c64e12d812a
5
5
  SHA512:
6
- metadata.gz: b3ed154d715e49ddbc26f70190128d8c750a55b52d6cbe2495e41c08fe1e1ceaf9f57212339234bce7d2f2445c858a3992f755c89e31e9eda99323200cdd77be
7
- data.tar.gz: 2288dbaa4f77a9f4f9efef92d0cd1237e32c29eee9c357bf0c1d8044dc9ab7d7e8234797e399c24672d993c4a3f89bfb015ee05ab90da294ae96d3e4314b8b81
6
+ metadata.gz: cb798fe65976dda134d5e3663261cc69b42c36438ffd42beb21d20c9b9a76c565c820e30f534ce3d1333df18643b950b484e7be7d2b45e3431cf502963b88cdc
7
+ data.tar.gz: 1a9ddb377d4c6744f5b1a5c4dc7e58b040afa558d34bfd30165dc97ecf586fe865bc31d09006c8c2cb8ff7368169ed20b7eb193710c03ba1f9d0522c42a21912
data/README.md CHANGED
@@ -180,3 +180,7 @@ Add `reorder_nodes` script.
180
180
  ### 0.0.24 ###
181
181
 
182
182
  - Add `Iroki::Main::iroki_job` runs Iroki w/o needing an output file (for `iroki.net`)
183
+
184
+ ### 0.0.25 ###
185
+
186
+ - Bugfix
@@ -150,7 +150,7 @@ module Iroki
150
150
  newick_f: nil)
151
151
 
152
152
  begin
153
- out_f = Tempfile.new
153
+ out_f = Tempfile.new "foo"
154
154
 
155
155
  self.main(color_branches: color_branches,
156
156
  color_taxa_names: color_taxa_names,
@@ -165,8 +165,10 @@ module Iroki
165
165
  newick_f: newick_f,
166
166
  out_f: out_f)
167
167
  ensure
168
- out_f.close
169
- out_f.unlink
168
+ if out_f
169
+ out_f.close
170
+ out_f.unlink
171
+ end
170
172
  end
171
173
  end
172
174
 
@@ -18,7 +18,7 @@
18
18
 
19
19
  # Library metadata
20
20
  module Iroki
21
- VERSION = "0.0.24"
21
+ VERSION = "0.0.25"
22
22
  COPYRIGHT = "2015 - 2016 Ryan Moore"
23
23
  CONTACT = "moorer@udel.edu"
24
24
  WEBSITE = "https://github.com/mooreryan/iroki"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iroki
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.24
4
+ version: 0.0.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Moore