phcdevworks_titleseo 3.2.1 → 3.2.2

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
  SHA256:
3
- metadata.gz: 93fbe0cfad147beb1bcb61becdff43b367ea507a9d4785d7db198674fc964d07
4
- data.tar.gz: 9c685f0c4e84185a83ade0dc90a55e91bc89aad99929567d829a5d78f34e0908
3
+ metadata.gz: cc15438e4a43adb7bbb1ae19b9b09b02f503e67e757d9766ab3ff731212e6609
4
+ data.tar.gz: 55271957bb4f7a68b63c7a3f0a526da1c2112863eca1ea7ae37540813ecf2b03
5
5
  SHA512:
6
- metadata.gz: 22b6a7c49edc235c1cdc9bc909d6b3c4603e416d9e5ca9c4e2ecbdeb3b9e5e64387cfa3371c678d799fe80077909d04a7436e801fc4ea3120a5fef65ba156e49
7
- data.tar.gz: 98287e59d3cee0d2c5fc70a5f35f7197303668af62e91b248b68f9ccd95aba1c9ef1f8c731e4b7edced87f3763868113e7dbb61b2ad671a4ca8555fde9263bbe
6
+ metadata.gz: 1c87c9b8acfd7870c52135c2223986dd47967e8147d975a593b0a18814f30966c2d746ff182248710fc3c052633b4be46cf0e0970ad04b1887d5ad7b43f737d3
7
+ data.tar.gz: a18a4bc58cafee2373a6d8221b9291b8783ac921229e1d07d8340748fb1023523913be8d9086b4a4c39d081a661acb573851080bbefad6204f7d2d97ba731151
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2010-2020 BradPotts - PHCDevworks
1
+ Copyright 2021 BradPotts
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -17,4 +17,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
17
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
18
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
19
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -1,32 +1,8 @@
1
- begin
2
- require 'bundler/setup'
3
- rescue LoadError
4
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
- end
1
+ require "bundler/setup"
6
2
 
7
- require 'rdoc/task'
3
+ APP_RAKEFILE = File.expand_path("spec/test_app/Rakefile", __dir__)
4
+ load "rails/tasks/engine.rake"
8
5
 
9
- RDoc::Task.new(:rdoc) do |rdoc|
10
- rdoc.rdoc_dir = 'rdoc'
11
- rdoc.title = 'PhcdevworksTitleseo'
12
- rdoc.options << '--line-numbers'
13
- rdoc.rdoc_files.include('README.md')
14
- rdoc.rdoc_files.include('lib/**/*.rb')
15
- end
6
+ load "rails/tasks/statistics.rake"
16
7
 
17
- APP_RAKEFILE = File.expand_path("test/test_app/Rakefile", __dir__)
18
- load 'rails/tasks/engine.rake'
19
-
20
- load 'rails/tasks/statistics.rake'
21
-
22
- require 'bundler/gem_tasks'
23
-
24
- require 'rake/testtask'
25
-
26
- Rake::TestTask.new(:test) do |t|
27
- t.libs << 'test'
28
- t.pattern = 'test/**/*_test.rb'
29
- t.verbose = false
30
- end
31
-
32
- task default: :test
8
+ require "bundler/gem_tasks"
@@ -1,3 +1,4 @@
1
+ require "phcdevworks_titleseo/version"
1
2
  require "phcdevworks_titleseo/engine"
2
3
 
3
4
  module PhcdevworksTitleseo
@@ -1,3 +1,3 @@
1
1
  module PhcdevworksTitleseo
2
- VERSION = "3.2.1"
2
+ VERSION = '3.2.2'
3
3
  end
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: 3.2.1
4
+ version: 3.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - PHCDevworks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-07 00:00:00.000000000 Z
11
+ date: 2021-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -17,9 +17,6 @@ dependencies:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '6.1'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 6.1.1
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +24,6 @@ dependencies:
27
24
  - - "~>"
