generate list of articles:
ruby script/generate controller Library index
redefine index( ) method in library_controller.rb, for ex.:
def index
@articles = Article.accepted
end
define accepted() method in Article class (app/models/article.rb)
edit app/views/store/index.rhtml for displaying the list of articles, use @articles variable to get the accepted articles
by the way it appeared that I should change the data schema a [...]

