Commit 78769be37af6ba8b5e509c2b94282bbceec1e5e4
1 parent
ae950b9e
Exists in
master
and in
2 other branches
notes about which rails version is supported by master
Showing
1 changed file
with
7 additions
and
9 deletions
Show diff stats
README.rdoc
... | ... | @@ -9,28 +9,26 @@ Main uses would be for Users to follow other Users or for Users to follow Books, |
9 | 9 | |
10 | 10 | == Installation |
11 | 11 | |
12 | -=== The master branch supports rails 2.3.x | |
12 | +=== The master branch supports rails 3 | |
13 | 13 | |
14 | 14 | Run the following command: |
15 | - script/plugin install git://github.com/tcocca/acts_as_follower.git | |
15 | + rails plugin install git://github.com/tcocca/acts_as_follower.git | |
16 | 16 | |
17 | 17 | Run the generator: |
18 | - script/generate acts_as_follower | |
18 | + rails generate acts_as_follower | |
19 | 19 | |
20 | 20 | This will generate a migration file as well as a model called Follow. |
21 | 21 | |
22 | -=== Rails 3 support | |
22 | +=== Rails 2.3.x support | |
23 | 23 | |
24 | -Rails 3 is supported in the following branch: http://github.com/tcocca/acts_as_follower/tree/rails3 | |
24 | +Rails 2.3.x is supported in a the rails_2.3.x branch http://github.com/tcocca/acts_as_follower/tree/rails_2.3.x | |
25 | 25 | |
26 | 26 | Run the following command: |
27 | - rails plugin install git://github.com/tcocca/acts_as_follower.git -r rails3 | |
27 | + script/plugin install git://github.com/tcocca/acts_as_follower.git -r rails_2.3.x | |
28 | 28 | |
29 | 29 | Run the generator: |
30 | - rails generate acts_as_follower | |
30 | + script/generate acts_as_follower | |
31 | 31 | |
32 | -Rails 3 testing is encouraged, please do your part and report any issues on the github issue tracker if you find any bugs. | |
33 | -This branch is not running in a production site yet (that I know of), if you are running it in production please let me know! | |
34 | 32 | |
35 | 33 | == Usage |
36 | 34 | ... | ... |