party_boy 0.1.4 → 0.1.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.1.4
1
+ 0.1.5
data/lib/party_boy.rb CHANGED
@@ -131,7 +131,7 @@ module Party
131
131
  end
132
132
 
133
133
  def extended_network(type = nil)
134
- following.collect{|f| f.methods.include?('following') && f.following(type) || []}.flatten.uniq
134
+ network(type).collect{|f| f.methods.include?('network') && f.network(type) || []}.flatten.uniq
135
135
  end
136
136
 
137
137
  def method_missing(method, *args)
data/party_boy.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{party_boy}
8
- s.version = "0.1.4"
8
+ s.version = "0.1.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mike Nelson"]
@@ -122,7 +122,7 @@ describe "party_boy -- follower" do
122
122
 
123
123
  a.network.sort{|m,n| m.id <=> n.id}.should eql([b,c,e])
124
124
  a.extended_network.include?(d).should be_true
125
- a.extended_network.include?(e).should be_false
125
+ a.extended_network.include?(e).should be_true
126
126
  end
127
127
 
128
128
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: party_boy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Nelson