I am learning Rails and am trying to make my own blog. I am using RedCloth for the textile->html and was wonder how I would go on about doing it. I wanted to use local files and not pull from a database. How would I do that? I wanted to do something like a folder in my blog folder i.e. blog/blogposts in which I would have my .textile posts
Then in my helper I have a method somewhere along the lines of
def loadAll
file = []
Dir["/blogposts/"].each do |post|
file << post
end
file.size.each do |x|
@post << File.open(File.basename(file[x],File.extname(file[x]))+".txt",'rb') { |f| f.read}
end
end
Now obviously this doesn't work but I just a basic idea of what it would be. @post referring to my post model. Would this be the best way to approach it? Anything I'm missing? The view should be easy enough, just post all the .textiles and use paginate and the controller would only really have view as Edit, Delete, New would be done locally and pushed.
Or would it be better to add an admin account and pull blog posts from a database?