Sha256: 773ba74370efaa0b657bd0297e72781b749896a5e835ca59e017f47ff648824f

Contents?: true

Size: 1.44 KB

Versions: 7

Compression:

Stored size: 1.44 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "query_string_filter"
    gem.summary = %Q{Convert from a filter query string param to a MongoMapper conditions hash}
    gem.description = %Q{Convert a filter param in a query string to a conditions hash useful for MongoMapper searching}
    gem.email = "djames@sunlightfoundation.com"
    gem.homepage = "http://github.com/djsun/query_string_filter"
    gem.authors = ["David James"]
    gem.add_dependency('treetop', '>= 1.4.2')
    gem.add_development_dependency "rspec", ">= 1.2.9"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  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

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
query_string_filter-0.1.6 Rakefile
query_string_filter-0.1.5 Rakefile
query_string_filter-0.1.4 Rakefile
query_string_filter-0.1.3 Rakefile
query_string_filter-0.1.2 Rakefile
query_string_filter-0.1.1 Rakefile
query_string_filter-0.1.0 Rakefile