Project

booletania

0.01
No release in over 3 years
Low commit activity in last 3 years
translating AR booleans in I18n files
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.7
>= 0
~> 10.0
>= 0

Runtime

 Project Readme

Booletania

Build Status

Translate ActiveRecord's boolean column

Installation

Add this line to your application's Gemfile:

gem 'booletania'

And then execute:

$ bundle

Or install it yourself as:

$ gem install booletania

Usage

migration

create_table(:invitations) do |t|
  t.boolean :accepted
end

model

class Invitation < ActiveRecord::Base
  include Booletania
  booletania_columns :accepted
end

i18n

ja:
  activerecord:
    attributes:
      invitation/accepted:
        'true': 承諾
        'false': 拒否

or

ja:
  booletania:
    invitation:
      accepted:
        'true': 承諾
        'false': 拒否

#xxx_text

invitation.accepted = true
invitation.accepted_text # => "承諾"

invitation.accepted = false
invitation.accepted_text # => "拒否"

I18n.locale = :en
invitation.accepted_text # => "deny"

invitation.accepted = true
invitation.accepted_text # => "accept"

.xxx_options

Invitation.accepted_options # => [['accept', true], ['deny', false]]

I18n.locale = :ja
Invitation.accepted_options # => [["承諾", true], ["拒否", false]]

for use in form

f.collection_radio_buttons :accepted, Invitation.accepted_options, :last, :first

Contributing

  1. Fork it ( https://github.com/[my-github-username]/booletania/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