Sha256: 47ea75a85ee1ae002bb282e8313156232632ba9e0f13dacab8824aa1798b8795
Contents?: true
Size: 1.77 KB
Versions: 2
Compression:
Stored size: 1.77 KB
Contents
begin # Rspec 2.0 require 'rspec/core/rake_task' 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 rescue LoadError # Rspec 1.3.0 require 'spec/rake/spectask' 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 rescue LoadError puts "Rspec not available. Install it with: gem install rspec" end namespace 'rails2.3' do task :spec do gemfile = File.join(File.dirname(__FILE__), 'lib', 'acts_as_taggable_on', 'compatibility', 'Gemfile') ENV['BUNDLE_GEMFILE'] = gemfile Rake::Task['spec'].invoke end end 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: gem install jeweler" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
acts-as-taggable-on-2.0.0.pre4 | Rakefile |
acts-as-taggable-on-2.0.0.pre3 | Rakefile |