Sha256: 7b4a7dfb4b8b4b74bc1e6af7b04ca983a57936a81ec7758db35e2dcbc3735728

Contents?: true

Size: 1.13 KB

Versions: 16

Compression:

Stored size: 1.13 KB

Contents

require 'spec/rake/spectask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "acts-as-taggable-on"
    gemspec.summary = "ActsAsTaggableOn is a tagging plugin for Rails that provides multiple tagging contexts on a single model."
    gemspec.description = "With ActsAsTaggableOn, you could tag a single model on several contexts, such as skills, interests, and awards. It also provides other advanced functionality."
    gemspec.email = "michael@intridea.com"
    gemspec.homepage = "http://github.com/mbleigh/acts-as-taggable-on"
    gemspec.authors = ["Michael Bleigh"]
    gemspec.files =  FileList["[A-Z]*", "{generators,lib,spec,rails}/**/*"] - FileList["**/*.log"]
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

desc 'Default: run specs'
task :default => :spec
Spec::Rake::SpecTask.new do |t|
  t.spec_files = FileList["spec/**/*_spec.rb"]
end

Spec::Rake::SpecTask.new('rcov') do |t|
  t.spec_files = FileList["spec/**/*_spec.rb"]
  t.rcov = true
  t.rcov_opts = ['--exclude', 'spec']
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
acts-as-taggable-on-1.1.9 Rakefile
acts-as-taggable-on-1.1.8 Rakefile
acts-as-taggable-on-1.1.7 Rakefile
acts-as-taggable-on-1.1.6 Rakefile
acts-as-taggable-on-1.1.5 Rakefile
acts-as-taggable-on-1.1.4 Rakefile
acts-as-taggable-on-1.1.3 Rakefile
acts-as-taggable-on-1.1.2 Rakefile
acts-as-taggable-on-1.1.1 Rakefile
acts-as-taggable-on-1.1.0 Rakefile
acts-as-taggable-on-1.0.19 Rakefile
acts-as-taggable-on-1.0.18 Rakefile
acts-as-taggable-on-1.0.17 Rakefile
acts-as-taggable-on-1.0.16 Rakefile
acts-as-taggable-on-1.0.15 Rakefile
acts-as-taggable-on-1.0.14 Rakefile