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 CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "lederhosen"
8
- s.version = "0.5.5"
8
+ s.version = "0.5.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Austin G. Davis-Richardson"]
@@ -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
 
@@ -2,7 +2,7 @@ module Lederhosen
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 5
5
- PATCH = 5
5
+ PATCH = 6
6
6
 
7
7
  STRING = [MAJOR, MINOR, PATCH].join('.')
8
8
  end
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: 1
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 5
10
- version: 0.5.5
9
+ - 6
10
+ version: 0.5.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Austin G. Davis-Richardson