Skip to content

Commit

Permalink
Update readme and start using github to host gems
Browse files Browse the repository at this point in the history
  • Loading branch information
binarylogic committed Jun 15, 2009
1 parent ccb891a commit 8752f2b
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 6 deletions.
24 changes: 19 additions & 5 deletions README.rdoc
Expand Up @@ -4,18 +4,32 @@

<b>Attention v1 users. v2 breaks backwards compatibility. Please make sure your gem declaration for searchlogic looks like this so that you app does not break when the gem is updated: config.gem "searchlogic", :version => "~> 1.6.6"</b>

Searchlogic is a library that leverages named scopes to make searching in your application simple.
Searchlogic provides common named scopes and object based searching.

== Install & use
== Helpful links

* <b>Documentation:</b> http://rdoc.info/projects/binarylogic/searchlogic
* <b>Repository:</b> http://github.com/binarylogic/searchlogic/tree/master
* <b>Bugs / feature suggestions:</b> http://binarylogic.lighthouseapp.com/projects/16601-searchlogic
* <b>Google group:</b> http://groups.google.com/group/searchlogic

<b>Before contacting me directly, please read:</b>

In your console:
If you find a bug or a problem please post it on lighthouse. If you need help with something, please use google groups. I check both regularly and get emails when anything happens, so that is the best place to get help. This also benefits other people in the future with the same questions / problems. Thank you.

sudo gem install searchlogic
== Install & use

In your rails project:

# config/environment.rb
config.gem "searchlogic"
config.gem "binarylogic-searchlogic",
:lib => 'searchlogic',
:source => 'http://gems.github.com',
:version => '0.6.6'

Then install the gem:

rake gems:install

That's it, you are ready to go. See below for usage examples.

Expand Down
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -9,6 +9,7 @@ begin
gem.email = "bjohnson@binarylogic.com"
gem.homepage = "http://github.com/binarylogic/search"
gem.authors = ["binarylogic"]
gem.rubyforge_project = "test"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end

Expand Down
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

4 changes: 4 additions & 0 deletions VERSION.yml
@@ -0,0 +1,4 @@
---
:major: 2
:minor: 0
:patch: 0
9 changes: 9 additions & 0 deletions lib/searchlogic/version.rb
@@ -0,0 +1,9 @@
module Searchlogic
module VERSION
MAJOR = 2
MINOR = 3
TINY = 11

STRING = [MAJOR, MINOR, TINY].join('.')
end
end

0 comments on commit 8752f2b

Please sign in to comment.