jquery-file-upload 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/jquery-file-upload.gemspec +2 -2
- data/lib/jquery-file-upload/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ec6189dbacc262b2393fd77bdfa58317b3ca3dc
|
|
4
|
+
data.tar.gz: 0d49fdfebc76fe06e50ce1775504db81cbd5f991
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60394accfd27953b9f258ad0b89340ea22072e616ae2ec874cb8c1752e9752dc66e4286bd8bfac3c54e3bd4eb797bbdef49e1ddd8ae92dd941b207bfe7c8da9b
|
|
7
|
+
data.tar.gz: a96fabda967e77a7266c2d6ddb3ab34989835275cb02fbee661d0be7d6a02d9f6ed66ffc9b4fe6666e90b835b061306188291290ea7dedc80271a02e83d95c80
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
JQuery File Upload
|
|
2
2
|
=================
|
|
3
3
|
|
|
4
|
+
Based off Blueimp's [JQuery File Upload](https://github.com/blueimp/jQuery-File-Upload)
|
|
5
|
+
|
|
4
6
|
#### Configuration
|
|
5
7
|
|
|
6
8
|
Create a new file called `/config/initializers/rails_jquery_file_upload.rb`
|
|
@@ -9,4 +11,4 @@ Create a new file called `/config/initializers/rails_jquery_file_upload.rb`
|
|
|
9
11
|
config.video_upload = true | false # For including the video javascript. Default is false.
|
|
10
12
|
config.audio_upload = true | false # For including the audio javascript. Default is false.
|
|
11
13
|
config.angular_js = true | false # For including the angular javascript. Default is false.
|
|
12
|
-
end
|
|
14
|
+
end
|
data/jquery-file-upload.gemspec
CHANGED
|
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.name = 'jquery-file-upload'
|
|
8
8
|
s.version = JqueryFileUpload::VERSION
|
|
9
9
|
s.date = '2015-01-07'
|
|
10
|
-
s.summary = "Gem based off Blueimp's of JQuery File Upload"
|
|
11
|
-
s.description = "A gem based off of Blueimp's Jquery File Upload.
|
|
10
|
+
s.summary = "Gem based off Blueimp's of JQuery File Upload."
|
|
11
|
+
s.description = "A gem based off of Blueimp's Jquery File Upload."
|
|
12
12
|
s.authors = ["Michael Stephens"]
|
|
13
13
|
s.email = 'michael.stephens@biola.edu'
|
|
14
14
|
s.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jquery-file-upload
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Stephens
|
|
@@ -24,7 +24,7 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '2.0'
|
|
27
|
-
description: A gem based off of Blueimp's Jquery File Upload.
|
|
27
|
+
description: A gem based off of Blueimp's Jquery File Upload.
|
|
28
28
|
email: michael.stephens@biola.edu
|
|
29
29
|
executables: []
|
|
30
30
|
extensions: []
|
|
@@ -85,5 +85,5 @@ rubyforge_project:
|
|
|
85
85
|
rubygems_version: 2.4.3
|
|
86
86
|
signing_key:
|
|
87
87
|
specification_version: 4
|
|
88
|
-
summary: Gem based off Blueimp's of JQuery File Upload
|
|
88
|
+
summary: Gem based off Blueimp's of JQuery File Upload.
|
|
89
89
|
test_files: []
|