Skip to content

Commit

Permalink
VERSION 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Grant Hutchins & Rachel Heaton committed Jan 14, 2011
1 parent 75961fd commit 89d6127
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 21 deletions.
16 changes: 2 additions & 14 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
### 0.0.3
### 0.0.1

Do not accept :joins as an option to pg_search_scope

### 0.0.2

Changed the DSL for searching associated models to allow for searching
multiple associations.

has_many :things
pg_search_scope :search, :against => :name, :against_associated => {:things => :title}

against_associated accepts a hash where the key is the name of an association
and the value is structured like against. For example, the value can be a
symbol, an array with weights, etc...
Initial release.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010 Case Commons, LLC
Copyright (c) 2010-11 Case Commons, LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion lib/pg_search/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PgSearch
VERSION = "0.0.3"
VERSION = "0.0.1"
end
10 changes: 5 additions & 5 deletions pg_search.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Gem::Specification.new do |s|
s.name = "pg_search"
s.version = PgSearch::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Grant Hutchins", "Peter Jaros"]
s.email = ["grant@pivotallabs.com", "pjaros@pivotallabs.com"]
s.homepage = "https://github.com/casebook/pg_search"
s.summary = %q{PgSearch builds named scopes that take advantage of PostgreSQL's full text search}
s.description = %q{PgSearch builds named scopes that take advantage of PostgreSQL's full text search}
s.authors = ["Case Commons, LLC"]
s.email = ["casecommons-dev@googlegroups.com"]
s.homepage = "https://github.com/Casecommons/pg_search"
s.summary = %q{PgSearch builds ActiveRecord named scopes that take advantage of PostgreSQL's full text search}
s.description = %q{PgSearch builds ActiveRecord named scopes that take advantage of PostgreSQL's full text search}

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand Down

0 comments on commit 89d6127

Please sign in to comment.