social_stream-oauth2_server 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 251ce0c55a7d606917a53b1185c419bab2a61081
4
- data.tar.gz: dc7dfba201487864da4accbe25a2463d4b227944
3
+ metadata.gz: 4a2481fc5a862983d51b0b6b2caa31f146d2f434
4
+ data.tar.gz: a402db741d14604e9e101c1ae387f0be84dcd3b4
5
5
  SHA512:
6
- metadata.gz: 123d05299dd96d39abbe9b5b10c5533d284d699f7ba77aa9a3918bad25ac93dd8e7eb61d998dc2ba85f74d0bd473f8cf51876e10eb9c50ef2834807845116db8
7
- data.tar.gz: e33138e2ffdf7e465f17d32dffb716c399258fa5ffa507162a22ec939e8d1868ec49fcc064a2a4a20348a95c017953b98654196c854045c29734509663d7053b
6
+ metadata.gz: a4cf9aff07dc85e149b905141b2da0aebcc84a6421309b5d3761aeb4439d3294a525fc713eeff656b87ea5414983157eca19d880e2d54dec89b7febe5454f7ed
7
+ data.tar.gz: b8f9fdb661674d9eeeddd8d409ef5abeb852d17e80ea59d8ac1d78c2647106b7d06442201ba7e67355d4c755ce7821b8f8577415dbaa645598120c0c0ef71c37
@@ -1,4 +1,4 @@
1
- <article>
1
+ <article class="new_app">
2
2
  <%= form_for(@client || Site::Client.new) do |f| %>
3
3
 
4
4
  <% if f.object.errors.any? %>
@@ -1,50 +1,52 @@
1
- <%= render partial: 'toolbar/home' %>
1
+ <div class="oauth2_server">
2
+ <%= render partial: 'toolbar/home' %>
2
3
 
3
- <section id="oauth2_server">
4
- <h1>
5
- <%= @client.name %>
6
- </h1>
7
- <a class="pull-right" href="#">
8
- ir a tus demás aplicaciones
9
- </a>
10
- <hr class="soften">
11
- <div class="content">
12
- <a class="pull-left" href="#">
4
+ <section id="oauth2_server">
5
+ <h1>
6
+ <%= @client.name %>
7
+ </h1>
8
+ <a class="pull-right" href="#">
9
+ ir a tus demás aplicaciones
10
+ </a>
11
+ <hr class="soften">
12
+ <div class="content">
13
+ <a class="pull-left" href="#">
13
14
 
14
- <%= image_tag('logos/app-default.png', class: "media-object") %>
15
+ <%= image_tag('logos/app-default.png', class: "media-object") %>
15
16
 
16
17
 
17
-
18
- </a>
19
- <article class="media box">
20
- <div class="media-body">
21
- <h4>
22
- <%= Site::Client.human_attribute_name :url %>
23
- </h4>
24
- <div class="result">
25
- <%= link_to @client.url, @client.url%>
18
+
19
+ </a>
20
+ <article class="media box">
21
+ <div class="media-body">
22
+ <h4>
23
+ <%= Site::Client.human_attribute_name :url %>
24
+ </h4>
25
+ <div class="result">
26
+ <%= link_to @client.url, @client.url%>
27
+ </div>
28
+ <h4>
29
+ <%= Site::Client.human_attribute_name :callback_url %>
30
+ </h4>
31
+ <div class="result">
32
+ <%= @client.callback_url %>
33
+ </div>
34
+ <h4>
35
+ <%= Site::Client.human_attribute_name :id %>
36
+ </h4>
37
+ <div class="result">
38
+ <%= @client.id %>
39
+ </div>
40
+ <h4>
41
+ <%= Site::Client.human_attribute_name :secret %>
42
+ </h4>
43
+ <div class="result client_secret">
44
+ <p>
45
+ <%= @client.secret %>
46
+ </p>
47
+ </div>
26
48
  </div>
27
- <h4>
28
- <%= Site::Client.human_attribute_name :callback_url %>
29
- </h4>
30
- <div class="result">
31
- <%= @client.callback_url %>
32
- </div>
33
- <h4>
34
- <%= Site::Client.human_attribute_name :id %>
35
- </h4>
36
- <div class="result">
37
- <%= @client.id %>
38
- </div>
39
- <h4>
40
- <%= Site::Client.human_attribute_name :secret %>
41
- </h4>
42
- <div class="result client_secret">
43
- <p>
44
- <%= @client.secret %>
45
- </p>
46
- </div>
47
- </div>
48
- </article>
49
- </div>
50
- </section>
49
+ </article>
50
+ </div>
51
+ </section>
52
+ </div>
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Oauth2Server
3
- VERSION = "2.0.0".freeze
3
+ VERSION = "2.0.1".freeze
4
4
  end
5
5
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.files = `git ls-files`.split("\n")
13
13
 
14
14
  # Gem dependencies
15
- s.add_runtime_dependency('social_stream-base', '~> 2.0.0')
15
+ s.add_runtime_dependency('social_stream-base', '~> 2.0.2')
16
16
  s.add_runtime_dependency('rack-oauth2', '~> 1.0.0')
17
17
 
18
18
  s.add_development_dependency('rspec-rails', '~> 2.8.0')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: social_stream-oauth2_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antonio Tapiador
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-17 00:00:00.000000000 Z
12
+ date: 2013-05-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: social_stream-base
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - ~>
19
19
  - !ruby/object:Gem::Version
20
- version: 2.0.0
20
+ version: 2.0.2
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - ~>
26
26
  - !ruby/object:Gem::Version
27
- version: 2.0.0
27
+ version: 2.0.2
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: rack-oauth2
30
30
  requirement: !ruby/object:Gem::Requirement