README.markdown in sluggable_finder-2.2.0 vs README.markdown in sluggable_finder-2.2.1
- old
+ new
@@ -24,10 +24,13 @@
Then run the following to load the test schema:
rake db:create
+Note: I'm using mysql for now due to an apparent bug in ActiveRecord's sqlite3 adapter.
+Look for configuration in spec/sluggable_finder_spec.rb
+
## SYNOPSIS:
### Models
class Category < ActiveRecord::Base
has_many :posts
@@ -100,28 +103,30 @@
ActiveRecord, ActiveSupport
## INSTALL:
-If you haven't yet, add github.com to your gem sources (you only need to do that once):
+You can install or clone the repo from Github, but the recommended way for normal usage is to install the latest stable version from Gemcutter.org:
- gem sources -a http://gems.github.com
+If you haven't yet, add gemcutter.org to your gem sources (you only need to do that once):
+ gem sources -a http://gemcutter.org
+
Now you can install the normal way:
- sudo gem install ismasan-sluggable_finder
+ sudo gem install sluggable_finder
Then, in your Rails app's environment:
- config.gem "ismasan-sluggable_finder", :lib => 'sluggable_finder'
+ config.gem "sluggable_finder"
If you wan to unpack the gem to you app's "vendor" directory:
rake gems:unpack
## TODO:
-*Refactor. It works but I hate the code.
+*Refactor. It works but I hate the code. Find a way to override ActiveRecord.find more cleanly. Maybe Rails 3?
## LICENSE:
(The MIT License)
\ No newline at end of file