Sha256: b93afcde43f5a937473fadad7dffd696ee52b446752e2451b2f97a3d3cfaef7e
Contents?: true
Size: 1.13 KB
Versions: 3
Compression:
Stored size: 1.13 KB
Contents
gem 'rspec', '2.0.0.beta.1' require 'rspec/core/rake_task' 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 Rspec::Core::RakeTask.new do |t| t.pattern = "spec/**/*_spec.rb" end Rspec::Core::RakeTask.new('rcov') do |t| t.pattern = "spec/**/*_spec.rb" t.rcov = true t.rcov_opts = ['--exclude', 'spec'] end
Version data entries
3 entries across 3 versions & 3 rubygems
Version | Path |
---|---|
acts-as-taggable-on-simonwh-2.0.0.pre1 | Rakefile |
simonwh-acts-as-taggable-on-2.0.0.pre1 | Rakefile |
acts-as-taggable-on-2.0.0.pre1 | Rakefile |