Rakefile in faalis-0.26.3 vs Rakefile in faalis-1.0.0.alpha0
- old
+ new
@@ -2,41 +2,18 @@
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
-require 'rdoc/task'
-
-RDoc::Task.new(:rdoc) do |rdoc|
- rdoc.rdoc_dir = 'docs'
- rdoc.title = 'Faalis'
- rdoc.options << '--line-numbers'
- rdoc.options << '--markup=markdown'
-
- rdoc.main = "README.rdoc"
- rdoc.rdoc_files.include('README.rdoc')
- rdoc.rdoc_files.include('lib/**/*.rb')
-end
-
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'
-
-
Bundler::GemHelper.install_tasks
-#require 'rake/testtask'
-
-#Rake::TestTask.new(:test) do |t|
-# t.libs << 'lib'
-# t.libs << 'test'
-# t.pattern = 'test/**/*_test.rb'
-# t.verbose = false
-#end
-#task default: :test
-
require 'rspec/core'
require 'rspec/core/rake_task'
desc "Run all specs in spec directory (excluding plugin specs)"
RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
task :default => :spec
+
+#load "#{File.dirname(__FILE__)}/lib/tasks/**/*.rake") {|f| load f}