The base of a Dropbox based CMS for Ruby on Rails.
It is very basic in essence and in purpose, it:
- Fetches files from Dropbox written in Textile format.
- Parses and converts them to HTML.
- Use converted HTML as your web pages content.
- Profit.
Add this line to your application's Gemfile:
gem 'dropboxy'
And then execute:
$ bundle
Or install it yourself as:
$ gem install dropboxy
You must have generated a Dropbox Access Token for your App. More details here.
Having your Access Token you create the default initializer file running:
rails g dropboxy
And placing your Access Token in /config/initializers/dropboxy.rb
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request