Sha256: 6efa31f8056e90fea497d6c4d88560849435ac5f677f04ae7e00179704d01da8
Contents?: true
Size: 569 Bytes
Versions: 8
Compression:
Stored size: 569 Bytes
Contents
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 = 'Authpro' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end 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
Version data entries
8 entries across 8 versions & 1 rubygems
Version | Path |
---|---|
authpro-1.1.0 | Rakefile |
authpro-1.0.1 | Rakefile |
authpro-1.0.0 | Rakefile |
authpro-0.9.3 | Rakefile |
authpro-0.9.2 | Rakefile |
authpro-0.9.1 | Rakefile |
authpro-0.9.0 | Rakefile |
authpro-0.1.0 | Rakefile |