![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
A simple improve for Rails form select helper.
We need use form.select ::category_id, Category.collect { |record| [record.name, record.id] }
in so many case.
This gem give use a simple way.
gem "form-select"
app/model/category.rb
class Category
form_select :name, scope: -> { order("name asc") }
form_select :reverse_name, field: [:name, :id], scope: -> { order("name desc") }
end
class User
form_select :login, field: [:login, :to_param], scope: -> { order("id desc") }
form_select :email
form_select :email_value, field: :email
form_select :city, field: :city, scope: -> { where("city is not null").select(:city).distinct }
def to_param
login.downcase
end
end
class Post
form_select :author, field: [:author], scope: -> { where("author is not null").select(:author).distinct }
end
Now you got the helper methods:
irb> Category.name_options
=> [["Android", 3], ["iOS", 2], ["News", 1]]
irb> Category.reverse_name_options
=> [["News", 1], ["iOS", 2], ["Android", 3]]
irb> User.login_options
=> [["Foo", "foo"], ["Mike", "mike"], ["Jason", "jason"]]
irb> User.email_options
=> [["jason@gmail.com", 10], ["mike@foo.com", 11], ["foo@bar.com", 12]]
irb> User.email_value_options
=> [["jason@gmail.com", "jason@gmail.com"], ["mike@foo.com", "mike@foo.com"], ["foo@bar.com", "foo@bar.com"]]
irb> User.city_options
=> [["NewYork", "NewYork"], ["San Francisco", "San Francisco"], ["Chicago", "Chicago"]]
irb> Post.author_options
=> [["Jason", "Jason"], ["Mike", "Mike"], ["Foor", "Foo"]]
So you can easy use it in Rails form:
<%= form_with(model: post, local: true) do |form| %>
<div class="field">
<%= form.label :title %>
<%= form.text_field :title %>
</div>
<div class="field">
<%= form.label :user_id %>
<%= form.select :user_id, User.email_options %>
</div>
<div class="field">
<%= form.label :city %>
<%= form.select :city, User.city_options %>
</div>
<div class="field">
<%= form.label :category_id %>
<%= form.select :category_id, Category.name_options %>
</div>
<div class="actions">
<%= form.submit %>
</div>
<% end %>
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that form-select 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.