Open mices opened 6 years ago
what is what ?
some docs - the readme is quite extensive and there is a large wiki - but may be out of date as this is an open source project done for free in my spare time and I no longer work with Spree much
https://github.com/autotelik/datashift_spree/wiki
syntax as specified by Usage : thor datashift:import:csv -i your_csv_file.csv
the parent project : https://github.com/autotelik/datashift is up to date and with good readme, and probably does what you need
Thanks What was the idea behind building a spree specific version ? Why does datashift ask for --i and --m arguments to go with -i and -m ?
to support non trivial processing like nested child taxons. if you really need that you can see in the code how I used to over write datashift ... there is a branch to migrate Spree loader specifics to new DataShift API - but its WIP .... https://github.com/autotelik/datashift_spree/blob/feature/update_api_latest_ds_and_spree/lib/loaders/spree/product_populator.rb
--i won't work. its -i or --input
thor help
is useful, e.g
$ thor help datashift:import:csv Usage: thor datashift:import:csv -i, --input=INPUT -m, --model=MODEL
Options: -m, --model=MODEL # The related active record model -i, --input=INPUT # The input .xls file -c, [--config=CONFIG] # YAML config file with defaults, over-rides etc -a, [--assoc], [--no-assoc] # Include any associations supplied in the input -e, [--exclude=one two three] # Use with -a : Exclude association types. Any from [:assignment, :belongs_to, :has_one, :has_many] -v, [--verbose], [--no-verbose] # Verbose logging
import CSV file for specified active record model
thor datashift:import:csv -i, --input=products_export.csv -m, --model=Product
ERROR: "thor csv" was called with arguments ["-i,", "-m,"] Usage: "thor datashift:import:csv -i, --input=INPUT -m, --model=MODEL"
thor datashift:import:csv -i products_export.csv
No value provided for required options '--model'
it tells you the issue
No value provided for required options '--model'
I think maybe reading around the basics of calling a rake or a thor task would help you. thor is nothing to do with me, it provides the task calling framework and defines how options are passed
you need to tell the task which DB model the csv file relates to
thor datashift:import:csv -i products_export.csv -m Product
Well you previously said "Usage: "thor datashift:import:csv -i, --input=INPUT -m, --model=MODEL"
I supplied you the thor help ...that's how the thor gem and most linux type command line apps decides to print out its help.
What is this? No docs? What's the right syntax please?