Sha256: 14f45c11e7bcda03b7eca550edceb1edc3d234563ca76cb2e77eb04c62fe72eb

Contents?: true

Size: 1.2 KB

Versions: 18

Compression:

Stored size: 1.2 KB

Contents

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'
require 'rspec/core/rake_task'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "mongoid_fulltext"
  gem.homepage = "http://github.com/aaw/mongoid_fulltext"
  gem.license = "MIT"
  gem.summary = %Q{Full-text search for the Mongoid ORM}
  gem.description = %Q{Full-text search for the Mongoid ORM, using n-grams extracted from text}
  gem.email = "aaron.windsor@gmail.com"
  gem.authors = ["Aaron Windsor"]
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  #  gem.add_runtime_dependency 'jabber4r', '> 0.1'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'
end
Jeweler::RubygemsDotOrgTasks.new


desc "Run all tests"
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = "spec/**/*_spec.rb"
end

task :default => :spec

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
mongoid_fulltext-0.6.1 Rakefile
mongoid_fulltext-0.6.0 Rakefile
mongoid_fulltext-0.5.8 Rakefile
mongoid_fulltext-0.5.7 Rakefile
mongoid_fulltext-0.5.6 Rakefile
mongoid_fulltext-0.5.5 Rakefile
mongoid_fulltext-0.5.4 Rakefile
mongoid_fulltext-0.5.3 Rakefile
mongoid_fulltext-0.5.2 Rakefile
mongoid_fulltext-0.5.1 Rakefile
mongoid_fulltext-0.5.0 Rakefile
mongoid_fulltext-0.4.5 Rakefile
mongoid_fulltext-0.4.4 Rakefile
mongoid_fulltext-0.4.3 Rakefile
mongoid_fulltext-0.4.2 Rakefile
mongoid_fulltext-0.4.1 Rakefile
mongoid_fulltext-0.4.0 Rakefile
mongoid_fulltext-0.3.6 Rakefile