meurio_ui 1.3.4 → 1.3.5

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: b210e19b183d0e0e70fe0fc38f305f81f4a160e6
4
- data.tar.gz: 7bc698c2075c30614e215a4b0911161d3199095f
3
+ metadata.gz: da94e3f7fac7d2410f80b8435dcb0266c96396c3
4
+ data.tar.gz: 53f03de2db494952f023c0bf6979af82bf6fe03d
5
5
  SHA512:
6
- metadata.gz: b178162b71677bd9ff14d3221dd2c3a603413a0aa9ba53db6b4b316ce3702923cfe093fe6c331d967e768247cabed193d10abe3c3c5791aae44144046ad73520
7
- data.tar.gz: ede00e490608cd5ad0071bffe0ecac82515a54e54bcd100c302191856a5f4acd3e712f40186ea3c068470343ba76e7c3e9d0833793b60d1e341382e15509bb40
6
+ metadata.gz: 92ca8c94a3afc635ca018802cdd7e62fd5ead7bc4d5622585ea8c2d17b0dc7ac9608ca7284cb1c4e0e65f3a8941cdedf541bae8d79cc3e48da6cb10d2556b942
7
+ data.tar.gz: 58fbd236b303ac26ce70d63aebddd2dc8f33036ac5d14cb66c855bb50f8ec9785ca74debabb8167aef8317d500edc26ac10279e9a162bd42a45c58a1fcd94b43
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,6 +1,5 @@
1
1
  $(function(){
2
- $('header.meurio_header .meurio_apps').hover(function(e){ $('.other_apps').toggle(); e.stopPropagation(); return false; });
3
-
4
- $('header.meurio_header .icon-triangle-down').click(function(e){ $('.current_user_links').toggle(); e.stopPropagation(); return false; });
2
+ $('.meurio_header .meurio_apps').hover(function(e){ $('.other_apps').toggle(); e.stopPropagation(); return false; });
3
+ $('.meurio_header .icon-triangle-down').click(function(e){ $('.current_user_links').toggle(); e.stopPropagation(); return false; });
5
4
  $(document).click(function(){ $('.current_user_links').hide(); });
6
5
  });
@@ -1,4 +1,4 @@
1
- header.meurio_header
1
+ .meurio_header
2
2
  font-size: 14px
3
3
  .row
4
4
  overflow: visible
@@ -1,8 +1,8 @@
1
- header.meurio_header
1
+ .meurio_header
2
2
  .meurio_logo_and_user_menu
3
3
  .row
4
- .meurio_logo= link_to image_tag('meurio.png'), 'http://meurio.org.br/'
5
- - if @app == :pdp or @app == :mr20
4
+ .meurio_logo= link_to image_tag('mrui_meurio.png'), 'http://meurio.org.br/'
5
+ - if @app == :pdp or @app == :mr20 or @app == :accounts
6
6
  .user_menu
7
7
  - if current_user.present?
8
8
  .current_user
@@ -13,6 +13,7 @@ header.meurio_header
13
13
  .current_user_links
14
14
  = link_to "Ver perfil", "http://meurio.org.br/users/#{current_user.id}"
15
15
  = link_to "Editar perfil", "http://accounts.meurio.org.br/users/#{current_user.id}/edit"
16
+ = link_to "Sair", "http://accounts.meurio.org.br/logout"
16
17
  = yield :current_user_links
17
18
  - else
18
19
  = link_to 'Entrar', "http://accounts.meurio.org.br/?redirect_url=#{request.url}", class: :hollow_btn
@@ -26,27 +27,27 @@ header.meurio_header
26
27
  - if @app == :mr20
27
28
  span Aplicativos
28
29
  - else
29
- = image_tag("#{@app}.png")
30
+ = image_tag("mrui_#{@app}.png")
30
31
  span= application_name(@app)
31
32
  span.icon-arrow-box
32
33
  .other_apps
