bioinform 0.1.11 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/TODO.txt +2 -0
  4. data/bioinform.gemspec +0 -6
  5. data/lib/bioinform/data_models/motif.rb +1 -1
  6. data/lib/bioinform/data_models/pm.rb +2 -1
  7. data/lib/bioinform/data_models/pwm.rb +4 -5
  8. data/lib/bioinform/support/multiline_squish.rb +1 -1
  9. data/lib/bioinform/support/third_part/active_support/core_ext/array/extract_options.rb +29 -0
  10. data/lib/bioinform/support/third_part/active_support/core_ext/hash/indifferent_access.rb +23 -0
  11. data/lib/bioinform/support/third_part/active_support/core_ext/hash/keys.rb +54 -0
  12. data/lib/bioinform/support/third_part/active_support/core_ext/module/attribute_accessors.rb +64 -0
  13. data/lib/bioinform/support/third_part/active_support/core_ext/object/try.rb +57 -0
  14. data/lib/bioinform/support/third_part/active_support/core_ext/string/access.rb +99 -0
  15. data/lib/bioinform/support/third_part/active_support/core_ext/string/behavior.rb +6 -0
  16. data/lib/bioinform/support/third_part/active_support/core_ext/string/filters.rb +49 -0
  17. data/lib/bioinform/support/third_part/active_support/core_ext/string/multibyte.rb +72 -0
  18. data/lib/bioinform/support/third_part/active_support/hash_with_indifferent_access.rb +178 -0
  19. data/lib/bioinform/support/third_part/active_support/multibyte/chars.rb +476 -0
  20. data/lib/bioinform/support/third_part/active_support/multibyte/exceptions.rb +8 -0
  21. data/lib/bioinform/support/third_part/active_support/multibyte/unicode.rb +393 -0
  22. data/lib/bioinform/support/third_part/active_support/multibyte/utils.rb +60 -0
  23. data/lib/bioinform/support/third_part/active_support/multibyte.rb +44 -0
  24. data/lib/bioinform/support.rb +2 -2
  25. data/lib/bioinform/version.rb +1 -1
  26. data/spec/spec_helper.rb +10 -20
  27. metadata +21 -77
@@ -0,0 +1,393 @@
1
+ # encoding: utf-8
2
+ module ActiveSupport
3
+ module Multibyte
4
+ module Unicode
5
+
6
+ extend self
7
+
8
+ # A list of all available normalization forms. See http://www.unicode.org/reports/tr15/tr15-29.html for more
9
+ # information about normalization.
10
+ NORMALIZATION_FORMS = [:c, :kc, :d, :kd]
11
+
12
+ # The Unicode version that is supported by the implementation
13
+ UNICODE_VERSION = '5.2.0'
14
+
15
+ # The default normalization used for operations that require normalization. It can be set to any of the
16
+ # normalizations in NORMALIZATION_FORMS.
17
+ #
18
+ # Example:
19
+ # ActiveSupport::Multibyte::Unicode.default_normalization_form = :c
20
+ attr_accessor :default_normalization_form
21
+ @default_normalization_form = :kc
22
+
23
+ # Hangul character boundaries and properties
24
+ HANGUL_SBASE = 0xAC00
25
+ HANGUL_LBASE = 0x1100
26
+ HANGUL_VBASE = 0x1161
27
+ HANGUL_TBASE = 0x11A7
28
+ HANGUL_LCOUNT = 19
29
+ HANGUL_VCOUNT = 21
30
+ HANGUL_TCOUNT = 28
31
+ HANGUL_NCOUNT = HANGUL_VCOUNT * HANGUL_TCOUNT
32
+ HANGUL_SCOUNT = 11172
33
+ HANGUL_SLAST = HANGUL_SBASE + HANGUL_SCOUNT
34
+ HANGUL_JAMO_FIRST = 0x1100
35
+ HANGUL_JAMO_LAST = 0x11FF
36
+
37
+ # All the unicode whitespace
38
+ WHITESPACE = [
39
+ (0x0009..0x000D).to_a, # White_Space # Cc [5] <control-0009>..<control-000D>
40
+ 0x0020, # White_Space # Zs SPACE
41
+ 0x0085, # White_Space # Cc <control-0085>
42
+ 0x00A0, # White_Space # Zs NO-BREAK SPACE
43
+ 0x1680, # White_Space # Zs OGHAM SPACE MARK
44
+ 0x180E, # White_Space # Zs MONGOLIAN VOWEL SEPARATOR
45
+ (0x2000..0x200A).to_a, # White_Space # Zs [11] EN QUAD..HAIR SPACE
46
+ 0x2028, # White_Space # Zl LINE SEPARATOR
47
+ 0x2029, # White_Space # Zp PARAGRAPH SEPARATOR
48
+ 0x202F, # White_Space # Zs NARROW NO-BREAK SPACE
49
+ 0x205F, # White_Space # Zs MEDIUM MATHEMATICAL SPACE
50
+ 0x3000, # White_Space # Zs IDEOGRAPHIC SPACE
51
+ ].flatten.freeze
52
+
53
+ # BOM (byte order mark) can also be seen as whitespace, it's a non-rendering character used to distinguish
54
+ # between little and big endian. This is not an issue in utf-8, so it must be ignored.
55
+ LEADERS_AND_TRAILERS = WHITESPACE + [65279] # ZERO-WIDTH NO-BREAK SPACE aka BOM
56
+
57
+ # Returns a regular expression pattern that matches the passed Unicode codepoints
58
+ def self.codepoints_to_pattern(array_of_codepoints) #:nodoc:
59
+ array_of_codepoints.collect{ |e| [e].pack 'U*' }.join('|')
60
+ end
61
+ TRAILERS_PAT = /(#{codepoints_to_pattern(LEADERS_AND_TRAILERS)})+\Z/u
62
+ LEADERS_PAT = /\A(#{codepoints_to_pattern(LEADERS_AND_TRAILERS)})+/u
63
+
64
+ # Unpack the string at codepoints boundaries. Raises an EncodingError when the encoding of the string isn't
65
+ # valid UTF-8.
66
+ #
67
+ # Example:
68
+ # Unicode.u_unpack('Café') # => [67, 97, 102, 233]
69
+ def u_unpack(string)
70
+ begin
71
+ string.unpack 'U*'
72
+ rescue ArgumentError
73
+ raise EncodingError, 'malformed UTF-8 character'
74
+ end
75
+ end
76
+
77
+ # Detect whether the codepoint is in a certain character class. Returns +true+ when it's in the specified
78
+ # character class and +false+ otherwise. Valid character classes are: <tt>:cr</tt>, <tt>:lf</tt>, <tt>:l</tt>,
79
+ # <tt>:v</tt>, <tt>:lv</tt>, <tt>:lvt</tt> and <tt>:t</tt>.
80
+ #
81
+ # Primarily used by the grapheme cluster support.
82
+ def in_char_class?(codepoint, classes)
83
+ classes.detect { |c| database.boundary[c] === codepoint } ? true : false
84
+ end
85
+
86
+ # Unpack the string at grapheme boundaries. Returns a list of character lists.
87
+ #
88
+ # Example:
89
+ # Unicode.g_unpack('क्षि') # => [[2325, 2381], [2359], [2367]]
90
+ # Unicode.g_unpack('Café') # => [[67], [97], [102], [233]]
91
+ def g_unpack(string)
92
+ codepoints = u_unpack(string)
93
+ unpacked = []
94
+ pos = 0
95
+ marker = 0
96
+ eoc = codepoints.length
97
+ while(pos < eoc)
98
+ pos += 1
99
+ previous = codepoints[pos-1]
100
+ current = codepoints[pos]
101
+ if (
102
+ # CR X LF
103
+ ( previous == database.boundary[:cr] and current == database.boundary[:lf] ) or
104
+ # L X (L|V|LV|LVT)
105
+ ( database.boundary[:l] === previous and in_char_class?(current, [:l,:v,:lv,:lvt]) ) or
106
+ # (LV|V) X (V|T)
107
+ ( in_char_class?(previous, [:lv,:v]) and in_char_class?(current, [:v,:t]) ) or
108
+ # (LVT|T) X (T)
109
+ ( in_char_class?(previous, [:lvt,:t]) and database.boundary[:t] === current ) or
110
+ # X Extend
111
+ (database.boundary[:extend] === current)
112
+ )
113
+ else
114
+ unpacked << codepoints[marker..pos-1]
115
+ marker = pos
116
+ end
117
+ end
118
+ unpacked
119
+ end
120
+
121
+ # Reverse operation of g_unpack.
122
+ #
123
+ # Example:
124
+ # Unicode.g_pack(Unicode.g_unpack('क्षि')) # => 'क्षि'
125
+ def g_pack(unpacked)
126
+ (unpacked.flatten).pack('U*')
127
+ end
128
+
129
+ # Re-order codepoints so the string becomes canonical.
130
+ def reorder_characters(codepoints)
131
+ length = codepoints.length- 1
132
+ pos = 0
133
+ while pos < length do
134
+ cp1, cp2 = database.codepoints[codepoints[pos]], database.codepoints[codepoints[pos+1]]
135
+ if (cp1.combining_class > cp2.combining_class) && (cp2.combining_class > 0)
136
+ codepoints[pos..pos+1] = cp2.code, cp1.code
137
+ pos += (pos > 0 ? -1 : 1)
138
+ else
139
+ pos += 1
140
+ end
141
+ end
142
+ codepoints
143
+ end
144
+
145
+ # Decompose composed characters to the decomposed form.
146
+ def decompose_codepoints(type, codepoints)
147
+ codepoints.inject([]) do |decomposed, cp|
148
+ # if it's a hangul syllable starter character
149
+ if HANGUL_SBASE <= cp and cp < HANGUL_SLAST
150
+ sindex = cp - HANGUL_SBASE
151
+ ncp = [] # new codepoints
152
+ ncp << HANGUL_LBASE + sindex / HANGUL_NCOUNT
153
+ ncp << HANGUL_VBASE + (sindex % HANGUL_NCOUNT) / HANGUL_TCOUNT
154
+ tindex = sindex % HANGUL_TCOUNT
155
+ ncp << (HANGUL_TBASE + tindex) unless tindex == 0
156
+ decomposed.concat ncp
157
+ # if the codepoint is decomposable in with the current decomposition type
158
+ elsif (ncp = database.codepoints[cp].decomp_mapping) and (!database.codepoints[cp].decomp_type || type == :compatability)
159
+ decomposed.concat decompose_codepoints(type, ncp.dup)
160
+ else
161
+ decomposed << cp
162
+ end
163
+ end
164
+ end
165
+
166
+ # Compose decomposed characters to the composed form.
167
+ def compose_codepoints(codepoints)
168
+ pos = 0
169
+ eoa = codepoints.length - 1
170
+ starter_pos = 0
171
+ starter_char = codepoints[0]
172
+ previous_combining_class = -1
173
+ while pos < eoa
174
+ pos += 1
175
+ lindex = starter_char - HANGUL_LBASE
176
+ # -- Hangul
177
+ if 0 <= lindex and lindex < HANGUL_LCOUNT
178
+ vindex = codepoints[starter_pos+1] - HANGUL_VBASE rescue vindex = -1
179
+ if 0 <= vindex and vindex < HANGUL_VCOUNT
180
+ tindex = codepoints[starter_pos+2] - HANGUL_TBASE rescue tindex = -1
181
+ if 0 <= tindex and tindex < HANGUL_TCOUNT
182
+ j = starter_pos + 2
183
+ eoa -= 2
184
+ else
185
+ tindex = 0
186
+ j = starter_pos + 1
187
+ eoa -= 1
188
+ end
189
+ codepoints[starter_pos..j] = (lindex * HANGUL_VCOUNT + vindex) * HANGUL_TCOUNT + tindex + HANGUL_SBASE
190
+ end
191
+ starter_pos += 1
192
+ starter_char = codepoints[starter_pos]
193
+ # -- Other characters
194
+ else
195
+ current_char = codepoints[pos]
196
+ current = database.codepoints[current_char]
197
+ if current.combining_class > previous_combining_class
198
+ if ref = database.composition_map[starter_char]
199
+ composition = ref[current_char]
200
+ else
201
+ composition = nil
202
+ end
203
+ unless composition.nil?
204
+ codepoints[starter_pos] = composition
205
+ starter_char = composition
206
+ codepoints.delete_at pos
207
+ eoa -= 1
208
+ pos -= 1
209
+ previous_combining_class = -1
210
+ else
211
+ previous_combining_class = current.combining_class
212
+ end
213
+ else
214
+ previous_combining_class = current.combining_class
215
+ end
216
+ if current.combining_class == 0
217
+ starter_pos = pos
218
+ starter_char = codepoints[pos]
219
+ end
220
+ end
221
+ end
222
+ codepoints
223
+ end
224
+
225
+ # Replaces all ISO-8859-1 or CP1252 characters by their UTF-8 equivalent resulting in a valid UTF-8 string.
226
+ #
227
+ # Passing +true+ will forcibly tidy all bytes, assuming that the string's encoding is entirely CP1252 or ISO-8859-1.
228
+ def tidy_bytes(string, force = false)
229
+ if force
230
+ return string.unpack("C*").map do |b|
231
+ tidy_byte(b)
232
+ end.flatten.compact.pack("C*").unpack("U*").pack("U*")
233
+ end
234
+
235
+ bytes = string.unpack("C*")
236
+ conts_expected = 0
237
+ last_lead = 0
238
+
239
+ bytes.each_index do |i|
240
+
241
+ byte = bytes[i]
242
+ is_cont = byte > 127 && byte < 192
243
+ is_lead = byte > 191 && byte < 245
244
+ is_unused = byte > 240
245
+ is_restricted = byte > 244
246
+
247
+ # Impossible or highly unlikely byte? Clean it.
248
+ if is_unused || is_restricted
249
+ bytes[i] = tidy_byte(byte)
250
+ elsif is_cont
251
+ # Not expecting continuation byte? Clean up. Otherwise, now expect one less.
252
+ conts_expected == 0 ? bytes[i] = tidy_byte(byte) : conts_expected -= 1
253
+ else
254
+ if conts_expected > 0
255
+ # Expected continuation, but got ASCII or leading? Clean backwards up to
256
+ # the leading byte.
257
+ (1..(i - last_lead)).each {|j| bytes[i - j] = tidy_byte(bytes[i - j])}
258
+ conts_expected = 0
259
+ end
260
+ if is_lead
261
+ # Final byte is leading? Clean it.
262
+ if i == bytes.length - 1
263
+ bytes[i] = tidy_byte(bytes.last)
264
+ else
265
+ # Valid leading byte? Expect continuations determined by position of
266
+ # first zero bit, with max of 3.
267
+ conts_expected = byte < 224 ? 1 : byte < 240 ? 2 : 3
268
+ last_lead = i
269
+ end
270
+ end
271
+ end
272
+ end
273
+ bytes.empty? ? "" : bytes.flatten.compact.pack("C*").unpack("U*").pack("U*")
274
+ end
275
+
276
+ # Returns the KC normalization of the string by default. NFKC is considered the best normalization form for
277
+ # passing strings to databases and validations.
278
+ #
279
+ # * <tt>string</tt> - The string to perform normalization on.
280
+ # * <tt>form</tt> - The form you want to normalize in. Should be one of the following:
281
+ # <tt>:c</tt>, <tt>:kc</tt>, <tt>:d</tt>, or <tt>:kd</tt>. Default is
282
+ # ActiveSupport::Multibyte.default_normalization_form
283
+ def normalize(string, form=nil)
284
+ form ||= @default_normalization_form
285
+ # See http://www.unicode.org/reports/tr15, Table 1
286
+ codepoints = u_unpack(string)
287
+ case form
288
+ when :d
289
+ reorder_characters(decompose_codepoints(:canonical, codepoints))
290
+ when :c
291
+ compose_codepoints(reorder_characters(decompose_codepoints(:canonical, codepoints)))
292
+ when :kd
293
+ reorder_characters(decompose_codepoints(:compatability, codepoints))
294
+ when :kc
295
+ compose_codepoints(reorder_characters(decompose_codepoints(:compatability, codepoints)))
296
+ else
297
+ raise ArgumentError, "#{form} is not a valid normalization variant", caller
298
+ end.pack('U*')
299
+ end
300
+
301
+ def apply_mapping(string, mapping) #:nodoc:
302
+ u_unpack(string).map do |codepoint|
303
+ cp = database.codepoints[codepoint]
304
+ if cp and (ncp = cp.send(mapping)) and ncp > 0
305
+ ncp
306
+ else
307
+ codepoint
308
+ end
309
+ end.pack('U*')
310
+ end
311
+
312
+ # Holds data about a codepoint in the Unicode database
313
+ class Codepoint
314
+ attr_accessor :code, :combining_class, :decomp_type, :decomp_mapping, :uppercase_mapping, :lowercase_mapping
315
+ end
316
+
317
+ # Holds static data from the Unicode database
318
+ class UnicodeDatabase
319
+ ATTRIBUTES = :codepoints, :composition_exclusion, :composition_map, :boundary, :cp1252
320
+
321
+ attr_writer(*ATTRIBUTES)
322
+
323
+ def initialize
324
+ @codepoints = Hash.new(Codepoint.new)
325
+ @composition_exclusion = []
326
+ @composition_map = {}
327
+ @boundary = {}
328
+ @cp1252 = {}
329
+ end
330
+
331
+ # Lazy load the Unicode database so it's only loaded when it's actually used
332
+ ATTRIBUTES.each do |attr_name|
333
+ class_eval(<<-EOS, __FILE__, __LINE__ + 1)
334
+ def #{attr_name} # def codepoints
335
+ load # load
336
+ @#{attr_name} # @codepoints
337
+ end # end
338
+ EOS
339
+ end
340
+
341
+ # Loads the Unicode database and returns all the internal objects of UnicodeDatabase.
342
+ def load
343
+ begin
344
+ @codepoints, @composition_exclusion, @composition_map, @boundary, @cp1252 = File.open(self.class.filename, 'rb') { |f| Marshal.load f.read }
345
+ rescue Exception => e
346
+ raise IOError.new("Couldn't load the Unicode tables for UTF8Handler (#{e.message}), ActiveSupport::Multibyte is unusable")
347
+ end
348
+
349
+ # Redefine the === method so we can write shorter rules for grapheme cluster breaks
350
+ @boundary.each do |k,_|
351
+ @boundary[k].instance_eval do
352
+ def ===(other)
353
+ detect { |i| i === other } ? true : false
354
+ end
355
+ end if @boundary[k].kind_of?(Array)
356
+ end
357
+
358
+ # define attr_reader methods for the instance variables
359
+ class << self
360
+ attr_reader(*ATTRIBUTES)
361
+ end
362
+ end
363
+
364
+ # Returns the directory in which the data files are stored
365
+ def self.dirname
366
+ File.dirname(__FILE__) + '/../values/'
367
+ end
368
+
369
+ # Returns the filename for the data file for this version
370
+ def self.filename
371
+ File.expand_path File.join(dirname, "unicode_tables.dat")
372
+ end
373
+ end
374
+
375
+ private
376
+
377
+ def tidy_byte(byte)
378
+ if byte < 160
379
+ [database.cp1252[byte] || byte].pack("U").unpack("C*")
380
+ elsif byte < 192
381
+ [194, byte]
382
+ else
383
+ [195, byte - 64]
384
+ end
385
+ end
386
+
387
+ def database
388
+ @database ||= UnicodeDatabase.new
389
+ end
390
+
391
+ end
392
+ end
393
+ end
@@ -0,0 +1,60 @@
1
+ # encoding: utf-8
2
+
3
+ module ActiveSupport #:nodoc:
4
+ module Multibyte #:nodoc:
5
+ if Kernel.const_defined?(:Encoding)
6
+ # Returns a regular expression that matches valid characters in the current encoding
7
+ def self.valid_character
8
+ VALID_CHARACTER[Encoding.default_external.to_s]
9
+ end
10
+ else
11
+ def self.valid_character
12
+ case $KCODE
13
+ when 'UTF8'
14
+ VALID_CHARACTER['UTF-8']
15
+ when 'SJIS'
16
+ VALID_CHARACTER['Shift_JIS']
17
+ end
18
+ end
19
+ end
20
+
21
+ if 'string'.respond_to?(:valid_encoding?)
22
+ # Verifies the encoding of a string
23
+ def self.verify(string)
24
+ string.valid_encoding?
25
+ end
26
+ else
27
+ def self.verify(string)
28
+ if expression = valid_character
29
+ # Splits the string on character boundaries, which are determined based on $KCODE.
30
+ string.split(//).all? { |c| expression =~ c }
31
+ else
32
+ true
33
+ end
34
+ end
35
+ end
36
+
37
+ # Verifies the encoding of the string and raises an exception when it's not valid
38
+ def self.verify!(string)
39
+ raise EncodingError.new("Found characters with invalid encoding") unless verify(string)
40
+ end
41
+
42
+ if 'string'.respond_to?(:force_encoding)
43
+ # Removes all invalid characters from the string.
44
+ #
45
+ # Note: this method is a no-op in Ruby 1.9
46
+ def self.clean(string)
47
+ string
48
+ end
49
+ else
50
+ def self.clean(string)
51
+ if expression = valid_character
52
+ # Splits the string on character boundaries, which are determined based on $KCODE.
53
+ string.split(//).grep(expression).join
54
+ else
55
+ string
56
+ end
57
+ end
58
+ end
59
+ end
60
+ end
@@ -0,0 +1,44 @@
1
+ # encoding: utf-8
2
+ require_relative 'core_ext/module/attribute_accessors'
3
+
4
+ module ActiveSupport #:nodoc:
5
+ module Multibyte
6
+ autoload :EncodingError, 'bioinform/support/third_part/active_support/multibyte/exceptions'
7
+ autoload :Chars, 'bioinform/support/third_part/active_support/multibyte/chars'
8
+ autoload :Unicode, 'bioinform/support/third_part/active_support/multibyte/unicode'
9
+
10
+ # The proxy class returned when calling mb_chars. You can use this accessor to configure your own proxy
11
+ # class so you can support other encodings. See the ActiveSupport::Multibyte::Chars implementation for
12
+ # an example how to do this.
13
+ #
14
+ # Example:
15
+ # ActiveSupport::Multibyte.proxy_class = CharsForUTF32
16
+ def self.proxy_class=(klass)
17
+ @proxy_class = klass
18
+ end
19
+
20
+ # Returns the current proxy class
21
+ def self.proxy_class
22
+ @proxy_class ||= ActiveSupport::Multibyte::Chars
23
+ end
24
+
25
+ # Regular expressions that describe valid byte sequences for a character
26
+ VALID_CHARACTER = {
27
+ # Borrowed from the Kconv library by Shinji KONO - (also as seen on the W3C site)
28
+ 'UTF-8' => /\A(?:
29
+ [\x00-\x7f] |
30
+ [\xc2-\xdf] [\x80-\xbf] |
31
+ \xe0 [\xa0-\xbf] [\x80-\xbf] |
32
+ [\xe1-\xef] [\x80-\xbf] [\x80-\xbf] |
33
+ \xf0 [\x90-\xbf] [\x80-\xbf] [\x80-\xbf] |
34
+ [\xf1-\xf3] [\x80-\xbf] [\x80-\xbf] [\x80-\xbf] |
35
+ \xf4 [\x80-\x8f] [\x80-\xbf] [\x80-\xbf])\z /xn,
36
+ # Quick check for valid Shift-JIS characters, disregards the odd-even pairing
37
+ 'Shift_JIS' => /\A(?:
38
+ [\x00-\x7e\xa1-\xdf] |
39
+ [\x81-\x9f\xe0-\xef] [\x40-\x7e\x80-\x9e\x9f-\xfc])\z /xn
40
+ }
41
+ end
42
+ end
43
+
44
+ require_relative 'multibyte/utils'
@@ -1,5 +1,5 @@
1
- require 'active_support/core_ext/string/filters'
2
- require 'active_support/core_ext/hash/indifferent_access'
1
+ require_relative 'support/third_part/active_support/core_ext/string/filters'
2
+ require_relative 'support/third_part/active_support/core_ext/hash/indifferent_access'
3
3
 
4
4
  require_relative 'support/collect_hash'
5
5
  require_relative 'support/delete_many'
@@ -1,3 +1,3 @@
1
1
  module Bioinform
2
- VERSION = "0.1.11"
2
+ VERSION = "0.1.12"
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,23 +1,13 @@
1
- require 'rubygems'
2
- require 'spork'
3
- #uncomment the following line to use spork with the debugger
4
- #require 'spork/ext/ruby-debug'
5
-
6
- Spork.prefork do
7
- $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
8
- $LOAD_PATH.unshift File.dirname(__FILE__)
1
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
2
+ $LOAD_PATH.unshift File.dirname(__FILE__)
9
3
 
10
- require 'rspec'
11
- require 'rspec-given'
4
+ require 'rspec'
5
+ require 'rspec-given'
12
6
 
13
- require 'fileutils'
14
- require 'stringio'
15
- require 'fabrication'
7
+ require 'fileutils'
8
+ require 'stringio'
9
+ require 'fabrication'
16
10
 
17
- require 'fakefs/spec_helpers'
18
- end
19
-
20
- Spork.each_run do
21
- require 'spec_helper_source'
22
- Fabrication.clear_definitions
23
- end
11
+ require 'fakefs/spec_helpers'
12
+ require 'spec_helper_source'
13
+ Fabrication.clear_definitions
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bioinform
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Vorontsov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-04-30 00:00:00.000000000 Z
11
+ date: 2013-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: activesupport
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - '>='
18
- - !ruby/object:Gem::Version
19
- version: 3.0.0
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - '>='
25
- - !ruby/object:Gem::Version
26
- version: 3.0.0
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: docopt
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -38,62 +24,6 @@ dependencies:
38
24
  - - '='
39
25
  - !ruby/object:Gem::Version
40
26
  version: 0.5.0
41
- - !ruby/object:Gem::Dependency
42
- name: fakefs
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ~>
46
- - !ruby/object:Gem::Version
47
- version: 0.4.2
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ~>
53
- - !ruby/object:Gem::Version
54
- version: 0.4.2
55
- - !ruby/object:Gem::Dependency
56
- name: fabrication
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ~>
60
- - !ruby/object:Gem::Version
61
- version: 2.5.0
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ~>
67
- - !ruby/object:Gem::Version
68
- version: 2.5.0
69
- - !ruby/object:Gem::Dependency
70
- name: rspec
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - '>='
74
- - !ruby/object:Gem::Version
75
- version: '2.0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - '>='
81
- - !ruby/object:Gem::Version
82
- version: '2.0'
83
- - !ruby/object:Gem::Dependency
84
- name: rspec-given
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - '>='
88
- - !ruby/object:Gem::Version
89
- version: 2.0.0
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - '>='
95
- - !ruby/object:Gem::Version
96
- version: 2.0.0
97
27
  description: A bunch of useful classes for bioinformatics
98
28
  email:
99
29
  - prijutme4ty@gmail.com
@@ -104,7 +34,7 @@ executables:
104
34
  extensions: []
105
35
  extra_rdoc_files: []
106
36
  files:
107
- - .gitignore
37
+ - ".gitignore"
108
38
  - Gemfile
109
39
  - Guardfile
110
40
  - LICENSE
@@ -157,6 +87,21 @@ files:
157
87
  - lib/bioinform/support/partial_sums.rb
158
88
  - lib/bioinform/support/same_by.rb
159
89
  - lib/bioinform/support/strip_doc.rb
90
+ - lib/bioinform/support/third_part/active_support/core_ext/array/extract_options.rb
91
+ - lib/bioinform/support/third_part/active_support/core_ext/hash/indifferent_access.rb
92
+ - lib/bioinform/support/third_part/active_support/core_ext/hash/keys.rb
93
+ - lib/bioinform/support/third_part/active_support/core_ext/module/attribute_accessors.rb
94
+ - lib/bioinform/support/third_part/active_support/core_ext/object/try.rb
95
+ - lib/bioinform/support/third_part/active_support/core_ext/string/access.rb
96
+ - lib/bioinform/support/third_part/active_support/core_ext/string/behavior.rb
97
+ - lib/bioinform/support/third_part/active_support/core_ext/string/filters.rb
98
+ - lib/bioinform/support/third_part/active_support/core_ext/string/multibyte.rb
99
+ - lib/bioinform/support/third_part/active_support/hash_with_indifferent_access.rb
100
+ - lib/bioinform/support/third_part/active_support/multibyte.rb
101
+ - lib/bioinform/support/third_part/active_support/multibyte/chars.rb
102
+ - lib/bioinform/support/third_part/active_support/multibyte/exceptions.rb
103
+ - lib/bioinform/support/third_part/active_support/multibyte/unicode.rb
104
+ - lib/bioinform/support/third_part/active_support/multibyte/utils.rb
160
105
  - lib/bioinform/version.rb
161
106
  - spec/cli/cli_spec.rb
162
107
  - spec/cli/convert_motif_spec.rb
@@ -225,17 +170,17 @@ require_paths:
225
170
  - lib
226
171
  required_ruby_version: !ruby/object:Gem::Requirement
227
172
  requirements:
228
- - - '>='
173
+ - - ">="
229
174
  - !ruby/object:Gem::Version
230
175
  version: '0'
231
176
  required_rubygems_version: !ruby/object:Gem::Requirement
232
177
  requirements:
233
- - - '>='
178
+ - - ">="
234
179
  - !ruby/object:Gem::Version
235
180
  version: '0'
236
181
  requirements: []
237
182
  rubyforge_project:
238
- rubygems_version: 2.0.3
183
+ rubygems_version: 2.1.4
239
184
  signing_key:
240
185
  specification_version: 4
241
186
  summary: Classes for work with different input formats of positional matrices and
@@ -301,4 +246,3 @@ test_files:
301
246
  - spec/support/multiline_squish_spec.rb
302
247
  - spec/support/partial_sums_spec.rb
303
248
  - spec/support/same_by_spec.rb
304
- has_rdoc: