README.markdown in datashift_spree-0.3.0 vs README.markdown in datashift_spree-0.4.0

- old
+ new

@@ -1,6 +1,6 @@ -## DataShift +## DataShift Spree Specific loaders and command line tasks for Spree E-Commerce. Wiki here : **https://github.com/autotelik/datashift_spree/wiki** @@ -19,42 +19,42 @@ Many example Spreadsheets/CSV files in spec/fixtures, fully documented with comments for each column. ## Installation +Requires datashift. Add to bundle : + gem 'datashift' gem 'datashift_spree' Create a high level .thor file - e.g mysite.thor - in your applications root directory ```ruby +require 'datashift' require 'datashift_spree' + +DataShift::load_commands DataShift::SpreeHelper::load_commands ``` To check the available tasks run bundle exc thor list datashift -To get usage information use thor help <command>, for example +New functionality and options under active development so check latest +usage information via ```thor help <command>``` ... for example bundle exec thor help datashift:spree:products ```ruby Usage: - thor datashift:spree:products -i, --input=INPUT + thor help datashift:spree:products -Options: - -i, --input=INPUT # The import file (.xls or .csv) - -s, [--sku-prefix=SKU_PREFIX] # Prefix to add to each SKU before saving Product - -v, [--verbose] # Verbose logging - -c, [--config=CONFIG] # Configuration file containg defaults or over rides in YAML - -Populate Spree Product/Variant data from .xls (Excel) or CSV file + Populate Spree Product/Variant data from .xls (Excel) or CSV file ``` ## License @@ -80,6 +80,6 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file +THE SOFTWARE.