oauth_provider_engine 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/config/routes.rb +2 -2
- data/lib/oauth_provider_engine/version.rb +1 -1
- metadata +2 -2
data/config/routes.rb
CHANGED
@@ -4,8 +4,8 @@ Rails.application.routes.draw do
|
|
4
4
|
match "/oauth/request_token", :to => "oauth#request_token"
|
5
5
|
match "/oauth/access_token", :to => "oauth#access_token"
|
6
6
|
|
7
|
-
|
8
|
-
resources :applications
|
7
|
+
scope "/oauth" do
|
8
|
+
resources :applications, :as => "oauth_provider_engine_applications"
|
9
9
|
end
|
10
10
|
|
11
11
|
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: oauth_provider_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Jeff Ching
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-05-
|
13
|
+
date: 2012-05-16 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|