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

Commit

Permalink
Version bump and gem rename
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmcelwee committed Mar 26, 2012
1 parent 7883ef3 commit 87332e1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
This extension will add a CSV export button to the admin orders page that allows the user to export order information.
This extension builds on an extension authored by Oshin Karamian and Max Sharples. It will add a CSV export button to the admin orders page that allows an admin user to export unfulfilled order information to facilitate batch processing. It is optimized to work with Endicia.

To install, add to Gemfile:
To install for Spree 0.70.x, add to Gemfile:

gem 'shipping_csv', :git => 'git://github.com/OshinKaramian/spree-shipping-csv.git'
gem 'shipping_csv', :git => 'git://github.com/patrickmcelwee/spree_shipping_csv.git'

And update your bundle:

bundle update
bundle install

The Spree '0-60-x' branch here is a clone of Oshin Karamian's extension, which did not exclude fulfilled orders. You should check his repository for updates.

If you want to alter the output of the CSV file, define your own methods in

Expand Down
2 changes: 1 addition & 1 deletion Versionfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"0.60.x" => { :branch => "0.60.x" }
"0.70.x" => { :branch => "master" }
14 changes: 7 additions & 7 deletions shipping_csv.gemspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'shipping_csv'
s.name = 'spree_shipping_csv'
s.version = '1.1.0'
s.summary = 'Export spreee order data as a csv file'
s.summary = 'Export unfulfilled spree order data as a csv file'
s.description = ''
s.required_ruby_version = '>= 1.8.7'
s.required_ruby_version = '>= 1.9.2'

s.author = 'Oshin Karamian, Max Sharples'
s.email = 'maxsharples@gmail.com'
s.homepage = 'https://github.com/msharp/spree-shipping-csv'
s.author = 'Oshin Karamian, Max Sharples, Patrick McElwee'
s.email = 'pmcelwee@gmail.com'
s.homepage = 'https://github.com/pmcelwee/spree_shipping_csv'

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand All @@ -17,7 +17,7 @@ Gem::Specification.new do |s|

s.has_rdoc = true

s.add_dependency('spree_core', '~> 0.60.0')
s.add_dependency('spree_core', '~> 0.70.0')
s.add_dependency('fastercsv')

end

0 comments on commit 87332e1

Please sign in to comment.