├── .gitignore ├── .rspec ├── .ruby-version ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── logo.png │ │ └── lrds_logo.svg │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ └── channels │ │ │ └── .keep │ └── stylesheets │ │ ├── amp │ │ └── application.scss │ │ └── application.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── errors_controller.rb │ ├── pages_controller.rb │ ├── posts_controller.rb │ └── sitemaps_controller.rb ├── helpers │ ├── application_helper.rb │ └── meta_tags_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ └── post.rb ├── scrubbers │ └── amp_scrubber.rb └── views │ ├── errors │ ├── internal_server_error.html.slim │ ├── not_found.html.slim │ └── unacceptable.html.slim │ ├── layouts │ ├── _breadcrumb.html.slim │ ├── _footer.html.slim │ ├── _header.html.slim │ ├── _meta.html.slim │ ├── application.amp.erb │ ├── application.html.slim │ ├── mailer.html.erb │ └── mailer.text.erb │ ├── pages │ ├── contact.html.slim │ ├── home.html.slim │ └── robots.text.slim │ ├── posts │ ├── _post.html.slim │ ├── index.html.slim │ ├── show.amp.slim │ └── show.html.slim │ └── sitemaps │ └── index.xml.builder ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── default_meta.rb │ ├── filter_parameter_logging.rb │ ├── friendly_id.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── meta.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── spring.rb ├── db ├── migrate │ ├── 20180314135539_create_posts.rb │ ├── 20180314135736_create_friendly_id_slugs.rb │ └── 20180314141243_add_slug_to_post.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── breadcrumbs │ └── builders │ │ └── structured_data_breadcrumbs_builder.rb └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── public ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png └── favicon.ico ├── spec ├── controllers │ ├── pages_controller_spec.rb │ └── posts_controller_spec.rb ├── factories │ └── posts.rb ├── helpers │ └── application_helper_spec.rb ├── models │ └── post_spec.rb ├── rails_helper.rb ├── spec_helper.rb └── support │ ├── database_cleaner.rb │ ├── factory_bot.rb │ └── shoulda_matchers.rb ├── tmp └── .keep └── vendor └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.8 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/lrds_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/assets/images/lrds_logo.svg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/amp/application.scss: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /app/controllers/sitemaps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/controllers/sitemaps_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/meta_tags_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/helpers/meta_tags_helper.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/models/post.rb -------------------------------------------------------------------------------- /app/scrubbers/amp_scrubber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/scrubbers/amp_scrubber.rb -------------------------------------------------------------------------------- /app/views/errors/internal_server_error.html.slim: -------------------------------------------------------------------------------- 1 | h1 We're sorry, but something went wrong. 2 | -------------------------------------------------------------------------------- /app/views/errors/not_found.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/errors/not_found.html.slim -------------------------------------------------------------------------------- /app/views/errors/unacceptable.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/errors/unacceptable.html.slim -------------------------------------------------------------------------------- /app/views/layouts/_breadcrumb.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/layouts/_breadcrumb.html.slim -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/layouts/_footer.html.slim -------------------------------------------------------------------------------- /app/views/layouts/_header.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/layouts/_header.html.slim -------------------------------------------------------------------------------- /app/views/layouts/_meta.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/layouts/_meta.html.slim -------------------------------------------------------------------------------- /app/views/layouts/application.amp.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/layouts/application.amp.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/pages/contact.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/pages/contact.html.slim -------------------------------------------------------------------------------- /app/views/pages/home.html.slim: -------------------------------------------------------------------------------- 1 | h2 The 2018 comprehensive guide on SEO in Rails 2 | -------------------------------------------------------------------------------- /app/views/pages/robots.text.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/pages/robots.text.slim -------------------------------------------------------------------------------- /app/views/posts/_post.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/posts/_post.html.slim -------------------------------------------------------------------------------- /app/views/posts/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/posts/index.html.slim -------------------------------------------------------------------------------- /app/views/posts/show.amp.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/posts/show.amp.slim -------------------------------------------------------------------------------- /app/views/posts/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/posts/show.html.slim -------------------------------------------------------------------------------- /app/views/sitemaps/index.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/app/views/sitemaps/index.xml.builder -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/default_meta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/default_meta.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/meta.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/migrate/20180314135539_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/db/migrate/20180314135539_create_posts.rb -------------------------------------------------------------------------------- /db/migrate/20180314135736_create_friendly_id_slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/db/migrate/20180314135736_create_friendly_id_slugs.rb -------------------------------------------------------------------------------- /db/migrate/20180314141243_add_slug_to_post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/db/migrate/20180314141243_add_slug_to_post.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/breadcrumbs/builders/structured_data_breadcrumbs_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/lib/breadcrumbs/builders/structured_data_breadcrumbs_builder.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/package.json -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/controllers/pages_controller_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/controllers/posts_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/spec/controllers/posts_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/spec/factories/posts.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/models/post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/spec/models/post_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/shoulda_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larevanchedessites/seo-ruby-on-rails/HEAD/spec/support/shoulda_matchers.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------