
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
= Remotipart: Rails jQuery File Uploads
{}[https://badge.fury.io/rb/remotipart]
{
}[https://travis-ci.com/JangoSteve/remotipart]
{
}[https://codeclimate.com/github/JangoSteve/remotipart]
Remotipart is a Ruby on Rails gem enabling AJAX file uploads with jQuery in Rails 3 and Rails 4 remote forms. This gem augments the native Rails jQuery remote form functionality enabling asynchronous file uploads with little to no modification to your application.
== Dependencies
The jquery-rails gem is included in Rails 3 and Rails 4 by default, and installs {jQuery}[http://jquery.com] and the {Rails jQuery UJS driver (jquery-ujs)}[https://github.com/rails/jquery-ujs]
== Installation
Your app should be using jquery-rails gem v2.3.0 or above.
If you're using an old version of the jquery-rails gem, make sure you have a supported jquery-ujs (rails.js or jquery_ujs.js) version from {VERSION_COMPATIBILITY}[https://github.com/JangoSteve/remotipart/blob/master/VERSION_COMPATIBILITY.rdoc].
[1.] Install the Remotipart gem
gem 'remotipart', '~> 1.2'
bundle install
=== Rails 3.1 and Rails 4
[2.] The necessary js files will automatically be added to the asset pipeline, so add the following to app/assets/javascripts/application.js (right after //= require jquery_ujs):
//= require jquery.remotipart
=== Rails 3.0
[2.] Run the Remotipart install generator to add jquery.iframe-transport.js and jquery.remotipart.js to public/javascripts/
rails g remotipart:install
[3.] The necessary js files will be added to your app's javascript :defaults, so make sure the following is in your application layout:
<%= javascript_include_tag :defaults %>
== Usage
from your Rails controller or view:
if remotipart_submitted?
from your javascript:
$(form).bind("ajax:success", function(){ if ( $(this).data('remotipartSubmitted') ) });
from your javascript:
$(form).on("ajax:remotipartComplete", function(e, data){ console.log(e, data) });
=== Example
sample_layout.html.erb <%= form_for @sample, :html => { :multipart => true }, :remote => true do |f| %>
sample_controller.rb def create respond_to do |format| if @sample.save format.js end end end
create.js.erb // Display a Javascript alert alert('success!'); <% if remotipart_submitted? %> alert('submitted via remotipart') <% else %> alert('submitted via native jquery-ujs') <% end %>
The content type requested from the application can be overridden via the data-type HTML5 attribute:
sample_layout2.html.erb <%= form_for @sample, :html => { :multipart => true }, :remote => true, :data => { :type => :html } do |f| %>
In this case, the application should serve HTML using a create.html.erb template instead of JavaScript.
== Note on Patches/Pull Requests
If you have a general improvement, optimization, or refactoring, please {read this first}[https://github.com/formasfunction/remotipart/wiki/Refactoring-and-Improving-Remotipart].
== Tests
Because of the nature of AJAX file uploads and certain browser restrictions, we could not simply create unit tests (using qunit or jasmine) to test the file upload functionality of remotipart (since the browsers running those test suites won't allow us to set the target of a file upload input using javascript). So, instead we created a demo Rails app using remotipart with all remotipart functionality tested using RSpec and Capybara.
To run tests:
Clone the remotipart branch of the demo app git clone -b remotipart git://github.com/JangoSteve/Rails-jQuery-Demo.git
Install the dependencies bundle install
Run the tests bundle exec rspec spec/
If you need to test your own changes to remotipart, just update the Gemfile with your own fork/branch of remotipart:
gem 'remotipart', :git => 'git://github.com/MY_FORK/remotipart.git', :branch => 'MY_BRANCH'
== Special Thanks
Thank you to Greg Leppert for writing the original version of this gem and providing inspiration for the gem in its current incarnation.
Thank you to {Adam Kerr}[https://github.com/ajrkerr] for helping move over to the simpler jQuery 1.6-compatible iframe-transport.js and for helping write the rack middleware, making remotipart even easier to use in Rails.
== Copyright
Copyright (c) 2013 {Steve Schwartz}[https://github.com/JangoSteve], {Greg Leppert}[https://github.com/leppert]. See LICENSE for details.
FAQs
Unknown package
We found that remotipart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.