28
25
  - !ruby/object:Gem::Version
29
26
  version: '6.1'
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 6.1.1
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: phcthemes_admin_panel_pack
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -75,7 +69,7 @@ dependencies:
75
69
  description: Rails view helpers making page headings, taglines, seo and title tags
76
70
  easier to manage and standardize view coding process.
77
71
  email:
78
- - info@phcdevworks.com
72
+ - imfo@phcdevworks.com
79
73
  executables: []
80
74
  extensions: []
81
75
  extra_rdoc_files: []
@@ -83,15 +77,7 @@ files:
83
77
  - MIT-LICENSE
84
78
  - README.md
85
79
  - Rakefile
86
- - app/assets/config/phcdevworks_titleseo_manifest.js
87
- - app/assets/javascripts/phcdevworks_titleseo/application.js
88
- - app/assets/stylesheets/phcdevworks_titleseo/application.css
89
- - app/controllers/phcdevworks_titleseo/application_controller.rb
90
80
  - app/helpers/phcdevworks_titleseo/application_helper.rb
91
- - app/jobs/phcdevworks_titleseo/application_job.rb
92
- - app/mailers/phcdevworks_titleseo/application_mailer.rb
93
- - app/models/phcdevworks_titleseo/application_record.rb
94
- - app/views/layouts/phcdevworks_titleseo/application.html.erb
95
81
  - app/views/phcdevworks_titleseo/_template_2_breadcrumbs.html.erb
96
82
  - app/views/phcdevworks_titleseo/_template_3_breadcrumbs.html.erb
97
83
  - app/views/phcdevworks_titleseo/_template_seo.html.erb
@@ -102,7 +88,11 @@ files:
102
88
  homepage: https://phcdevworks.com/
103
89
  licenses:
104
90
  - MIT
105
- metadata: {}
91
+ metadata:
92
+ allowed_push_host: https://rubygems.org/
93
+ homepage_uri: https://phcdevworks.com/
94
+ source_code_uri: https://github.com/phcdevworks/phcdevworks_notifications
95
+ changelog_uri: https://github.com/phcdevworks/phcdevworks_notifications/releases
106
96
  post_install_message:
107
97
  rdoc_options: []
108
98
  require_paths:
@@ -121,5 +111,5 @@ requirements: []
121
111
  rubygems_version: 3.0.3
122
112
  signing_key:
123
113
  specification_version: 4
124
- summary: PHCDevworks - Helpers - Title/SEO
114
+ summary: PHCDevworks - Helpers - TitleSEO
125
115
  test_files: []
@@ -1,3 +0,0 @@
1
- //= link_tree ../images
2
- //= link_directory ../javascripts/phcdevworks_titleseo .js
3
- //= link_directory ../stylesheets/phcdevworks_titleseo .scss
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,5 +0,0 @@
1
- module PhcdevworksTitleseo
2
- class ApplicationController < ActionController::Base
3
- protect_from_forgery with: :exception
4
- end
5
- end
@@ -1,4 +0,0 @@
1
- module PhcdevworksTitleseo
2
- class ApplicationJob < ActiveJob::Base
3
- end
4
- end
@@ -1,6 +0,0 @@
1
- module PhcdevworksTitleseo
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
5
- end
6
- end
@@ -1,5 +0,0 @@
1
- module PhcdevworksTitleseo
2
- class ApplicationRecord < ActiveRecord::Base
3
- self.abstract_class = true
4
- end
5
- end
@@ -1,18 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
-
5
- <title>PHCDevworks Title/Seo</title>
6
- <%= csrf_meta_tags %>
7
- <%= csp_meta_tag %>
8
-
9
- <%= stylesheet_link_tag "phcdevworks_titleseo/application", media: "all" %>
10
- <%= javascript_include_tag "phcdevworks_titleseo/application" %>
11
-
12
- </head>
13
- <body>
14
-
15
- <%= yield %>
16
-
17
- </body>
18
- </html>