
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
merb_helpers_monkey is a Merb plug-in to extend the following helper methods.
$ sudo gem install merb_helpers_monkey
$ vi config/dependencies.rb
In Merb, 'radio_button :checked=>true' and 'radio_button :checked=>false' will genereate:
<input type="radio" checked="true" />
<input type="radio" checked="false" />
But the following output should be generated:
<input type="radio" checked="checked" />
<input type="radio" />
Merb_helpers_monkey extends radio_button() to generate the above tag. So you can write such as 'radio_button :checked=>(params[:foo]="y")'.
These methods are extended to accept new ':index_by' option.
For example:
<% @users.each do |user| %>
<%= fields_for user, :index_by => :id do %>
<p>
<%= text_field :name, :label => 'Name' %>
<%= text_field :mail, :label => 'Mail' %>
</p>
<% end =%>
<% end %>
will generate:
<p>
<label for="user_name_101">Name</label>
<input type="text" name="user[101][name]" id="user_name_101" value="Foo" />
<label for="user_mail_101">Mail</label>
<input type="text" name="user[101][mail]" id="user_mail_101" value="foo@mail.com" />
</p>
<p>
<label for="user_name_102">Name</label>
<input type="text" name="user[102][name]" id="user_name_102" value="Bar" />
<label for="user_mail_102">Mail</label>
<input type="text" name="user[102][mail]" id="user_mail_102" value="bar@mail.com" />
</p>
and the following parameters will be sent:
params = {
:user => {
"101" => { :name => "Foo", :mail => "foo@mail.com" },
"102" => { :name => "Bar", :mail => "bar@mail.com" },
}
}
So you can define controller action like the following:
def update
params[:user].each do |user_id, values|
user = User.get(ur_id) or raise NotFound
user.update_attribute(values)
...
end
end
makoto kuwata <kwa(at)kuwata-lab.com> copyright(c) 2008 kuwata-lab.com all rights reserved.
MIT License
FAQs
Unknown package
We found that merb_helpers_monkey demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.