Sha256: 4593a33864352334687eaabbfa053d43cc1a2602c6e1b32847e6f9ac21a7de60

Contents?: true

Size: 1.04 KB

Versions: 25

Compression:

Stored size: 1.04 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "searchlogic"
    gem.summary = "Searchlogic makes using ActiveRecord named scopes easier and less repetitive."
    gem.description = "Searchlogic makes using ActiveRecord named scopes easier and less repetitive."
    gem.email = "bjohnson@binarylogic.com"
    gem.homepage = "http://github.com/binarylogic/searchlogic"
    gem.authors = ["Ben Johnson of Binary Logic"]
    gem.rubyforge_project = "searchlogic"
    gem.add_dependency "activerecord", ">= 2.0.0"
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
searchlogic-2.4.27 Rakefile
searchlogic-2.4.26 Rakefile
searchlogic-2.4.25 Rakefile
searchlogic-2.4.24 Rakefile
searchlogic-2.4.23 Rakefile
searchlogic-2.4.22 Rakefile
searchlogic-2.4.21 Rakefile
gravis-searchlogic-2.4.20 Rakefile
searchlogic-2.4.19 Rakefile
searchlogic-2.4.18 Rakefile
searchlogic-2.4.17 Rakefile
searchlogic-2.4.16 Rakefile
searchlogic-2.4.15 Rakefile
searchlogic-2.4.14 Rakefile
searchlogic-2.4.13 Rakefile
searchlogic-2.4.12 Rakefile
searchlogic-2.4.11 Rakefile
searchlogic-2.4.10 Rakefile
searchlogic-2.4.9 Rakefile
searchlogic-2.4.8 Rakefile