Sha256: caad74897784bd499cc82842506a86c990a6031baddad01a8baf1c0df516460f
Contents?: true
Size: 1.65 KB
Versions: 8
Compression:
Stored size: 1.65 KB
Contents
require 'bundler' Bundler.setup Bundler::GemHelper.install_tasks require 'bueller' Bueller::Tasks.new task :console do require 'earth' logger = Logger.new('log/test.log') DataMiner.logger = ActiveRecord::Base.logger = logger ActiveRecord::Base.establish_connection :adapter => 'postgresql', :database => 'test_earth' Earth.init :all require 'irb' ARGV.clear IRB.start end require 'cucumber' require 'cucumber/rake/task' desc 'Run all cucumber tests' Cucumber::Rake::Task.new(:features) do |t| if ENV['CUCUMBER_FORMAT'] t.cucumber_opts = "features --format #{ENV['CUCUMBER_FORMAT']}" else t.cucumber_opts = 'features --format pretty' end end directory 'log/' task :features => 'log/' if RUBY_VERSION =~ /^1\.8/ desc "Run cucumber tests with RCov" Cucumber::Rake::Task.new(:features_with_coverage) do |t| t.cucumber_opts = "features --format pretty" t.rcov = true t.rcov_opts = ['--exclude', 'features'] end end require 'rspec/core/rake_task' desc "Run all examples" RSpec::Core::RakeTask.new(:examples) do |c| if ENV['RSPEC_FORMAT'] c.rspec_opts = "-Ispec --format #{ENV['RSPEC_FORMAT']}" else c.rspec_opts = '-Ispec' end end if RUBY_VERSION =~ /^1\.8/ desc "Run specs with RCov" RSpec::Core::RakeTask.new(:examples_with_coverage) do |t| t.rcov = true t.rcov_opts = ['--exclude', 'spec'] t.rspec_opts = '-Ispec' end end task :test => [:features, :examples] task :default => :test require 'rake/rdoctask' require 'earth/version' Rake::RDocTask.new do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = "earth #{Earth::VERSION}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
8 entries across 8 versions & 1 rubygems
Version | Path |
---|---|
earth-0.11.18 | Rakefile |
earth-0.11.17 | Rakefile |
earth-0.11.16 | Rakefile |
earth-0.11.15 | Rakefile |
earth-0.11.14 | Rakefile |
earth-0.11.13 | Rakefile |
earth-0.11.12 | Rakefile |
earth-0.11.11 | Rakefile |