angular-file-upload-rails 1.6.1 → 1.6.1.1
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 +25 -1
- data/app/assets/javascripts/{FileAPI.flash.swf → angular-file-upload/FileAPI.flash.swf} +0 -0
- data/app/assets/javascripts/{FileAPI.min.js → angular-file-upload/FileAPI.min.js} +0 -0
- data/app/assets/javascripts/{angular-file-upload-html5-shim.js → angular-file-upload/angular-file-upload-html5-shim.js} +0 -0
- data/app/assets/javascripts/{angular-file-upload-shim.js → angular-file-upload/angular-file-upload-shim.js} +0 -0
- data/app/assets/javascripts/{angular-file-upload.js → angular-file-upload/angular-file-upload.js} +0 -0
- data/lib/angular-file-upload/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93dd194c1e20c470f56c1d664c8d3bc6a2c82976
|
|
4
|
+
data.tar.gz: 9097eac1b20ffa2da95433a5383fa5b02ed058c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22170f3c6476b1935983534b43af7c6c66c20cc8f88d61e440662ce7ed2bd822f1b1f6784cd95293528be07fc77ba5a0b71cd9924bda2f1964b547572d928020
|
|
7
|
+
data.tar.gz: 700afd5ceb3556c051cdb723dc5f72f7db2b3bd700cd430b2fd60e19cc1678d31204e5e5de0cd18d43def39d0b194ec58d7539a26b228a0c804a6307d7678db5
|
data/README.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
Angular-File-Upload-Rails
|
|
2
2
|
=========================
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
A gem that includes [angular-file-upload](https://github.com/danialfarid/angular-file-upload) as an asset in the Rails Asset Pipeline (requires Rails 3.1 or higher).
|
|
5
|
+
|
|
6
|
+
Installation
|
|
7
|
+
------------
|
|
8
|
+
|
|
9
|
+
Add the gem to your **Gemfile**:
|
|
10
|
+
|
|
11
|
+
``` ruby
|
|
12
|
+
gem 'angular-file-upload-rails', '~> 1.6.1.1'
|
|
13
|
+
# The gem's version mirrors the included version of angular-file-upload,
|
|
14
|
+
# with an extra .1 for updates independent of the wrapped library's version.
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
and run:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
$ bundle install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Lastly, be sure to include it in your JavaScript manifest (e.g. `application.js`)
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
//= require angular-file-upload
|
|
27
|
+
```
|
|
28
|
+
\* *be sure that angular is required before angular-file-upload*
|
|
5
29
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/app/assets/javascripts/{angular-file-upload.js → angular-file-upload/angular-file-upload.js}
RENAMED
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: angular-file-upload-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.1
|
|
4
|
+
version: 1.6.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joe DiVita
|
|
@@ -66,11 +66,11 @@ files:
|
|
|
66
66
|
- README.md
|
|
67
67
|
- Rakefile
|
|
68
68
|
- angular-file-upload-rails.gemspec
|
|
69
|
-
- app/assets/javascripts/FileAPI.flash.swf
|
|
70
|
-
- app/assets/javascripts/FileAPI.min.js
|
|
71
|
-
- app/assets/javascripts/angular-file-upload-html5-shim.js
|
|
72
|
-
- app/assets/javascripts/angular-file-upload-shim.js
|
|
73
|
-
- app/assets/javascripts/angular-file-upload.js
|
|
69
|
+
- app/assets/javascripts/angular-file-upload/FileAPI.flash.swf
|
|
70
|
+
- app/assets/javascripts/angular-file-upload/FileAPI.min.js
|
|
71
|
+
- app/assets/javascripts/angular-file-upload/angular-file-upload-html5-shim.js
|
|
72
|
+
- app/assets/javascripts/angular-file-upload/angular-file-upload-shim.js
|
|
73
|
+
- app/assets/javascripts/angular-file-upload/angular-file-upload.js
|
|
74
74
|
- lib/angular-file-upload.rb
|
|
75
75
|
- lib/angular-file-upload/rails.rb
|
|
76
76
|
- lib/angular-file-upload/version.rb
|