Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
kwatch-merb_helpers_monkey
Advanced tools
merb_helpers_monkey is a Merb plug-in to extend the following helper methods.
$ sudo gem install merb_helpers_monkey --source=http://gems.github.com
$ 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 kwatch-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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.