Sha256: c7a9dd74277465a39d93b6baa9292dae868c0d30f260eef84c304cb2c75f5560
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
require 'rubygems' require 'rake' require 'spec/rake/spectask' desc 'Default: run specs.' task :default => :spec begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "acl9" s.summary = "Yet another role-based authorization system for Rails with a nice DSL for access control lists." s.email = "olegdashevskii@gmail.com" s.homepage = "http://github.com/be9/acl9" s.description = "Yet another role-based authorization system for Rails with a nice DSL for access control lists." s.authors = ["oleg dashevskii"] s.files = FileList["[A-Z]*", "{lib,spec}/**/*.rb"] s.add_development_dependency "rspec", ">= 1.1.12" s.add_development_dependency "rspec-rails", ">= 1.1.12" end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end desc 'Run the specs' Spec::Rake::SpecTask.new(:spec) do |t| t.spec_opts = ['--colour --format progress --loadby mtime --reverse'] t.spec_files = FileList['spec/**/*_spec.rb'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
be9-acl9-0.9.4 | Rakefile |