kindling 0.0.5 → 0.0.6

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/kindling.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{kindling}
8
- s.version = "0.0.5"
8
+ s.version = "0.0.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Wal McConnell"]
@@ -14,11 +14,11 @@ module Kindling
14
14
  Kindling::Request.rooms(self)
15
15
  end
16
16
 
17
- def speak(room, message)
17
+ def speak(room, message, type="Textmessage")
18
18
  if is_campfire_id?(room)
19
- Kindling::Request.speak(message, self, room)
19
+ Kindling::Request.speak(message, self, room, type)
20
20
  else
21
- Kindling::Request.speak(message, self, map_room_name(room))
21
+ Kindling::Request.speak(message, self, map_room_name(room), type)
22
22
  end
23
23
  end
24
24
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kindling
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wal McConnell