danski-ooh-auth 0.1.2 → 0.1.3
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/Rakefile +2 -2
- data/lib/ooh-auth.rb +2 -2
- data/readme.markdown +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -16,8 +16,8 @@ GEM_NAME = "ooh-auth"
|
|
|
16
16
|
AUTHOR = "Dan Glegg"
|
|
17
17
|
EMAIL = "dan@angryamoeba.co.uk"
|
|
18
18
|
HOMEPAGE = "http://github.com/danski/ooh-auth"
|
|
19
|
-
SUMMARY = "Merb Slice that
|
|
20
|
-
GEM_VERSION = "0.1.
|
|
19
|
+
SUMMARY = "Merb Slice that adds a full OAuth provider strategy to your application."
|
|
20
|
+
GEM_VERSION = "0.1.3"
|
|
21
21
|
|
|
22
22
|
spec = Gem::Specification.new do |s|
|
|
23
23
|
s.rubyforge_project = 'merb'
|
data/lib/ooh-auth.rb
CHANGED
|
@@ -46,8 +46,8 @@ if defined?(Merb::Plugins)
|
|
|
46
46
|
module OohAuth
|
|
47
47
|
|
|
48
48
|
# Slice metadata
|
|
49
|
-
self.description = "OohAuth is Merb slice that extends merb-auth-more with
|
|
50
|
-
self.version = "0.1.
|
|
49
|
+
self.description = "OohAuth is Merb slice that extends merb-auth-more with a full OAuth provider"
|
|
50
|
+
self.version = "0.1.3"
|
|
51
51
|
self.author = "Dan Glegg"
|
|
52
52
|
self.identifier = "ooh-auth"
|
|
53
53
|
|
data/readme.markdown
CHANGED
|
@@ -29,7 +29,7 @@ It depends on:
|
|
|
29
29
|
* merb-auth-more
|
|
30
30
|
* nokogiri (tests only)
|
|
31
31
|
* ruby-hmac
|
|
32
|
-
* Erb
|
|
32
|
+
* Erb OR Haml (Haml support thanks to [http://github.com/pius](Pius))
|
|
33
33
|
* datamapper **(we need your help to become ORM-agnostic)**
|
|
34
34
|
|
|
35
35
|
You should read:
|