taco_it 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/bin/taco +1 -1
  2. data/lib/taco/taco.rb +1 -1
  3. metadata +3 -3
data/bin/taco CHANGED
@@ -12,7 +12,7 @@ end
12
12
  require 'commander/import'
13
13
 
14
14
  program :name, 'taco'
15
- program :version, '1.4.0'
15
+ program :version, '1.4.1'
16
16
  program :description, 'simple command line issue tracking'
17
17
 
18
18
  command :init do |c|
data/lib/taco/taco.rb CHANGED
@@ -67,7 +67,7 @@ class Taco
67
67
  filter_match = if opts.fetch(:filters, []).size > 0
68
68
  conditions = opts[:filters].map do |filter|
69
69
  attr, val = filter.split(':')
70
- %Q|i.send("#{attr}") == "#{val}"|
70
+ %Q|i.send("#{attr}").to_s == "#{val}"|
71
71
  end.join ' && '
72
72
 
73
73
  # FIXME: eval-ing user input? madness!
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taco_it
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-07-29 00:00:00.000000000 Z
12
+ date: 2013-07-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: commander
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
65
  version: '0'
66
66
  requirements: []
67
67
  rubyforge_project:
68
- rubygems_version: 1.8.24
68
+ rubygems_version: 1.8.25
69
69
  signing_key:
70
70
  specification_version: 3
71
71
  summary: ! 'Taco Issue Tracker: A CLI Issue Tracker with JSON/filesystem backend'