boom 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.markdown CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  ## head
4
4
 
5
+ ## 0.0.7
6
+ - Reverts item creation from stdin, since it broke regular item creation.
7
+
5
8
  ## 0.0.6
6
9
  - Searching for an item that doesn't exist doesn't murder puppies anymore
7
10
  (thanks [jimmycuadra](https://github.com/jimmycuadra)).
data/README.markdown CHANGED
@@ -45,9 +45,6 @@ can have multiple lists.
45
45
  $ boom urls github https://github.com
46
46
  Boom! "github" in "urls" is "https://github.com". Got it.
47
47
 
48
- # boom <list> <name> with stdin
49
- $ boom journal january < ~/Desktop/01-secret-journal.markdown
50
-
51
48
  ** Copy an item's value to your clipboard **
52
49
 
53
50
  $ boom github
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.6'
16
+ s.version = '0.0.7'
17
17
  s.date = '2011-01-05'
18
18
  s.rubyforge_project = 'boom'
19
19
 
data/lib/boom/command.rb CHANGED
@@ -77,8 +77,7 @@ module Boom
77
77
  return delete_list(command) if major == 'delete'
78
78
  return detail_list(command) unless major
79
79
  unless minor == 'delete'
80
- minor ||= $stdin.read
81
- return add_item(command,major,minor) if minor.to_s.length > 0
80
+ return add_item(command,major,minor) if minor
82
81
  return search_list_for_item(command, major)
83
82
  end
84
83
  end
data/lib/boom.rb CHANGED
@@ -15,7 +15,7 @@ require 'boom/list'
15
15
  require 'boom/storage'
16
16
 
17
17
  module Boom
18
- VERSION = '0.0.6'
18
+ VERSION = '0.0.7'
19
19
 
20
20
  def self.storage
21
21
  @storage ||= Boom::Storage.new
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: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 6
10
- version: 0.0.6
9
+ - 7
10
+ version: 0.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Zach Holman