Sha256: 62c2653a3117b81d32a0fd4438ac950306035858d7cfe5b85cc898773cbfc6d8
Contents?: true
Size: 1.27 KB
Versions: 3
Compression:
Stored size: 1.27 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "rd_searchlogic" gem.summary = "Searchlogic makes using ActiveRecord named scopes easier and less repetitive." gem.description = "Searchlogic makes using ActiveRecord named scopes easier and less repetitive." gem.email = "bjohnson@binarylogic.com" gem.homepage = "http://github.com/railsdog/searchlogic" gem.authors = ["Ben Johnson of Binary Logic", "Roman Smirnov of RailsDog"] gem.rubyforge_project = "searchlogic" gem.add_dependency "activerecord", ">= 3.0.0" 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/**/conditions_spec.rb', #'spec/**/ordering_conditions_spec.rb', 'spec/**/association_conditions_spec.rb' #'spec/**/association_ordering_spec.rb' #'spec/**/search_spec.rb' #'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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rd_searchlogic-3.0.1 | Rakefile |
rd_searchlogic-3.0.0 | Rakefile |
rd_searchlogic-3.0.0.rc4 | Rakefile |