croppie_rails 1.2.0 → 2.3.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 +12 -3
- data/lib/croppie_rails/version.rb +1 -1
- data/vendor/assets/javascripts/croppie.js +1273 -1148
- 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: f27c243945c0aa2a1fbf4d52c7f40d8164b80538
|
|
4
|
+
data.tar.gz: 0e3c4eab92f2cc22b4c54e0fe24c29d381846387
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d388751247a1cc70dd07d3dd0ff05f2b5b3f7d456419723144d85c4a54c48e7749711e22af1fdec58a6422126f7338696bb3c58f5645fb534899ec11ec726841
|
|
7
|
+
data.tar.gz: 3bac7216fc3dc34dd816a4169bfeb241d55194145ce9e4838c32c4d9460840ffca70a77d7b101a4e1ca87cd2e3b3eba27f7ad6c78d780a657a0e22ab00d25303
|
data/README.md
CHANGED
|
@@ -22,17 +22,23 @@ Or install it yourself as:
|
|
|
22
22
|
|
|
23
23
|
Include javascript file in app/assets/javascripts/application.js:
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
```ruby
|
|
26
|
+
//= require croppie
|
|
27
|
+
```
|
|
26
28
|
|
|
27
29
|
Include stylesheet file on app/assets/stylesheets/application.css:
|
|
28
30
|
|
|
29
|
-
|
|
31
|
+
```ruby
|
|
32
|
+
*= require croppie
|
|
33
|
+
```
|
|
30
34
|
|
|
31
35
|
## Examples
|
|
32
36
|
|
|
33
37
|
Include javascript file in app/assets/javascripts/application.js:
|
|
34
38
|
|
|
35
|
-
|
|
39
|
+
```ruby
|
|
40
|
+
//= require demo_croppie
|
|
41
|
+
```
|
|
36
42
|
|
|
37
43
|
and the view
|
|
38
44
|
|
|
@@ -51,6 +57,9 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/luizpi
|
|
|
51
57
|
|
|
52
58
|
## Versions
|
|
53
59
|
|
|
60
|
+
croppie_rails: 2.3.0
|
|
61
|
+
croppie: 2.3.0
|
|
62
|
+
|
|
54
63
|
croppie_rails: 1.2.0
|
|
55
64
|
croppie: 2.1.1
|
|
56
65
|
|