
Security News
Nx npm Packages Compromised in Supply Chain Attack Weaponizing AI CLI Tools
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
formtastic_datepicker_inputs
Advanced tools
This plugin is based off of a blog post by Grzegorz Brzezinka: http://blog.brzezinka.eu/webmaster-tips/ruby/ruby-on-rails-formtastic-jquery-ui-datepicker
The concept is simple. It adds a new input into formtastic that can be used like this:
<% semantic_form_for @master do |f| -%>
<% f.inputs do -%>
<%= f.input :name %>
<%= f.input :born, :as => :date_picker %>
<% end -%>
<%= f.buttons %>
<% end -%>
It adds a class onto a normal text input called 'ui-date-picker', and the parent
$(document).ready(function(){ $('input.ui-date-picker').datepicker(); });
We currently support both Rails 2 and Rails 3, under Ruby 1.8.7-ish (and 1.9.2-ish). That means, at a bare minimum, you'll want to set-up two rvm gemsets to run your specs against. So, fork the project on Github, clone it, make some gemsets, run bundler, run your specs and then finally set-up an .rvmrc file that specifies Rails 3 as your default gemset and cd back into that directory to load in the .rvmrc file. Something like this:
$ cd ~/code/formtastic $ rvm gemset create formtastic-rails3 $ rvm gemset use formtastic-rails3 $ gem install bundler $ bundle install $ rake spec $ rm Gemfile.lock $ rvm gemset create formtastic-rails2 $ rvm gemset use formtastic-rails2 $ gem install bundler $ RAILS_2=true bundle install $ RAILS_2=true rake spec $ touch .rvmrc $ echo "rvm gemset use formtastic-rails-3" > .rvmrc $ cd ~/code/formtastic
Also, most of the testing environment has been copied straight of formtastic, so if something doesn't make sense here, it probably did where I grabbed it from.
FAQs
Unknown package
We found that formtastic_datepicker_inputs 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
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.