boom 0.0.1 → 0.0.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.
Files changed (4) hide show
  1. data/boom.gemspec +1 -1
  2. data/lib/boom/command.rb +1 -1
  3. data/lib/boom.rb +1 -1
  4. metadata +3 -3
data/boom.gemspec CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'boom'
16
- s.version = '0.0.1'
16
+ s.version = '0.0.2'
17
17
  s.date = '2010-11-24'
18
18
  s.rubyforge_project = 'boom'
19
19
 
data/lib/boom/command.rb CHANGED
@@ -94,7 +94,7 @@ module Boom
94
94
  #
95
95
  # Returns nothing.
96
96
  def list_detail(list_name)
97
- list = storage.lists.first { |list| list.name == list_name }
97
+ list = storage.lists.find { |list| list.name == list_name }
98
98
  list.items.sort{ |x,y| x.name <=> y.name }.each do |item|
99
99
  output " #{item.name}: #{item.value}"
100
100
  end
data/lib/boom.rb CHANGED
@@ -15,5 +15,5 @@ require 'boom/list'
15
15
  require 'boom/storage'
16
16
 
17
17
  module Boom
18
- VERSION = '0.0.1'
18
+ VERSION = '0.0.2'
19
19
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boom
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Zach Holman