remotipart 0.3.4 → 0.4

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remotipart
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 3
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 3
9
8
  - 4
10
- version: 0.3.4
9
+ version: "0.4"
11
10
  platform: ruby
12
11
  authors:
13
12
  - Greg Leppert
@@ -16,7 +15,7 @@ autorequire:
16
15
  bindir: bin
17
16
  cert_chain: []
18
17
 
19
- date: 2011-05-02 00:00:00 -04:00
18
+ date: 2011-07-12 00:00:00 -04:00
20
19
  default_executable:
21
20
  dependencies:
22
21
  - !ruby/object:Gem::Dependency
@@ -33,7 +32,7 @@ dependencies:
33
32
  version: "0"
34
33
  type: :development
35
34
  version_requirements: *id001
36
- description: "Remotipart is a Ruby on Rails gem enabling remote multipart forms (AJAX style file uploads) with jQuery.\n This gem augments the native Rails jQuery remote form function enabling asynchronous file uploads with little to no modification to your application.\n It requires jQuery (http://jquery.com), the Rails jQuery driver (http://github.com/rails/jquery-ujs), and the jQuery Form plugin (http://jquery.malsup.com/form/).\n "
35
+ description: "Remotipart is a Ruby on Rails gem enabling remote multipart forms (AJAX style file uploads) with jQuery.\n This gem augments the native Rails jQuery remote form function enabling asynchronous file uploads with little to no modification to your application.\n "
37
36
  email:
38
37
  - greg@formasfunction.com
39
38
  - steve@alfajango.com
@@ -51,13 +50,20 @@ files:
51
50
  - LICENSE
52
51
  - README.rdoc
53
52
  - Rakefile
54
- - VERSION
55
- - lib/generators/remotipart_generator.rb
56
- - lib/generators/templates/jquery.remotipart.js
53
+ - VERSION_COMPATIBILITY.rdoc
54
+ - lib/generators/remotipart/install/install_generator.rb
57
55
  - lib/remotipart.rb
56
+ - lib/remotipart/rails.rb
57
+ - lib/remotipart/rails/engine.rb
58
+ - lib/remotipart/rails/railtie.rb
59
+ - lib/remotipart/rails/version.rb
60
+ - lib/remotipart/request_helper.rb
61
+ - lib/remotipart/view_helper.rb
58
62
  - remotipart.gemspec
59
63
  - test/helper.rb
60
64
  - test/test_remotipart.rb
65
+ - vendor/assets/javascripts/jquery.form.js
66
+ - vendor/assets/javascripts/jquery.remotipart.js
61
67
  has_rdoc: true
62
68
  homepage: http://github.com/formasfunction/remotipart
63
69
  licenses: []
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.3.4
@@ -1,14 +0,0 @@
1
- require 'rails/generators'
2
-
3
- class RemotipartGenerator < Rails::Generators::Base
4
- def self.source_root
5
- File.join(File.dirname(__FILE__), 'templates')
6
- end
7
-
8
- def install_remotipart
9
- copy_file(
10
- 'jquery.remotipart.js',
11
- 'public/javascripts/jquery.remotipart.js'
12
- )
13
- end
14
- end