Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

Rename to solidus_product_feed #4

Merged
merged 4 commits into from
Apr 29, 2016
Merged
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
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
Spree Product Feed
Solidus Product Feed
================

[![Build Status](https://travis-ci.org/solidusio-contrib/solidus_product_feed.svg?branch=master)](https://travis-ci.org/solidusio-contrib/solidus_product_feed)

An extension that provides an RSS feed for products. Google Shopper attributes are also implemented.
An RSS link is automatically appended to the `<head>` tag in the `layouts/spree_application` file.

Supported versions of Spree
=========

any version of Spree higher than 0.70.x

Installation
===============

1) add the gem to your `Gemfile`:

`gem 'spree_product_feed'`
`gem 'solidus_product_feed'`

2) run bundler:

Expand Down
10 changes: 0 additions & 10 deletions Versionfile

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module SpreeProductFeed
module SolidusProductFeed
module Generators
class InstallGenerator < Rails::Generators::Base
class_option :auto_run_migrations, :type => :boolean, :default => false
Expand Down
2 changes: 2 additions & 0 deletions lib/solidus_product_feed.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require 'spree_core'
require 'solidus_product_feed/engine'
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module SpreeProductFeed
module SolidusProductFeed
class Engine < Rails::Engine
engine_name 'spree_product_feed'
engine_name 'solidus_product_feed'

config.autoload_paths += %W(#{config.root}/lib)

Expand Down
3 changes: 3 additions & 0 deletions lib/solidus_product_feed/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module SolidusProductFeed
VERSION = '1.0.0'
end
3 changes: 1 addition & 2 deletions lib/spree_product_feed.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
require 'spree_core'
require 'spree_product_feed/engine'
require 'solidus_product_feed/version'
9 changes: 7 additions & 2 deletions spree_product_feed.gemspec → solidus_product_feed.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# encoding: UTF-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'solidus_product_feed/version'

Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_product_feed'
s.version = '1.3.0'
s.name = 'solidus_product_feed'
s.version = SolidusProductFeed::VERSION
s.summary = 'Spree extension that provides an RSS feed for products'
s.description = 'A Spree extension that provides an RSS feed for products, with Google Shopper extensions'
s.required_ruby_version = '>= 1.8.7'
Expand Down