phcdevworks_titleseo 0.1.0 → 0.2.0
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/MIT-LICENSE +1 -1
- data/README.md +3 -3
- data/app/views/layouts/phcdevworks_titleseo/application.html.erb +5 -2
- data/lib/phcdevworks_titleseo/version.rb +1 -1
- metadata +5 -5
- data/config/routes.rb +0 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10b94f2d9b2a9e2bb27832327c518f2691f9c7327d99848d2849f8c2cb7c2267
|
|
4
|
+
data.tar.gz: b90c1ffaf911b754ce88ee05936f09d919f74f4a63d4b70151897ee824439038
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc8667ccf2786a42eb137da401d7a06fc62f3a79970f192a6908fe9b48f9236e0f1e034fe8fcf8693fd1121a78a2840cae660faadd01ddd2e576f8d20b7a9522
|
|
7
|
+
data.tar.gz: fec6467c399fd1b99b6223142bd5433397a1d9616af97a71b289f18340068c091f72b411aafbc249c3900a8c70483fab722d6bb594c71f26d4dcb4319b6642eb
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
### PHCDevworks
|
|
1
|
+
### PHCDevworks Title/SEO for Rails6 (Page SEO, Titles & Title Tags)
|
|
2
2
|
|
|
3
3
|
PHCDevworks Title/SEO Rails6 engine with helpers for page headings, taglines, SEO and title tags.
|
|
4
4
|
|
|
5
5
|
* A dynamic way to add different page headings, taglines, SEO and title tags.
|
|
6
|
-
* Setup in seconds with only one line of code in the
|
|
7
|
-
* Save time and keep your rails projects manageable, tidy and secure.
|
|
6
|
+
* Setup in seconds with only one line of code in the application_controller file.
|
|
7
|
+
* Save time and keep your rails projects manageable, multiple views tidy and secure.
|
|
8
8
|
|
|
9
9
|
#### Step 1 - Add PHCDevworks-TitleSEO to your gemfile
|
|
10
10
|
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
<title>PHCDevworks Title/Seo</title>
|
|
5
6
|
<%= csrf_meta_tags %>
|
|
6
7
|
<%= csp_meta_tag %>
|
|
7
|
-
|
|
8
|
+
|
|
8
9
|
<%= stylesheet_link_tag "phcdevworks_titleseo/application", media: "all" %>
|
|
10
|
+
<%= javascript_include_tag "phcdevworks_titleseo/application" %>
|
|
11
|
+
|
|
9
12
|
</head>
|
|
10
13
|
<body>
|
|
11
14
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: phcdevworks_titleseo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- PHCDevworks
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-05-
|
|
11
|
+
date: 2019-05-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -52,7 +52,8 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
-
description: Rails view helpers
|
|
55
|
+
description: Rails view helpers making page headings, taglines, seo and title tags
|
|
56
|
+
easier to manage and standardize view coding process.
|
|
56
57
|
email:
|
|
57
58
|
- developers@phcdevworks.com
|
|
58
59
|
executables: []
|
|
@@ -74,7 +75,6 @@ files:
|
|
|
74
75
|
- app/views/phcdevworks_titleseo/_page_breadcrumbs.html.erb
|
|
75
76
|
- app/views/phcdevworks_titleseo/_page_seo.html.erb
|
|
76
77
|
- app/views/phcdevworks_titleseo/_page_titles.html.erb
|
|
77
|
-
- config/routes.rb
|
|
78
78
|
- lib/phcdevworks_titleseo.rb
|
|
79
79
|
- lib/phcdevworks_titleseo/engine.rb
|
|
80
80
|
- lib/phcdevworks_titleseo/version.rb
|
|
@@ -101,5 +101,5 @@ requirements: []
|
|
|
101
101
|
rubygems_version: 3.0.3
|
|
102
102
|
signing_key:
|
|
103
103
|
specification_version: 4
|
|
104
|
-
summary: PHCDevworks - Helpers -
|
|
104
|
+
summary: PHCDevworks - Helpers - Title/SEO
|
|
105
105
|
test_files: []
|
data/config/routes.rb
DELETED