jquery-uploadify-rails 1.0.1 → 1.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 +15 -0
- data/VERSIONS.md +2 -0
- data/lib/jquery/uploadify/rails/engine.rb +3 -0
- data/lib/jquery/uploadify/rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a69225de5b31912d38f4ede4cab78eb4bf3fc456
|
|
4
|
+
data.tar.gz: 2f8426ff70b6187d577e99116d468c47f30d884b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24e8bff8e14da66c944583522ca5f5a34c3770652eb9e1c3d97990cec8c08d05107fd5a585caa400b4af20c50185f888ca8f187776decac9ba71c3c5f5ed7bfb
|
|
7
|
+
data.tar.gz: 0fdb38ba04dba79dbc87591893cb865bf94e263dfae97f3290d3d3db01cee517cf98868546bd291eb9fa94729008d43de55f5b38f0a4908a26ba5ec606e1e3e5
|
data/README.md
CHANGED
|
@@ -34,6 +34,21 @@ Add require directive in your application.css:
|
|
|
34
34
|
*/
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
+
Add images to Rails assets precompile configuration.
|
|
38
|
+
|
|
39
|
+
For Rails 4.1+, add the following line to update config/assets.rb:
|
|
40
|
+
|
|
41
|
+
```ruby
|
|
42
|
+
Rails.application.config.assets.precompile += /jquery\-uploadify\/.+\.(?:swf|png)$/
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
For Rails 3.1+, add the following line to config/application.rb:
|
|
46
|
+
|
|
47
|
+
```ruby
|
|
48
|
+
config.assets.precompile += /jquery\-uploadify\/.+\.(?:swf|png)$/
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
|
|
37
52
|
## Release
|
|
38
53
|
|
|
39
54
|
See [VERSIONS.md](VERSIONS.md) for details.
|
data/VERSIONS.md
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jquery-uploadify-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Reyes Yang
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-03-
|
|
11
|
+
date: 2015-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|