adhearsion-asterisk 1.1.0 → 1.1.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.
data/CHANGELOG.md CHANGED
@@ -1,11 +1,14 @@
1
+ # v1.1.1
2
+ * Fix error in header name for #agi_context
3
+
1
4
  # v1.1.0
2
- # Adhearsion::Call now exposes the AGI context through #agi_context
5
+ * Adhearsion::Call now exposes the AGI context through #agi_context
3
6
 
4
7
  # v1.0.0
5
- Stable release
8
+ * Stable release
6
9
 
7
10
  # v0.3.0 - 2012-03-29
8
- # Remove the monkey-patched version of `CallController#stream_file` since Punchblock now supports stopping output
11
+ * Remove the monkey-patched version of `CallController#stream_file` since Punchblock now supports stopping output
9
12
 
10
13
  # v0.2.0 - 2012-03-22
11
14
  * Update to work with Adhearsion 2.0.0.rc2
@@ -2,7 +2,7 @@ module Adhearsion
2
2
  module Asterisk
3
3
  module HasAgiContext
4
4
  def agi_context
5
- self[:agi_context]
5
+ self[:x_agi_context]
6
6
  end
7
7
  end
8
8
 
@@ -1,5 +1,5 @@
1
1
  module Adhearsion
2
2
  module Asterisk
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
@@ -3,7 +3,7 @@ require 'spec_helper'
3
3
  module Adhearsion::Asterisk
4
4
  describe HasAgiContext do
5
5
  let(:offer) do
6
- Punchblock::Event::Offer.new :headers => {:agi_context => 'foobar'}
6
+ Punchblock::Event::Offer.new :headers => {:x_agi_context => 'foobar'}
7
7
  end
8
8
 
9
9
  subject { Adhearsion::Call.new offer}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adhearsion-asterisk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-04-11 00:00:00.000000000 Z
13
+ date: 2012-04-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: adhearsion
@@ -280,7 +280,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
280
280
  version: '0'
281
281
  segments:
282
282
  - 0
283
- hash: -2660545808328016919
283
+ hash: -599135187931532102
284
284
  required_rubygems_version: !ruby/object:Gem::Requirement
285
285
  none: false
286
286
  requirements:
@@ -289,10 +289,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
289
289
  version: '0'
290
290
  segments:
291
291
  - 0
292
- hash: -2660545808328016919
292
+ hash: -599135187931532102
293
293
  requirements: []
294
294
  rubyforge_project: adhearsion-asterisk
295
- rubygems_version: 1.8.21
295
+ rubygems_version: 1.8.23
296
296
  signing_key:
297
297
  specification_version: 3
298
298
  summary: Asterisk specific features for Adhearsion