From 7379daad1c73bd3610ed296436250b417ac3673d Mon Sep 17 00:00:00 2001 From: hukl Date: Thu, 10 Feb 2011 14:19:00 +0100 Subject: removed thinking_sphinx plugin and replaced it with gem. also tuned dependencies --- vendor/plugins/thinking-sphinx/tasks/testing.rb | 86 ------------------------- 1 file changed, 86 deletions(-) delete mode 100644 vendor/plugins/thinking-sphinx/tasks/testing.rb (limited to 'vendor/plugins/thinking-sphinx/tasks/testing.rb') diff --git a/vendor/plugins/thinking-sphinx/tasks/testing.rb b/vendor/plugins/thinking-sphinx/tasks/testing.rb deleted file mode 100644 index 9cb83ba..0000000 --- a/vendor/plugins/thinking-sphinx/tasks/testing.rb +++ /dev/null @@ -1,86 +0,0 @@ -require 'rubygems' -require 'spec/rake/spectask' -require 'cucumber/rake/task' - -desc "Run the specs under spec" -Spec::Rake::SpecTask.new do |t| - t.spec_files = FileList['spec/**/*_spec.rb'] - t.spec_opts << "-c" -end - -desc "Run all feature-set configurations" -task :features do |t| - puts "rake features:mysql" - system "rake features:mysql" - puts "rake features:postgresql" - system "rake features:postgresql" -end - -namespace :features do - def add_task(name, description) - Cucumber::Rake::Task.new(name, description) do |t| - t.cucumber_opts = "--format pretty" - t.step_pattern = [ - "features/support/env", - "features/support/db/#{name}", - "features/support/db/active_record", - "features/support/post_database", - "features/step_definitions/**.rb" - ] - end - end - - add_task :mysql, "Run feature-set against MySQL" - add_task :postgresql, "Run feature-set against PostgreSQL" -end - -desc "Generate RCov reports" -Spec::Rake::SpecTask.new(:rcov) do |t| - t.libs << 'lib' - t.spec_files = FileList['spec/**/*_spec.rb'] - t.rcov = true - t.rcov_opts = ['--exclude', 'spec', '--exclude', 'gems', '--exclude', 'riddle'] -end - -namespace :rcov do - def add_task(name, description) - Cucumber::Rake::Task.new(name, description) do |t| - t.cucumber_opts = "--format pretty" - t.step_pattern = [ - "features/support/env", - "features/support/db/#{name}", - "features/support/db/active_record", - "features/support/post_database", - "features/step_definitions/**.rb" - ] - t.rcov = true - t.rcov_opts = [ - '--exclude', 'spec', - '--exclude', 'gems', - '--exclude', 'riddle', - '--exclude', 'features' - ] - end - end - - add_task :mysql, "Run feature-set against MySQL with rcov" - add_task :postgresql, "Run feature-set against PostgreSQL with rcov" -end - -desc "Build cucumber.yml file" -task :cucumber_defaults do - default_requires = %w( - --require features/support/env.rb - --require features/support/db/mysql.rb - --require features/support/db/active_record.rb - --require features/support/post_database.rb - ).join(" ") - - step_definitions = FileList["features/step_definitions/**.rb"].collect { |path| - "--require #{path}" - }.join(" ") - - File.open('cucumber.yml', 'w') { |f| - f.write "default: \"#{default_requires} #{step_definitions}\"" - } -end -- cgit v1.3