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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ce288ee89664f60caf37d121b99c5e3b4949ffe
4
- data.tar.gz: c65136d82cf9c14f2828eb667d920cc60d9966b5
3
+ metadata.gz: f27c243945c0aa2a1fbf4d52c7f40d8164b80538
4
+ data.tar.gz: 0e3c4eab92f2cc22b4c54e0fe24c29d381846387
5
5
  SHA512:
6
- metadata.gz: 511a1edcc33118305ed2e40ce19f8fbacaff3cd295dc1fee976bb24f0e8db4d8a6f95a0fb781497b3c17b6e60e4d2667ce17cf78c539bc92743f7b522a62337e
7
- data.tar.gz: 743b90a668d2f04c2527acafb1f2ce68afbb7ca1fb9fce5e6492a80cccc5acc905941ddb0d581b4ed92d1529f50233d3d3fbac61cd20f6efac3e7a85d31dbbcc
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
- //= require croppie
25
+ ```ruby
26
+ //= require croppie
27
+ ```
26
28
 
27
29
  Include stylesheet file on app/assets/stylesheets/application.css:
28
30
 
29
- *= require croppie
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
- //= require demo_croppie
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
 
@@ -1,3 +1,3 @@
1
1
  module CroppieRails
2
- VERSION = "1.2.0"
2
+ VERSION = "2.3.0"
3
3
  end