Sha256: 8f9d04403c77da6a5d18f6b0ad2f05428e47c7b6ddd2634eee3af0e10e5b36d7

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

Contents

require 'spec/rake/spectask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "acts-as-taggable-on-for-domains"
    gemspec.summary = "The same as ActsAsTaggableOn but implements domain scoping."
    gemspec.description = "Same as ActsAsTaggableOn but tagging happens within the context of a domain id. This means an object could be tagged with something for one domain, but the same object, in the context of a different domain id, could have completely different taggings."
    gemspec.email = "joshnabbott@gmail.com"
    gemspec.homepage = "http://github.com/joshnabbott/acts-as-taggable-on-for-domains"
    gemspec.authors = ["Michael Bleigh", 'Josh N. Abbott']
    # gemspec.files =  FileList["[A-Z]*", "{generatorslib,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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
acts-as-taggable-on-for-domains-0.1.1 Rakefile
acts-as-taggable-on-for-domains-0.1.0 Rakefile