Skip to content

Commit

Permalink
Remove spree_dash until Jirafe issues are resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
schof committed Jun 12, 2013
1 parent 4c67455 commit 2c86632
Show file tree
Hide file tree
Showing 36 changed files with 5 additions and 1,113 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Spree gem you automatically require all of the necessary gem dependencies which
* spree_backend (Admin area)
* spree_cmd (Command-line tools)
* spree_core (Models & Mailers, the basic components of Spree that it can't run without)
* spree_dash (Analytics dashboard, depends on backend)
* spree_sample (Sample data)

All of the gems are designed to work together to provide a fully functional
Expand Down
8 changes: 4 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ task :clean do
puts "Deleting pkg directory.."
FileUtils.rm_rf("pkg")

%w(api backend cmd core dash frontend).each do |gem_name|
%w(api backend cmd core frontend).each do |gem_name|
puts "Cleaning #{gem_name}:"
puts " Deleting #{gem_name}/Gemfile"
FileUtils.rm_f("#{gem_name}/Gemfile")
Expand All @@ -46,7 +46,7 @@ end
namespace :gem do
desc "run rake gem for all gems"
task :build do
%w(core api backend dash frontend sample cmd).each do |gem_name|
%w(core api backend frontend sample cmd).each do |gem_name|
puts "########################### #{gem_name} #########################"
puts "Deleting #{gem_name}/pkg"
FileUtils.rm_rf("#{gem_name}/pkg")
Expand All @@ -63,7 +63,7 @@ namespace :gem do
task :install do
version = File.read(File.expand_path("../SPREE_VERSION", __FILE__)).strip

%w(core api backend dash frontend sample cmd).each do |gem_name|
%w(core api backend frontend sample cmd).each do |gem_name|
puts "########################### #{gem_name} #########################"
puts "Deleting #{gem_name}/pkg"
FileUtils.rm_rf("#{gem_name}/pkg")
Expand All @@ -82,7 +82,7 @@ namespace :gem do
task :release do
version = File.read(File.expand_path("../SPREE_VERSION", __FILE__)).strip

%w(core api backend dash frontend sample cmd).each do |gem_name|
%w(core api backend frontend sample cmd).each do |gem_name|
puts "########################### #{gem_name} #########################"
cmd = "cd #{gem_name}/pkg && gem push spree_#{gem_name}-#{version}.gem"; puts cmd; system cmd
end
Expand Down
1 change: 0 additions & 1 deletion backend/app/views/spree/admin/shared/_tabs.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<%= tab :overview, :route => :admin, :icon => 'icon-dashboard' %>
<% if can? :admin, Spree::Order %>
<%= tab :orders, :payments, :creditcard_payments, :shipments, :credit_cards, :return_authorizations, :icon => 'icon-shopping-cart' %>
<% end %>
Expand Down
1 change: 0 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
cd api; set_gemfile; rm Gemfile.lock; bundle install; bundle exec rspec spec
cd ../backend; set_gemfile; rm Gemfile.lock; bundle install; bundle exec rspec spec
cd ../core; set_gemfile; rm Gemfile.lock; bundle install; bundle exec rspec spec
cd ../dash; set_gemfile; rm Gemfile.lock; bundle install; bundle exec rspec spec
cd ../frontend; set_gemfile; rm Gemfile.lock; bundle install; bundle exec rspec spec
1 change: 0 additions & 1 deletion dash/.rspec

This file was deleted.

3 changes: 0 additions & 3 deletions dash/CHANGELOG.md

This file was deleted.

8 changes: 0 additions & 8 deletions dash/Gemfile

This file was deleted.

26 changes: 0 additions & 26 deletions dash/LICENSE

This file was deleted.

15 changes: 0 additions & 15 deletions dash/README.md

This file was deleted.

28 changes: 0 additions & 28 deletions dash/Rakefile

This file was deleted.

Binary file not shown.
83 changes: 0 additions & 83 deletions dash/app/controllers/spree/admin/analytics_controller.rb

This file was deleted.

35 changes: 0 additions & 35 deletions dash/app/controllers/spree/admin/overview_controller.rb

This file was deleted.

13 changes: 0 additions & 13 deletions dash/app/helpers/spree/admin/overview_helper.rb

This file was deleted.

Loading

0 comments on commit 2c86632

Please sign in to comment.