Sha256: a6855f0c309a0e37c07297a86131533f6039453bcafd52b999d358b565bfa9cc
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "searchlogic" gem.summary = "Searchlogic provides tools that make using ActiveRecord named scopes easier and less repetitive." gem.description = "Searchlogic provides tools that make 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::RubyforgeTasks.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
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
binarylogic-searchlogic-2.3.0 | Rakefile |
searchlogic-2.3.0 | Rakefile |