Sha256: ae1e0a25cdcfbd1e8af07fedf2c476675933af3ea911c8be674989aac935b229

Contents?: true

Size: 1.41 KB

Versions: 19

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "cantango"
  gem.homepage = "http://github.com/kristianmandrup/cantango"
  gem.license = "MIT"
  gem.summary = %Q{CanCan extension with role oriented permission management and more}
  gem.description = %Q{Define your permission rules as role- or role group specific permits.
Integrates well with multiple Devise user acounts.
Includes rules caching.
Store permissions in yaml file or key-value store}
  gem.email = "kmandrup@gmail.com, s.pankevich@gmail.com"
  gem.authors = ["Kristian Mandrup", "Stanislaw Pankevich"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

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

task :default => :test

require 'rdoc/task'
RDoc::Task.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "cantango #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
cantango-0.9.4.7 Rakefile
cantango-0.9.4.6 Rakefile
cantango-0.9.4.5 Rakefile
cantango-0.9.4.3 Rakefile
cantango-0.9.4.2 Rakefile
cantango-0.9.4.1 Rakefile
cantango-0.9.4 Rakefile
cantango-0.9.3.2 Rakefile
cantango-0.8.9.5 Rakefile
cantango-0.8.9.4 Rakefile
cantango-0.8.9.3 Rakefile
cantango-0.8.9.2 Rakefile
cantango-0.8.9.1 Rakefile
cantango-0.8.9 Rakefile
cantango-0.8.8.1 Rakefile
cantango-0.8.8 Rakefile
cantango-0.8.7 Rakefile
cantango-0.8.6.2 Rakefile
cantango-0.8.6.1 Rakefile