rails_layout 1.0.27 → 1.0.28
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.
- checksums.yaml +4 -4
- data/CHANGELOG.textile +4 -0
- data/lib/generators/layout/navigation/navigation_generator.rb +13 -5
- data/lib/rails_layout/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e34a5527bcaa16a6da0667377342295fa77fec8
|
4
|
+
data.tar.gz: 1a989c4335301f2c027268b18d0265894b76bca1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5d2bb04acea7cae6d71d9745a0a15ba41401cebaa8aa034c8fb95b112c3e00790a9f153d5bde7c03f68626789677a745b20fb66fe8e9b1cde568ba2c0b9925f
|
7
|
+
data.tar.gz: cab3b7902c13feaee4d87ed4b1259c54b0c6e6e1f249c83159b9a8b3ebc23e8081fecaf72aa82b9c4031b0daab4920604a209bfe3ab9acc524aa5f0855c14193
|
data/CHANGELOG.textile
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
h1. CHANGELOG
|
2
2
|
|
3
|
+
h3. 1.0.28 November 4, 2015
|
4
|
+
|
5
|
+
* move navigation auth links to a new partial 'app/views/layouts/_nav_links_for_auth.html.erb'
|
6
|
+
|
3
7
|
h3. 1.0.27 October 18, 2015
|
4
8
|
|
5
9
|
* create a file '1st_load_framework' instead of 'framework_and_overrides' to force loading a framework first (the asset pipeline loads files in a tree in alpha order)
|
@@ -18,7 +18,7 @@ module Layout
|
|
18
18
|
append_file 'app/views/layouts/_navigation_links.html.erb', "<li><%= link_to 'Contact', new_contact_path %></li>\n" if File.exists?("app/views/contacts/new.html.#{ext}")
|
19
19
|
# DEVISE
|
20
20
|
if File.exists?('config/initializers/devise.rb')
|
21
|
-
|
21
|
+
create_file 'app/views/layouts/_nav_links_for_auth.html.erb' do <<-LINKS
|
22
22
|
<% if user_signed_in? %>
|
23
23
|
<li><%= link_to 'Edit account', edit_user_registration_path %></li>
|
24
24
|
<li><%= link_to 'Sign out', destroy_user_session_path, :method=>'delete' %></li>
|
@@ -31,7 +31,7 @@ LINKS
|
|
31
31
|
end
|
32
32
|
# OMNIAUTH
|
33
33
|
if File.exists?('config/initializers/omniauth.rb')
|
34
|
-
|
34
|
+
create_file 'app/views/layouts/_nav_links_for_auth.html.erb' do <<-LINKS
|
35
35
|
<% if user_signed_in? %>
|
36
36
|
<li><%= link_to 'Sign out', signout_path %></li>
|
37
37
|
<% else %>
|
@@ -44,7 +44,7 @@ LINKS
|
|
44
44
|
if Dir.glob("app/views/users/index.html.{#{ext},erb}").any?
|
45
45
|
if User.column_names.include? 'role'
|
46
46
|
# suitable for role-based authorization
|
47
|
-
append_file 'app/views/layouts/
|
47
|
+
append_file 'app/views/layouts/_nav_links_for_auth.html.erb' do <<-LINKS
|
48
48
|
<% if user_signed_in? %>
|
49
49
|
<% if current_user.try(:admin?) %>
|
50
50
|
<li><%= link_to 'Users', users_path %></li>
|
@@ -54,7 +54,7 @@ LINKS
|
|
54
54
|
end
|
55
55
|
else
|
56
56
|
# suitable for simple authentication
|
57
|
-
append_file 'app/views/layouts/
|
57
|
+
append_file 'app/views/layouts/_nav_links_for_auth.html.erb' do <<-LINKS
|
58
58
|
<% if user_signed_in? %>
|
59
59
|
<li><%= link_to 'Users', users_path %></li>
|
60
60
|
<% end %>
|
@@ -65,10 +65,18 @@ LINKS
|
|
65
65
|
# UPMIN (administrative dashboard)
|
66
66
|
if File.exists?('config/initializers/upmin.rb')
|
67
67
|
navlink = " <li><%= link_to 'Admin', '/admin' %></li>"
|
68
|
-
inject_into_file 'app/views/layouts/
|
68
|
+
inject_into_file 'app/views/layouts/_nav_links_for_auth.html.erb', navlink + "\n", :after => "<% if current_user.try(:admin?) %>\n"
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
+
def modify_layout_for_auth_links
|
73
|
+
return unless File.exists?('app/views/layouts/_nav_links_for_auth.html.erb')
|
74
|
+
app = ::Rails.application
|
75
|
+
ext = app.config.generators.options[:rails][:template_engine] || :erb
|
76
|
+
partial = "<%= render 'layouts/navigation_links' %>\n <%= render 'layouts/nav_links_for_auth' %>"
|
77
|
+
gsub_file "app/views/layouts/_navigation.html.#{ext}", /<%= render 'layouts\/navigation_links' %>/, partial
|
78
|
+
end
|
79
|
+
|
72
80
|
def add_tests
|
73
81
|
return unless File.exists?('config/initializers/devise.rb')
|
74
82
|
return unless File.exists?('spec/spec_helper.rb')
|
data/lib/rails_layout/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_layout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.28
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Kehoe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|