iroki 0.0.18 → 0.0.19

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: 21d33bd022f3796b80244ebf68d6557d75c329f2
4
- data.tar.gz: 61ae669ebcc8899a497f05665b52d84744c67030
3
+ metadata.gz: d7215825faf52d3fac7519b74ed50f548f32a26d
4
+ data.tar.gz: 2c1099e7848d771595966d610a18130714a904bf
5
5
  SHA512:
6
- metadata.gz: b4c6471b518d1288878c0a4ecd6821930a63d43d4b300e23019f7042b09b0f920e8dd47172b507bcf031e5905497e560244f9ca1b30a45a65e72cb0bedc7d1af
7
- data.tar.gz: 50059be65b1398825bdbbc8f945d58db52e727d20061d372d0742752993f6e80ceca719e8a4db223885c89d423c784410131fba3e9ea2e03ed46c39882ca62d4
6
+ metadata.gz: be40fd327706b67f1100a66c90ce0dec9361250bbc03e1fa2d9ec389d845f6a3ea54d4592946c6734f788f248690b87a32410a08c094e53f2aa6330cd3f9d3b3
7
+ data.tar.gz: a744c93eab63c176cde75b6e0de6eb2817e85094c4411f44664cf280c00ef864117e6315191cec838d3fecf8bef1de80a379f8db8c229b7a325b2b76cf004c6d
data/README.md CHANGED
@@ -156,3 +156,7 @@ Add `reorder_nodes` script.
156
156
  ### 0.0.18 ###
157
157
 
158
158
  - `Iroki::Main::main` returns `:success` (for `iroki.net`)
159
+
160
+ ### 0.0.19 ###
161
+
162
+ - Remove assertion that color map cannot have entries that aren't in the newick file
@@ -156,8 +156,9 @@ module Iroki
156
156
  if name_to_iroki.has_key? pattern
157
157
  pattern = name_to_iroki[pattern]
158
158
  else
159
- assert false, "String '#{pattern}' has no match " +
160
- "in #{name_to_iroki.inspect}"
159
+ AbortIf::logger.warn "String '#{pattern}' has no " +
160
+ "match in " +
161
+ "#{name_to_iroki.inspect}"
161
162
  end
162
163
  else
163
164
  # TODO flag bad regexp
@@ -18,7 +18,7 @@
18
18
 
19
19
  # Library metadata
20
20
  module Iroki
21
- VERSION = "0.0.18"
21
+ VERSION = "0.0.19"
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.18
4
+ version: 0.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Moore