Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

localized_fields

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

localized_fields

  • 0.2.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Localized Fields Build Status Build Status

Helps you to create forms with localized fields using Mongoid.

Installation

Add this line to your application's Gemfile:

gem 'localized_fields'

And then execute:

$ bundle

Or install it yourself as:

$ gem install localized_fields

Usage

Localized Fields uses

app/models/post.rb

class Post
  include Mongoid::Document

  field :title, localize: true
end

app/controllers/posts_controller.rb

def new
  @post = Post.new
end

Automatic

app/view/posts/_form.html.erb

<%= form_for @post do |f| %>
  <%= f.localized_fields do |localized_fields| %>
    <%= localized_fields.label :title %>
    <%= localized_fields.text_field :title %>
  <% end %>
<% end %>

Detailed

app/view/posts/_form.html.erb

<%= form_for @post do |f| %>
  <%= f.localized_fields :title do |localized_fields| %>
    <%= localized_fields.label :en %>
    <%= localized_fields.text_field :en %>

    <%= localized_fields.label :pt %>
    <%= localized_fields.text_field :pt %>
  <% end %>
<% end %>

Dependencies

  • rails >= 3.1
  • mongoid >= 2.4

Compatibility

Localized Fiedls is tested against Ruby 1.9.2, 1.9.3 and ruby-head.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

MIT License. Copyright 2012 Tiago Rafael Godinho

FAQs

Package last updated on 15 Jun 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc