Sha256: 7d4ab1f1a3d04f788c697e8ae72cf20771c6b52bff7983a35dcb74f68b76e9b3
Contents?: true
Size: 1.84 KB
Versions: 6
Compression:
Stored size: 1.84 KB
Contents
# Static Blocks Static Blocks is an ultra light-weight CMS for Ruby on Rails. Create static blocks of content. Place them anywhere in your views. ## Features * Simple admin interface * i18n internationalization support * Optional http basic authentication * Search * wysihtml5 editor ## Installation Add the following to Gemfile: ```ruby gem 'static_blocks' ``` Run bundle from shell: ```shell bundle install ``` Run static blocks install generator from shell: ```shell rails generate static_blocks:install ``` Run migrations: ```shell rake db:migrate ``` Mount engine in routes.rb: ```ruby mount StaticBlocks::Engine => "/static_blocks_admin" ``` ## Usage Visit `/static_blocks_admin` and create some static blocks. Use the `static_block_for` method or it's alias `s` to output a block onto any view template. Pass in the title of the static block as argument. Use `raw` if you do not want to escape the html. ``` <%=raw static_block_for('foo') %> <%=raw s('foo') %> ``` ## Configuration When you ran the install generator, a configuration file should have been created in config/initializers/static_blocks.rb: ```ruby StaticBlocks.config do |config| config.locales = ['en'] config.http_auth = false config.username = ENV['STATIC_BLOCKS_USERNAME'] config.password = ENV['STATIC_BLOCKS_PASSWORD'] end ``` ### i18n Internationalization Static Blocks supports i18n internationalization. Pass in an array of locales to it's config option: ```ruby config.locales = ['en', 'wk', 'zh', 'pirate'] ``` ### Optional http basic authentication Static Blocks has an optional http basic authentication which is turned off by default. To activate, set the config option to true and create environment variables for the username and password. ```ruby config.http_auth = true ``` ## Credits Written by Travis Luong ## License [MIT](http://opensource.org/licenses/MIT)
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
static_blocks-0.1.0 | README.md |
static_blocks-0.0.5 | README.md |
static_blocks-0.0.4 | README.md |
static_blocks-0.0.3 | README.md |
static_blocks-0.0.2 | README.md |
static_blocks-0.0.1 | README.md |