jquery-uploadify-rails 1.0.2 → 1.1.0
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 +2 -15
- data/VERSIONS.md +1 -0
- data/lib/jquery/uploadify/rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3e38b3c53fd55b9c1f10235e70203b4d1e55124
|
|
4
|
+
data.tar.gz: 1ddfe51128e1e643d12073fd278ffc4fd380ce5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fe024d2e715cde5f716812ae99fbf38cf6ccddc1f10c2a23fcf962ce0daeb4145578ec15dfadeeca5c99127461443aca4a7af6f332e3512a2c04a83ed3c594e
|
|
7
|
+
data.tar.gz: ee7d044fc2560983994f9ecbb15e5f04d7ec1a08fdb479f3b867c820db69ceda9c4bff77977858902de01a2c9bf159b4d4cfbeae995909749c8989b425368e0a
|
data/README.md
CHANGED
|
@@ -20,6 +20,8 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
+
If your gem version < 1.1.0, Please reference [1.0.2's README.md](https://github.com/reyesyang/jquery-uploadify-rails/blob/v1.0.2/README.md)
|
|
24
|
+
|
|
23
25
|
Add require directive in your application.js:
|
|
24
26
|
|
|
25
27
|
```javascript
|
|
@@ -34,21 +36,6 @@ Add require directive in your application.css:
|
|
|
34
36
|
*/
|
|
35
37
|
```
|
|
36
38
|
|
|
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
|
-
|
|
52
39
|
## Release
|
|
53
40
|
|
|
54
41
|
See [VERSIONS.md](VERSIONS.md) for details.
|
data/VERSIONS.md
CHANGED