Sha256: 618cc3f39b9c504c5604308f114de7dc26d72c01c69c36f894dd04c03f14b17b

Contents?: true

Size: 1.27 KB

Versions: 10

Compression:

Stored size: 1.27 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "searchlogic"
    gem.summary = "Searchlogic provides common named scopes and object based searching for ActiveRecord."
    gem.email = "bjohnson@binarylogic.com"
    gem.homepage = "http://github.com/binarylogic/searchlogic"
    gem.authors = ["Ben Johnson of Binary Logic"]
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end

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 :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION.yml')
    config = YAML.load(File.read('VERSION.yml'))
    version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
  else
    version = ""
  end

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "search #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
binarylogic-searchlogic-2.0.1 Rakefile
binarylogic-searchlogic-2.1.0 Rakefile
newellista-searchlogic-2.0.2 Rakefile
newellista-searchlogic-2.0.3 Rakefile
newellista-searchlogic-2.0.4 Rakefile
newellista-searchlogic-2.0.5 Rakefile
newellista-searchlogic-2.0.6 Rakefile
newellista-searchlogic-2.0.7 Rakefile
newellista-searchlogic-2.0.8 Rakefile
newellista-searchlogic-2.0.9 Rakefile