26 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			26 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			Text
		
	
	
	
	
	
|   | begin | ||
|  |   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 = 'rdoc' | ||
|  |   rdoc.title    = 'GrapeDevise' | ||
|  |   rdoc.options << '--line-numbers' | ||
|  |   rdoc.rdoc_files.include('README.rdoc') | ||
|  |   rdoc.rdoc_files.include('lib/**/*.rb') | ||
|  | end | ||
|  | 
 | ||
|  | require 'rspec/core/rake_task' | ||
|  | 
 | ||
|  | RSpec::Core::RakeTask.new(:spec) | ||
|  | 
 | ||
|  | 
 | ||
|  | Bundler::GemHelper.install_tasks | ||
|  | 
 | ||
|  | 
 | ||
|  | task default: :spec |