lederhosen 0.5.1 → 0.5.2
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.
- data/lederhosen.gemspec +1 -1
- data/lib/lederhosen/helpers.rb +3 -3
- data/lib/lederhosen/version.rb +1 -1
- metadata +3 -3
data/lederhosen.gemspec
CHANGED
data/lib/lederhosen/helpers.rb
CHANGED
@@ -95,11 +95,11 @@ module Lederhosen
|
|
95
95
|
|
96
96
|
# clstrnr_to_seed[seed_sequence_id] = clstr_nr
|
97
97
|
seed_to_clstrnr = Hash.new
|
98
|
-
|
99
|
-
pbar = ProgressBar.new 'loading uc file',
|
98
|
+
bytes = File.size(input)
|
99
|
+
pbar = ProgressBar.new 'loading uc file', bytes
|
100
100
|
File.open(input) do |handle|
|
101
101
|
handle.each do |line|
|
102
|
-
pbar.inc
|
102
|
+
pbar.inc handle.pos
|
103
103
|
next if line =~ /^#/ # skip comments
|
104
104
|
|
105
105
|
line = line.strip.split
|
data/lib/lederhosen/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lederhosen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 2
|
10
|
+
version: 0.5.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Austin G. Davis-Richardson
|