Low commit activity in last 3 years
A long-lived project that still receives updates
Custom input for Simple Form that renders Mongoid fields for multiple locales.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 4.2
>= 3.0.2
>= 5.1
 Project Readme

Simple Form Localized Input

Build Status Gem Version Coverage Status

Simple Form custom input which renders a field for multiple locales in one form. Designed to be used with Mongoid.

Installation

Add this line to your application's Gemfile:

gem 'simple_form_localized_input'

And then execute:

$ bundle

Or install it yourself as:

$ gem install simple_form_localized_input

Usage

In your model:

class MyModel
  include Mongoid::Document
  field :title, type: String, localize: true
end

In your simple form:

= form.localized_input :title

This works with inputs of various types, and you can pass options to an input as usual.

Contributing

  1. Fork it ( https://github.com/tomasc/simple_form_localized_input/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