freeswitcher 0.4.0 → 0.4.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/AUTHORS CHANGED
@@ -2,14 +2,10 @@ Following persons have contributed to freeswitcher.
2
2
  (Sorted by number of submitted patches, then alphabetically)
3
3
 
4
4
  123 TJ Vanderpoel <bougy.man@gmail.com>
5
- 64 Jayson Vaughn <jayson@onedrop.home>
5
+ 99 Jayson Vaughn <vaughn.jayson@gmail.com>
6
6
  40 Michael Fellinger <m.fellinger@gmail.com>
7
- 15 Jayson Vaughn <jayson@onedrop.(none)>
8
- 9 Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
9
- 7 Jayson Vaughn <vaughn.jayson@gmail.com>
10
7
  6 Mikael Bjerkeland <mikael@consoll.no>
11
8
  4 foo <jvaughn@hellspass.nationwide-recovery.com>
12
9
  3 Kevin Berry <kevin@opensourcealchemist.com>
13
10
  2 freeswitch <freeswitch@falcon.(none)>
14
- 1 jayson vaughn <jayson@falcon.(none)>
15
11
  1 U-Paul-PC\Paul <Paul@Paul-PC.(none)>
data/CHANGELOG CHANGED
@@ -1,3 +1,15 @@
1
+ [840dfa1 | Wed Jun 03 23:46:14 UTC 2009] Jayson Vaughn <vaughn.jayson@gmail.com>
2
+
3
+ * Version 0.4.1
4
+
5
+ [26c4f0c | Wed Jun 03 23:42:52 UTC 2009] Jayson Vaughn <vaughn.jayson@gmail.com>
6
+
7
+ * s/queue << block/queue.unshift block/g
8
+
9
+ [6b589a3 | Wed Jun 03 23:13:15 UTC 2009] Jayson Vaughn <vaughn.jayson@gmail.com>
10
+
11
+ * Version 0.4.0
12
+
1
13
  [55753af | Wed Jun 03 23:10:22 UTC 2009] Jayson Vaughn <vaughn.jayson@gmail.com>
2
14
 
3
15
  * Updated outbound_event_socket.rb example
@@ -19,7 +19,7 @@ class OutboundDemo < FSR::Listener::Outbound
19
19
  FSR::Log.info "***Success, grabbed #{read_var.strip} from #{exten}"
20
20
  # Tell the caller what they entered
21
21
  # If you have mod_flite installed you should hear speech
22
- speak("Got the DTMF of: #{read_var}")
22
+ speak("Got the DTMF of: #{read_var}") { hangup }
23
23
  end
24
24
  end
25
25
 
data/freeswitcher.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{freeswitcher}
5
- s.version = "0.4.0"
5
+ s.version = "0.4.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jayson Vaughn", "Michael Fellinger", "Kevin Berry", "TJ Vanderpoel"]
@@ -16,7 +16,7 @@ module FSR
16
16
  SENDMSG_METHOD_DEFINITION = [
17
17
  "def %s(*args, &block)",
18
18
  " sendmsg super",
19
- " @queue << block if block_given?",
19
+ " @queue.unshift block if block_given?",
20
20
  "end"
21
21
  ].join("\n")
22
22
 
@@ -68,7 +68,7 @@ module FSR
68
68
 
69
69
  def update_session(&block)
70
70
  send_data("api uuid_dump #{@session.headers[:unique_id]}\n\n")
71
- @queue << block if block_given?
71
+ @queue.unshift block if block_given?
72
72
  end
73
73
 
74
74
  def next_step
data/lib/fsr/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module FSR
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
data/tasks/authors.rake CHANGED
@@ -14,6 +14,8 @@ task :authors do
14
14
  name, email = "Tim Morgan", "riscfuture@gmail.com"
15
15
  when "Michael Fellinger m.fellinger@gmail.com"
16
16
  name, email = "Michael Fellinger", "m.fellinger@gmail.com"
17
+ when /jayson/i
18
+ name, email = "Jayson Vaughn", "vaughn.jayson@gmail.com"
17
19
  end
18
20
 
19
21
  authors[[name, email]] += count.to_i
data/tasks/release.rake CHANGED
@@ -8,7 +8,7 @@ namespace :release do
8
8
  puts <<INSTRUCTIONS
9
9
  First add the relevant files:
10
10
 
11
- git add AUTHORS MANIFEST CHANGELOG #{name}.gemspec lib/#{name}/version.rb
11
+ git add AUTHORS MANIFEST CHANGELOG #{name}.gemspec lib/fsr/version.rb
12
12
 
13
13
  Then commit them, tag the commit, and push:
14
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: freeswitcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jayson Vaughn