Sha256: bfa23aa012dc6018b3b89056b393c1b8aa201d9e8d7ce5a409dd4af943498b11

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "novelys_authlogic"
    gem.summary = "An experimental fork of Authlogic that aims to work with Rails 3 and MongoMapper (and other DBS in the future I hope)."
    gem.email = "bjohnson@binarylogic.com"
    gem.homepage = "http://github.com/novelys/authlogic"
    gem.authors = ["Ben Johnson of Binary Logic"]
    gem.rubyforge_project = "authlogic"
    gem.add_dependency "activesupport"
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/*_test.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
novelys_authlogic-2.1.6 Rakefile
novelys_authlogic-2.1.5 Rakefile
novelys_authlogic-2.1.4 Rakefile
novelys_authlogic-2.1.3 Rakefile