lederhosen 0.5.5 → 0.5.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.
- data/lederhosen.gemspec +1 -1
- data/lib/lederhosen/tasks/add_names.rb +3 -0
- data/lib/lederhosen/version.rb +1 -1
- metadata +3 -3
data/lederhosen.gemspec
CHANGED
@@ -43,8 +43,10 @@ module Lederhosen
|
|
43
43
|
|
44
44
|
# map clusterid to name using blat output
|
45
45
|
ohai "loading BLAT output from #{blat}"
|
46
|
+
pbar = ProgressBar.new "loading", File.size(blat)
|
46
47
|
File.open(blat) do |handle|
|
47
48
|
handle.each do |line|
|
49
|
+
pbar.set handle.pos
|
48
50
|
line = line.strip.split
|
49
51
|
|
50
52
|
# Only get first match
|
@@ -68,6 +70,7 @@ module Lederhosen
|
|
68
70
|
clusterid_to_name[cluster_id] = level_name
|
69
71
|
end
|
70
72
|
end
|
73
|
+
pbar.finish
|
71
74
|
|
72
75
|
ohai "#{clusterid_to_name.keys.size} clusters were identified"
|
73
76
|
|
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: 7
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 6
|
10
|
+
version: 0.5.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Austin G. Davis-Richardson
|