carrierwave-crop-on-fly 0.0.1
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +67 -0
- data/app/assets/javascripts/jcrop.js +145 -0
- data/app/assets/stylesheets/jcrop_fix.css +3 -0
- data/lib/carrierwave-crop-on-fly.rb +1 -0
- data/lib/carrierwave/crop/all.rb +13 -0
- data/lib/carrierwave/crop/engine.rb +8 -0
- data/lib/carrierwave/crop/error.rb +8 -0
- data/lib/carrierwave/crop/extension_crop_data.rb +29 -0
- data/lib/carrierwave/crop/helpers.rb +84 -0
- data/lib/carrierwave/crop/railtie.rb +10 -0
- data/lib/carrierwave/crop/uploaded_file_additions.rb +15 -0
- data/lib/carrierwave/crop/uploader_additions.rb +67 -0
- data/lib/carrierwave/crop/version.rb +5 -0
- data/vendor/assets/images/Jcrop.gif +0 -0
- data/vendor/assets/javascripts/jquery.jcrop.js +1694 -0
- data/vendor/assets/stylesheets/jquery.jcrop.css +165 -0
- metadata +117 -0
@@ -0,0 +1,165 @@
|
|
1
|
+
/* jquery.Jcrop.css v0.9.12 - MIT License */
|
2
|
+
/*
|
3
|
+
The outer-most container in a typical Jcrop instance
|
4
|
+
If you are having difficulty with formatting related to styles
|
5
|
+
on a parent element, place any fixes here or in a like selector
|
6
|
+
|
7
|
+
You can also style this element if you want to add a border, etc
|
8
|
+
A better method for styling can be seen below with .jcrop-light
|
9
|
+
(Add a class to the holder and style elements for that extended class)
|
10
|
+
*/
|
11
|
+
.jcrop-holder {
|
12
|
+
direction: ltr;
|
13
|
+
text-align: left;
|
14
|
+
}
|
15
|
+
/* Selection Border */
|
16
|
+
.jcrop-vline,
|
17
|
+
.jcrop-hline {
|
18
|
+
background: #ffffff url("/assets/Jcrop.gif");
|
19
|
+
font-size: 0;
|
20
|
+
position: absolute;
|
21
|
+
}
|
22
|
+
.jcrop-vline {
|
23
|
+
height: 100%;
|
24
|
+
width: 1px !important;
|
25
|
+
}
|
26
|
+
.jcrop-vline.right {
|
27
|
+
right: 0;
|
28
|
+
}
|
29
|
+
.jcrop-hline {
|
30
|
+
height: 1px !important;
|
31
|
+
width: 100%;
|
32
|
+
}
|
33
|
+
.jcrop-hline.bottom {
|
34
|
+
bottom: 0;
|
35
|
+
}
|
36
|
+
/* Invisible click targets */
|
37
|
+
.jcrop-tracker {
|
38
|
+
height: 100%;
|
39
|
+
width: 100%;
|
40
|
+
/* "turn off" link highlight */
|
41
|
+
-webkit-tap-highlight-color: transparent;
|
42
|
+
/* disable callout, image save panel */
|
43
|
+
-webkit-touch-callout: none;
|
44
|
+
/* disable cut copy paste */
|
45
|
+
-webkit-user-select: none;
|
46
|
+
}
|
47
|
+
/* Selection Handles */
|
48
|
+
.jcrop-handle {
|
49
|
+
background-color: #333333;
|
50
|
+
border: 1px #eeeeee solid;
|
51
|
+
width: 7px;
|
52
|
+
height: 7px;
|
53
|
+
font-size: 1px;
|
54
|
+
}
|
55
|
+
.jcrop-handle.ord-n {
|
56
|
+
left: 50%;
|
57
|
+
margin-left: -4px;
|
58
|
+
margin-top: -4px;
|
59
|
+
top: 0;
|
60
|
+
}
|
61
|
+
.jcrop-handle.ord-s {
|
62
|
+
bottom: 0;
|
63
|
+
left: 50%;
|
64
|
+
margin-bottom: -4px;
|
65
|
+
margin-left: -4px;
|
66
|
+
}
|
67
|
+
.jcrop-handle.ord-e {
|
68
|
+
margin-right: -4px;
|
69
|
+
margin-top: -4px;
|
70
|
+
right: 0;
|
71
|
+
top: 50%;
|
72
|
+
}
|
73
|
+
.jcrop-handle.ord-w {
|
74
|
+
left: 0;
|
75
|
+
margin-left: -4px;
|
76
|
+
margin-top: -4px;
|
77
|
+
top: 50%;
|
78
|
+
}
|
79
|
+
.jcrop-handle.ord-nw {
|
80
|
+
left: 0;
|
81
|
+
margin-left: -4px;
|
82
|
+
margin-top: -4px;
|
83
|
+
top: 0;
|
84
|
+
}
|
85
|
+
.jcrop-handle.ord-ne {
|
86
|
+
margin-right: -4px;
|
87
|
+
margin-top: -4px;
|
88
|
+
right: 0;
|
89
|
+
top: 0;
|
90
|
+
}
|
91
|
+
.jcrop-handle.ord-se {
|
92
|
+
bottom: 0;
|
93
|
+
margin-bottom: -4px;
|
94
|
+
margin-right: -4px;
|
95
|
+
right: 0;
|
96
|
+
}
|
97
|
+
.jcrop-handle.ord-sw {
|
98
|
+
bottom: 0;
|
99
|
+
left: 0;
|
100
|
+
margin-bottom: -4px;
|
101
|
+
margin-left: -4px;
|
102
|
+
}
|
103
|
+
/* Dragbars */
|
104
|
+
.jcrop-dragbar.ord-n,
|
105
|
+
.jcrop-dragbar.ord-s {
|
106
|
+
height: 7px;
|
107
|
+
width: 100%;
|
108
|
+
}
|
109
|
+
.jcrop-dragbar.ord-e,
|
110
|
+
.jcrop-dragbar.ord-w {
|
111
|
+
height: 100%;
|
112
|
+
width: 7px;
|
113
|
+
}
|
114
|
+
.jcrop-dragbar.ord-n {
|
115
|
+
margin-top: -4px;
|
116
|
+
}
|
117
|
+
.jcrop-dragbar.ord-s {
|
118
|
+
bottom: 0;
|
119
|
+
margin-bottom: -4px;
|
120
|
+
}
|
121
|
+
.jcrop-dragbar.ord-e {
|
122
|
+
margin-right: -4px;
|
123
|
+
right: 0;
|
124
|
+
}
|
125
|
+
.jcrop-dragbar.ord-w {
|
126
|
+
margin-left: -4px;
|
127
|
+
}
|
128
|
+
/* The "jcrop-light" class/extension */
|
129
|
+
.jcrop-light .jcrop-vline,
|
130
|
+
.jcrop-light .jcrop-hline {
|
131
|
+
background: #ffffff;
|
132
|
+
filter: alpha(opacity=70) !important;
|
133
|
+
opacity: .70!important;
|
134
|
+
}
|
135
|
+
.jcrop-light .jcrop-handle {
|
136
|
+
-moz-border-radius: 3px;
|
137
|
+
-webkit-border-radius: 3px;
|
138
|
+
background-color: #000000;
|
139
|
+
border-color: #ffffff;
|
140
|
+
border-radius: 3px;
|
141
|
+
}
|
142
|
+
/* The "jcrop-dark" class/extension */
|
143
|
+
.jcrop-dark .jcrop-vline,
|
144
|
+
.jcrop-dark .jcrop-hline {
|
145
|
+
background: #000000;
|
146
|
+
filter: alpha(opacity=70) !important;
|
147
|
+
opacity: 0.7 !important;
|
148
|
+
}
|
149
|
+
.jcrop-dark .jcrop-handle {
|
150
|
+
-moz-border-radius: 3px;
|
151
|
+
-webkit-border-radius: 3px;
|
152
|
+
background-color: #ffffff;
|
153
|
+
border-color: #000000;
|
154
|
+
border-radius: 3px;
|
155
|
+
}
|
156
|
+
/* Simple macro to turn off the antlines */
|
157
|
+
.solid-line .jcrop-vline,
|
158
|
+
.solid-line .jcrop-hline {
|
159
|
+
background: #ffffff;
|
160
|
+
}
|
161
|
+
/* Fix for twitter bootstrap et al. */
|
162
|
+
.jcrop-holder img,
|
163
|
+
img.jcrop-preview {
|
164
|
+
max-width: none;
|
165
|
+
}
|
metadata
ADDED
@@ -0,0 +1,117 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: carrierwave-crop-on-fly
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- evg2108
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-05-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.2'
|
20
|
+
- - "~>"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.2'
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: jquery-rails
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: carrierwave
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 0.8.0
|
54
|
+
- - "~>"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0.8'
|
57
|
+
type: :runtime
|
58
|
+
prerelease: false
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 0.8.0
|
64
|
+
- - "~>"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0.8'
|
67
|
+
description: CarrierWave extension for on fly specifying crop area with preview and
|
68
|
+
cropping images before they saved.
|
69
|
+
email:
|
70
|
+
- evg2108@yandex.ru
|
71
|
+
executables: []
|
72
|
+
extensions: []
|
73
|
+
extra_rdoc_files: []
|
74
|
+
files:
|
75
|
+
- MIT-LICENSE
|
76
|
+
- README.md
|
77
|
+
- app/assets/javascripts/jcrop.js
|
78
|
+
- app/assets/stylesheets/jcrop_fix.css
|
79
|
+
- lib/carrierwave-crop-on-fly.rb
|
80
|
+
- lib/carrierwave/crop/all.rb
|
81
|
+
- lib/carrierwave/crop/engine.rb
|
82
|
+
- lib/carrierwave/crop/error.rb
|
83
|
+
- lib/carrierwave/crop/extension_crop_data.rb
|
84
|
+
- lib/carrierwave/crop/helpers.rb
|
85
|
+
- lib/carrierwave/crop/railtie.rb
|
86
|
+
- lib/carrierwave/crop/uploaded_file_additions.rb
|
87
|
+
- lib/carrierwave/crop/uploader_additions.rb
|
88
|
+
- lib/carrierwave/crop/version.rb
|
89
|
+
- vendor/assets/images/Jcrop.gif
|
90
|
+
- vendor/assets/javascripts/jquery.jcrop.js
|
91
|
+
- vendor/assets/stylesheets/jquery.jcrop.css
|
92
|
+
homepage: https://github.com/evg2108/carrierwave-crop-on-fly
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata: {}
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubyforge_project:
|
112
|
+
rubygems_version: 2.4.5
|
113
|
+
signing_key:
|
114
|
+
specification_version: 4
|
115
|
+
summary: CarrierWave extension for on fly specifying crop area with preview and cropping
|
116
|
+
images before they saved.
|
117
|
+
test_files: []
|