party_boy 0.1.4 → 0.1.5
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/VERSION +1 -1
- data/lib/party_boy.rb +1 -1
- data/party_boy.gemspec +1 -1
- data/spec/party_boy_spec.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
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
|
-
|
|
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
data/spec/party_boy_spec.rb
CHANGED
|
@@ -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
|
|
125
|
+
a.extended_network.include?(e).should be_true
|
|
126
126
|
end
|
|
127
127
|
|
|
128
128
|
|