33
34
  = link_to('http://meurio.org.br/', class: :meurio_app) do
34
- = image_tag('mr20.png')
35
+ = image_tag('mrui_mr20.png')
35
36
  span= application_name(:mr20)
36
37
  = link_to('http://paneladepressao.meurio.org.br/', class: :meurio_app) do
37
- = image_tag('pdp.png')
38
+ = image_tag('mrui_pdp.png')
38
39
  span= application_name(:pdp)
39
40
  = link_to('http://imagine.meurio.org.br/', class: :meurio_app) do
40
- = image_tag('imagine.png')
41
+ = image_tag('mrui_imagine.png')
41
42
  span= application_name(:imagine)
42
43
  = link_to('https://apoie.meurio.org.br/', class: :meurio_app) do
43
- = image_tag('apoie.png')
44
+ = image_tag('mrui_apoie.png')
44
45
  span= application_name(:apoie)
45
46
  = link_to('http://deolho.meurio.org.br/', class: :meurio_app) do
46
- = image_tag('deolho.png')
47
+ = image_tag('mrui_deolho.png')
47
48
  span= application_name(:deolho)
48
49
  = link_to('http://deguarda.meurio.org.br/', class: :meurio_app) do
49
- = image_tag("deguarda.png")
50
+ = image_tag("mrui_deguarda.png")
50
51
  span= application_name(:deguarda)
51
52
  .application_menu= yield :application_menu
52
53
  .clear
@@ -1,5 +1,5 @@
1
1
  module MeurioUi
2
2
  module Rails
3
- VERSION = "1.3.4"
3
+ VERSION = "1.3.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meurio_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.4
4
+ version: 1.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nícolas Iensen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-28 00:00:00.000000000 Z
11
+ date: 2013-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.3'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  description: Meu Rio UI is a Rails engine that provides user interface components
@@ -46,20 +46,20 @@ executables: []
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
- - .gitignore
49
+ - ".gitignore"
50
50
  - Gemfile
51
51
  - LICENSE.txt
52
52
  - README.md
53
53
  - Rakefile
54
- - app/assets/images/apoie.png
55
- - app/assets/images/deguarda.png
56
- - app/assets/images/deolho.png
57
- - app/assets/images/eventos.png
58
- - app/assets/images/imagine.png
59
- - app/assets/images/meurio.png
60
- - app/assets/images/mr20.png
61
- - app/assets/images/multitude.png
62
- - app/assets/images/pdp.png
54
+ - app/assets/images/mrui_apoie.png
55
+ - app/assets/images/mrui_deguarda.png
56
+ - app/assets/images/mrui_deolho.png
57
+ - app/assets/images/mrui_eventos.png
58
+ - app/assets/images/mrui_imagine.png
59
+ - app/assets/images/mrui_meurio.png
60
+ - app/assets/images/mrui_mr20.png
61
+ - app/assets/images/mrui_multitude.png
62
+ - app/assets/images/mrui_pdp.png
63
63
  - app/assets/javascripts/meurio_ui.js
64
64
  - app/assets/stylesheets/meurio_ui.css.sass
65
65
  - app/assets/stylesheets/meurio_ui/colors.css.sass
@@ -81,17 +81,17 @@ require_paths:
81
81
  - lib
82
82
  required_ruby_version: !ruby/object:Gem::Requirement
83
83
  requirements:
84
- - - '>='
84
+ - - ">="
85
85
  - !ruby/object:Gem::Version
86
86
  version: '0'
87
87
  required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  requirements:
89
- - - '>='
89
+ - - ">="
90
90
  - !ruby/object:Gem::Version
91
91
  version: '0'
92
92
  requirements: []
93
93
  rubyforge_project:
94
- rubygems_version: 2.0.7
94
+ rubygems_version: 2.1.10
95
95
  signing_key:
96
96
  specification_version: 4
97
97
  summary: Default UI elements for Meu Rio projects