kelredd-activerecord-sinatra 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +2 -2
- data/lib/activerecord_sinatra/base.rb +0 -1
- data/lib/activerecord_sinatra/version.rb +2 -2
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -6,15 +6,15 @@ A gem with some useful extensions for using Active Record with a sinatra app.
|
|
6
6
|
|
7
7
|
== Installation
|
8
8
|
|
9
|
-
sudo gem install activerecord-sinatra --source http://gems.github.com
|
9
|
+
sudo gem install kelredd-activerecord-sinatra --source http://gems.github.com
|
10
10
|
|
11
11
|
== Usage
|
12
12
|
|
13
13
|
(in main app file)
|
14
|
+
require 'rubygems'
|
14
15
|
require 'activerecord_sinatra'
|
15
16
|
|
16
17
|
(create a file config/database.yml, and put some typical active record configs in there)
|
17
|
-
(if you create a file, models.rb, this gem will auto require it, so put some model defs in there)
|
18
18
|
|
19
19
|
== License
|
20
20
|
|