verboice 0.2.0 → 0.2.1

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 (2) hide show
  1. data/lib/verboice/exception.rb +10 -0
  2. metadata +4 -3
@@ -0,0 +1,10 @@
1
+ class Verboice
2
+ class Exception < ::StandardError
3
+ attr_accessor :properties
4
+
5
+ def initialize(msg, properties = {})
6
+ super msg
7
+ @properties = properties
8
+ end
9
+ end
10
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: verboice
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - InSTEDD
@@ -55,6 +55,7 @@ extra_rdoc_files: []
55
55
 
56
56
  files:
57
57
  - lib/verboice.rb
58
+ - lib/verboice/exception.rb
58
59
  homepage: http://code.google.com/p/verboice-api-ruby
59
60
  licenses: []
60
61