0.0
No commit activity in last 3 years
No release in over 3 years
Help to organize and minimize boring flash messages code in controllers. Also it requires using internationalization i18n gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 4.0.0
 Project Readme

FlashSpeaker

Simplify organizing your flash messages!

Installation

Add this line to your application's Gemfile:

  gem 'flash_speaker'

And then execute:

$ bundle

Or install it yourself as:

$ gem install flash_speaker

Usage

In the head of ApplicationController add following line:

  include FlashSpeaker

Now you can user specific method in your controller methods. Like:

  def update
    attach_message @user.update(user_params), @user.errors
    redirect_to user_path(@user)
  end

The stucture of the users.yml(for example) file with messages should be next:

  en:
    users:
      actions:
        update:
          success: User is successfully updated!
          failed: There are problems during user updating

You can also create set of default messages in default.yml:

  en:
    default:
      actions:
        update:
          success: <entity> is successfully updated!
          failed: There are problems during <entity> updating

But don't forget specify entity..

  en:
    users:
      entity: User

Contributing

  1. Fork it ( https://github.com/elhowm/flash_speaker/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request