Sha256: 5d03de36680b62eb2458f12963c1db6a8fe6c882fbad4cf3befc6eab3df38a8b
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
require 'rake' require 'spec/rake/spectask' require 'rake/rdoctask' begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = 'sphinx' gemspec.summary = 'Sphinx Client API for Ruby' gemspec.description = 'An easy interface to Sphinx standalone full-text search engine. It is implemented as plugin for Ruby on Rails, but can be easily used as standalone library.' gemspec.email = 'kpumuk@kpumuk.info' gemspec.homepage = 'http://github.com/kpumuk/sphinx' gemspec.authors = ['Dmytro Shteflyuk'] end Jeweler::GemcutterTasks.new rescue LoadError puts 'Jeweler not available. Install it with: sudo gem install jeweler' end desc 'Default: run specs' task :default => :spec desc 'Test the sphinx plugin' Spec::Rake::SpecTask.new(:spec) do |t| t.libs << 'lib' t.pattern = 'spec/*_spec.rb' end desc 'Generate documentation for the sphinx plugin' Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'Sphinx Client API' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sphinx-0.9.10.2043 | Rakefile |