botfly 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.4
1
+ 0.3.5
data/botfly.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{botfly}
8
- s.version = "0.3.4"
8
+ s.version = "0.3.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ryan Neufeld"]
@@ -71,7 +71,7 @@ describe CallbackContext do
71
71
  it { subject.respond_to?(:setup_presence, true).should be true }
72
72
  it "should set up instance methods for supplied values" do
73
73
  subject.send(:setup_presence, presence)
74
- subject.presence.should be :presence
74
+ subject.presence.should be presence
75
75
  subject.from.should be :from
76
76
  subject.show.should be :show
77
77
  subject.priority.should be :priority
@@ -85,7 +85,7 @@ describe CallbackContext do
85
85
  it { subject.respond_to?(:setup_old_presence, true).should be true }
86
86
  it "should set up instance methods for supplied values" do
87
87
  subject.send(:setup_old_presence, presence)
88
- subject.old_presence.should be :presence
88
+ subject.old_presence.should be presence
89
89
  subject.old_from.should be :from
90
90
  subject.old_show.should be :show
91
91
  subject.old_priority.should be :priority
@@ -77,6 +77,7 @@ describe Botfly::MUCClient do
77
77
  muc_client.send(:respond_to, :foo)
78
78
  end
79
79
  it "should tell xmpp4r not to send history" do
80
+ pending "inclusion of history option into xmpp4r"
80
81
  muc.should_receive(:join).with(anything, nil, hash_including(:history => false))
81
82
  Jabber::MUC::SimpleMUCClient.stub(:new).and_return(muc)
82
83
  muc_client.send(:connect)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 4
9
- version: 0.3.4
8
+ - 5
9
+ version: 0.3.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ryan Neufeld