No commit activity in last 3 years
No release in over 3 years
SitemapGenerator tasks for Mina.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

~> 1.0.0
 Project Readme

Mina::SitemapGenerator

This gem provides several mina tasks for SitemapGenerator:

mina sitemap:create           # Generate sitemaps but don't ping search engines.
mina sitemap:refresh          # Generate sitemaps and ping search engines.
mina sitemap:clean            # Delete all Sitemap files in public/ directory

Installation

Add this line to your application's Gemfile:

gem 'mina-sitemap_generator', :require => false

And then execute:

$ bundle

Example deploy task

...
require 'mina/sitemap_generator'

...
desc "Deploys the current version to the server."
task :deploy => :environment do
  deploy do
    invoke :'git:clone'
    invoke :'deploy:link_shared_paths'
    invoke :'bundle:install'
    invoke :'rails:assets_precompile'

    to :launch do
      invoke :'unicorn:restart'
      invoke :'sitemap:create'
    end
  end
end

Contributing

  1. Fork it ( https://github.com/cyberwolfru/mina-sitemap_generator/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request