cropper_rails 1.1.5 → 1.1.6
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/CODE_OF_CONDUCT.md +2 -1
- data/CONTRIBUTING.md +1 -1
- data/README.md +3 -3
- data/VERSIONS.md +1 -0
- data/cropper_rails.gemspec +3 -3
- data/lib/cropper_rails/version.rb +2 -2
- data/vendor/assets/javascripts/cropper.js +322 -694
- data/vendor/assets/stylesheets/cropper.css +134 -129
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d587dac674704bb9039d1f13bb7ac350447567323cef9df92b703109073f2cf7
|
4
|
+
data.tar.gz: 41ed4c0591388f8a3548ffbc78982cb5e69d474eeee919dd73876386fd5db51f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9854332b18208c46d7d0c1643dcde7c7efdd9209ae84caafbe060b943f91ec82257f10406239d163df51d4b70812fbf57cd6ce53c0e1956989c620ef2f5f984d
|
7
|
+
data.tar.gz: 48e714295b78cb4b400768ef01cff0ca77b6d8a30e37e13616fdc8156ee8ccdd7d51f282f11fc21ba39e5e312802d5e0283a8a1ddda218afcbd891cde1443ced
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -49,4 +49,5 @@ to the project. Any intent to deviate the project from its original purpose
|
|
49
49
|
of existence will constitute grounds for remedial action which may include
|
50
50
|
expulsion from the project.
|
51
51
|
|
52
|
-
This document is the Code of Merit
|
52
|
+
This document is adapted from the Code of Merit, version 1.0.
|
53
|
+
See: https://codeofmerit.org/.
|
data/CONTRIBUTING.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
## Contributing
|
2
2
|
|
3
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
3
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/d1ceward/cropper_rails. By contributing you agree to abide by the Code of Merit.
|
4
4
|
|
5
5
|
Example :
|
6
6
|
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Cropper for Rails
|
2
2
|
[](https://badge.fury.io/rb/cropper_rails)
|
3
|
-
[](https://github.com/
|
3
|
+
[](https://github.com/d1ceward/jquery-cropper-rails/graphs/commit-activity)
|
4
4
|
|
5
5
|
|
6
6
|
[Cropper.js](https://github.com/fengyuanchen/cropperjs) is simple javaScript image cropper.
|
@@ -35,8 +35,8 @@ Add to your `app/assets/stylesheets/application.css`:
|
|
35
35
|
|
36
36
|
## Contributing
|
37
37
|
|
38
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/d1ceward/cropper_rails. By contributing you agree to abide by the Code of Merit.
|
39
39
|
|
40
40
|
## Code of Conduct
|
41
41
|
|
42
|
-
Everyone interacting in the cropper_rails project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
42
|
+
Everyone interacting in the cropper_rails project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/d1ceward/cropper_rails/blob/master/CODE_OF_CONDUCT.md).
|
data/VERSIONS.md
CHANGED
data/cropper_rails.gemspec
CHANGED
@@ -6,12 +6,12 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'cropper_rails'
|
7
7
|
spec.version = Cropper::Rails::VERSION
|
8
8
|
spec.licenses = ['MIT']
|
9
|
-
spec.authors = ['
|
9
|
+
spec.authors = ['d1ceward']
|
10
10
|
spec.email = ['contact@d1ceward.com']
|
11
11
|
|
12
12
|
spec.summary = 'Integrate Cropper library with Rails asset pipeline'
|
13
13
|
spec.description = 'Cropper is a simple image cropping library. This gem integrates Cropper with Rails asset pipeline for ease of use.'
|
14
|
-
spec.homepage = 'https://github.com/
|
14
|
+
spec.homepage = 'https://github.com/d1ceward/cropper_rails'
|
15
15
|
|
16
16
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
17
17
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
|
|
22
22
|
|
23
23
|
spec.add_runtime_dependency 'jquery-rails', '~> 4.0'
|
24
24
|
|
25
|
-
spec.add_development_dependency "bundler", ">= 2.2.
|
25
|
+
spec.add_development_dependency "bundler", ">= 2.2.33"
|
26
26
|
end
|