dropzone 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/config/routes.rb +5 -0
  3. metadata +2 -2
  4. data/init.rb +0 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de444d27dc59cce8233315f0f6428153e9bc19e7
4
- data.tar.gz: 87223b03da98b364da6fb8b940f6457b79d285c9
3
+ metadata.gz: cd8c04f8b608a7aff36075755399d06909c5ff50
4
+ data.tar.gz: ba8d2ab45e2f65904db87a52f8183001b0402752
5
5
  SHA512:
6
- metadata.gz: 089fe2702d5c434705508e2f57841a2155a0d37f880f2d4765605ff5a8fc7a31723d59e9b1c17a0f606c5ee6a356e6e897a1d862a2f431341ce5e5cd804176bf
7
- data.tar.gz: 16e469d17535cead98a00cd3731d983f891ac8546f18b7dc36e066d688ecce87a9eb8a580a7712665ca4fc1403045c639a2ef9a3a4b539e981797c6625d8b661
6
+ metadata.gz: 56930b96f2521c4e45447f95648df226d57e3b225e3df65113b57f4d18ec83c1959c940d5329452e3195ba3d4655e59e648d9d234169ee0f9fc3ba883bb04cf9
7
+ data.tar.gz: 35d8d914e6f406111e9bc2ca00d6a531225706810b0763e6927bbb8b3df362f45845ffb783f70a649a25f8c727660a642a8a6b1d3e3848ed0415c3f5a2b119c2
@@ -0,0 +1,5 @@
1
+ Dropzone::Engine.routes.draw do
2
+ match '/profile/:profile_id/:entity_id' => 'profiles#info', :constraints => { :profile_id => /[^\/]*/, :entity_id => /[^\/]*/ }, :via => :get
3
+ match '/profile/:profile_id/:entity_id' => 'profiles#upload_image', :constraints => { :profile_id => /[^\/]*/, :entity_id => /[^\/]*/ }, :via => :post
4
+ match '/profile/:profile_id/:entity_id' => 'profiles#delete_image', :constraints => { :profile_id => /[^\/]*/, :entity_id => /[^\/]*/ }, :via => :delete
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dropzone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Strebitzer
@@ -48,6 +48,7 @@ files:
48
48
  - lib/dropzone/action_view/helpers.rb
49
49
  - lib/dropzone/railtie.rb
50
50
  - lib/dropzone.rb
51
+ - config/routes.rb
51
52
  - app/controllers/dropzone/profiles_controller.rb
52
53
  - app/views/dropzone/index.html.erb
53
54
  - vendor/assets/images/dropzone-pattern.png
@@ -58,7 +59,6 @@ files:
58
59
  - vendor/assets/javascripts/dropzone.js
59
60
  - vendor/assets/javascripts/dropzone.lib.js
60
61
  - vendor/assets/stylesheets/dropzone.scss
61
- - init.rb
62
62
  homepage: https://github.com/tobiasstrebitzer/dropzone-rails4
63
63
  licenses:
64
64
  - MIT
data/init.rb DELETED
@@ -1 +0,0 @@
1
- require 'dropzone'