Sha256: 3f71579476923b025684e614b70c1d9877314789ca11de4f86278b635e41e17a

Contents?: true

Size: 1.43 KB

Versions: 6

Compression:

Stored size: 1.43 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "iq-acl"
    gem.summary = %Q{Super simple access control.}
    gem.description = %Q{IQ::ACL provides a super simple way of implementing access control.}
    gem.email = "jamie@soniciq.com"
    gem.homepage = "http://github.com/soniciq/iq-acl"
    gem.authors = ["Jamie Hill, SonicIQ Ltd."]
    gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    gem.add_development_dependency "yard", ">= 0"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << '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

begin
  require 'yard'
  YARD::Rake::YardocTask.new
rescue LoadError
  task :yardoc do
    abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
iq-acl-1.1.3 Rakefile
iq-acl-1.1.2 Rakefile
iq-acl-1.1.1 Rakefile
iq-acl-1.0.5 Rakefile
iq-acl-1.0.4 Rakefile
iq-acl-1.0.3 Rakefile