muck-engine 3.2.3 → 3.2.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.2.3
1
+ 3.2.4
@@ -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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{muck-engine}
8
- s.version = "3.2.3"
8
+ s.version = "3.2.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Ball", "Joel Duffin"]
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: 9
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 2
9
- - 3
10
- version: 3.2.3
9
+ - 4
10
+ version: 3.2.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Justin Ball