muck-engine 3.2.3 → 3.2.4
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/test/muck_factories.rb +10 -0
- data/muck-engine.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.2.
|
|
1
|
+
3.2.4
|
data/lib/test/muck_factories.rb
CHANGED
|
@@ -266,4 +266,14 @@ Factory.define :membership do |f|
|
|
|
266
266
|
f.user {|a| a.association(:user)}
|
|
267
267
|
f.banned false
|
|
268
268
|
f.role "member"
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
Factory.define :authentication do |f|
|
|
272
|
+
f.authenticatable {|a| a.association(:user)}
|
|
273
|
+
f.provider 'twitter'
|
|
274
|
+
f.name { Factory.next(:name) }
|
|
275
|
+
f.uid { Factory.next(:uri) }
|
|
276
|
+
f.token { Factory.next(:uri) }
|
|
277
|
+
f.secret { Factory.next(:uri) }
|
|
278
|
+
f.raw_auth { Factory.next(:description) }
|
|
269
279
|
end
|
data/muck-engine.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: muck-engine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 7
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 3
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 3.2.
|
|
9
|
+
- 4
|
|
10
|
+
version: 3.2.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Justin Ball
|