Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spree 1.0 Compatibility, spree_essentials_cms Support #7

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ tmp
*.swp
spec/test_app
pkg
Gemfile.lock
243 changes: 0 additions & 243 deletions Gemfile.lock

This file was deleted.

6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Check out the README for the sitemap_generator gem at:
http://github.com/kjvarga/sitemap_generator

Features
=====
========
- Notifies search engine of new sitemaps (Google, Yahoo, Ask, Bing)
- Supports large huge product catalogs
- Adheres to 0.9 Sitemap protocol specification
Expand All @@ -53,9 +53,11 @@ Features
- Easily add additional sitemaps for pages you add to your spree site
- Supports Amazon S3 and other hosting services
- Thin wrapper over battle tested sitemap generator
- Supports adding [spree_essential_cms](https://github.com/citrus/spree_essential_cms) pages to the sitemap
- Creates video sitemap data for [spree_videos](https://github.com/iloveitaly/Spree-Videos) and youtube videos embedded in custom [spree_taxon_splash](https://github.com/iloveitaly/spree_taxon_splash) pages

Special Thanks
=====
==============
- The creators of the sitemap_generator gem
- jackkinsella

Expand Down
7 changes: 1 addition & 6 deletions Versionfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# This file is used to designate compatibilty with different versions of Spree
# Please see http://spreecommerce.com/documentation/extensions.html#versionfile for details

# Examples
#
# "0.70.x" => { :branch => "master"}
# "0.60.x" => { :branch => "0-60-stable" }
# "0.40.x" => { :tag => "v1.0.0", :version => "1.0.0" }

"1.1.x" => { :branch => "master"}
"0.70.x" => { :branch => "master"}
"0.30.x" => { :tag => "v3.0.2"}
3 changes: 0 additions & 3 deletions config/routes.rb

This file was deleted.

14 changes: 8 additions & 6 deletions lib/generators/templates/config/sitemap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@
# Article.find_each do |article|
# sitemap.add article_path(article), :lastmod => article.updated_at
# end
sitemap.add_login
sitemap.add_signup
sitemap.add_account
sitemap.add_password_reset
sitemap.add_taxons
sitemap.add_products

add_login
add_signup
add_account
add_password_reset
add_taxons
add_products
add_pages
end
Loading