custfrontworkerhhgb12 0.1.0 → 0.2.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93afe428207c8dcc2d84060da25cb5396366e4b4353796febfd5bbfe51449e97
|
4
|
+
data.tar.gz: be1a039afdd6f116c08521199f9f7a9223c7857a66fed563d4e6bef8858f8f74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff73fc18d843f057f4313f9cba8ed544a9969ab131a202c62f9804fcb36fb66710c113681a07be075ba51a6468fe31675e3e47953392419ae6b28ac1b0034fb8
|
7
|
+
data.tar.gz: 9591288c05de38d9a74a4b940e14840f05796031464ab4b834344f0867940f9a0c19d3f71747036cfae40b29a3a8a61ac1cf0618f29e8ead9d8f594265cc4480
|
data/README.md
CHANGED
@@ -20,6 +20,22 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
$ gem install custfrontworkerhhgb12
|
22
22
|
|
23
|
+
## build and update
|
24
|
+
|
25
|
+
- delete the old builded gem from the Gem app
|
26
|
+
- delete form local machin the old installed gem
|
27
|
+
```ruby
|
28
|
+
rm fooGemName-0.1.0.gem
|
29
|
+
```
|
30
|
+
- build the new one
|
31
|
+
```ruby
|
32
|
+
gem build fooGemName.gemspec
|
33
|
+
```
|
34
|
+
- Push the new one
|
35
|
+
```ruby
|
36
|
+
gem push worker-field-nested_has_many-0.4.0.gem
|
37
|
+
```
|
38
|
+
|
23
39
|
## Usage
|
24
40
|
|
25
41
|
TODO: Write usage instructions here
|
@@ -1,227 +1,227 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
//
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
// This file was modified by Creative Tim to keep only the animation that we need for Bootstrap Notify
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
@charset "UTF-8";
|
34
|
+
|
35
|
+
/*!
|
36
|
+
Animate.css - http://daneden.me/animate
|
37
|
+
Licensed under the MIT license - http://opensource.org/licenses/MIT
|
38
|
+
|
39
|
+
Copyright (c) 2015 Daniel Eden
|
40
|
+
*/
|
41
|
+
|
42
|
+
.animated {
|
43
|
+
-webkit-animation-duration: 1s;
|
44
|
+
animation-duration: 1s;
|
45
|
+
-webkit-animation-fill-mode: both;
|
46
|
+
animation-fill-mode: both;
|
47
|
+
}
|
48
|
+
|
49
|
+
.animated.infinite {
|
50
|
+
-webkit-animation-iteration-count: infinite;
|
51
|
+
animation-iteration-count: infinite;
|
52
|
+
}
|
53
|
+
|
54
|
+
.animated.hinge {
|
55
|
+
-webkit-animation-duration: 2s;
|
56
|
+
animation-duration: 2s;
|
57
|
+
}
|
58
|
+
|
59
|
+
.animated.bounceIn,
|
60
|
+
.animated.bounceOut {
|
61
|
+
-webkit-animation-duration: .75s;
|
62
|
+
animation-duration: .75s;
|
63
|
+
}
|
64
|
+
|
65
|
+
.animated.flipOutX,
|
66
|
+
.animated.flipOutY {
|
67
|
+
-webkit-animation-duration: .75s;
|
68
|
+
animation-duration: .75s;
|
69
|
+
}
|
70
|
+
|
71
|
+
@-webkit-keyframes shake {
|
72
|
+
from, to {
|
73
|
+
-webkit-transform: translate3d(0, 0, 0);
|
74
|
+
transform: translate3d(0, 0, 0);
|
75
|
+
}
|
76
|
+
|
77
|
+
10%, 30%, 50%, 70%, 90% {
|
78
|
+
-webkit-transform: translate3d(-10px, 0, 0);
|
79
|
+
transform: translate3d(-10px, 0, 0);
|
80
|
+
}
|
81
|
+
|
82
|
+
20%, 40%, 60%, 80% {
|
83
|
+
-webkit-transform: translate3d(10px, 0, 0);
|
84
|
+
transform: translate3d(10px, 0, 0);
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
@keyframes shake {
|
89
|
+
from, to {
|
90
|
+
-webkit-transform: translate3d(0, 0, 0);
|
91
|
+
transform: translate3d(0, 0, 0);
|
92
|
+
}
|
93
|
+
|
94
|
+
10%, 30%, 50%, 70%, 90% {
|
95
|
+
-webkit-transform: translate3d(-10px, 0, 0);
|
96
|
+
transform: translate3d(-10px, 0, 0);
|
97
|
+
}
|
98
|
+
|
99
|
+
20%, 40%, 60%, 80% {
|
100
|
+
-webkit-transform: translate3d(10px, 0, 0);
|
101
|
+
transform: translate3d(10px, 0, 0);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
.shake {
|
106
|
+
-webkit-animation-name: shake;
|
107
|
+
animation-name: shake;
|
108
|
+
}
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
@-webkit-keyframes fadeInDown {
|
113
|
+
from {
|
114
|
+
opacity: 0;
|
115
|
+
-webkit-transform: translate3d(0, -100%, 0);
|
116
|
+
transform: translate3d(0, -100%, 0);
|
117
|
+
}
|
118
|
+
|
119
|
+
to {
|
120
|
+
opacity: 1;
|
121
|
+
-webkit-transform: none;
|
122
|
+
transform: none;
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
@keyframes fadeInDown {
|
127
|
+
from {
|
128
|
+
opacity: 0;
|
129
|
+
-webkit-transform: translate3d(0, -100%, 0);
|
130
|
+
transform: translate3d(0, -100%, 0);
|
131
|
+
}
|
132
|
+
|
133
|
+
to {
|
134
|
+
opacity: 1;
|
135
|
+
-webkit-transform: none;
|
136
|
+
transform: none;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
.fadeInDown {
|
141
|
+
-webkit-animation-name: fadeInDown;
|
142
|
+
animation-name: fadeInDown;
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
@-webkit-keyframes fadeOut {
|
147
|
+
from {
|
148
|
+
opacity: 1;
|
149
|
+
}
|
150
|
+
|
151
|
+
to {
|
152
|
+
opacity: 0;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
@keyframes fadeOut {
|
157
|
+
from {
|
158
|
+
opacity: 1;
|
159
|
+
}
|
160
|
+
|
161
|
+
to {
|
162
|
+
opacity: 0;
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
.fadeOut {
|
167
|
+
-webkit-animation-name: fadeOut;
|
168
|
+
animation-name: fadeOut;
|
169
|
+
}
|
170
|
+
|
171
|
+
@-webkit-keyframes fadeOutDown {
|
172
|
+
from {
|
173
|
+
opacity: 1;
|
174
|
+
}
|
175
|
+
|
176
|
+
to {
|
177
|
+
opacity: 0;
|
178
|
+
-webkit-transform: translate3d(0, 100%, 0);
|
179
|
+
transform: translate3d(0, 100%, 0);
|
180
|
+
}
|
181
|
+
}
|
182
|
+
|
183
|
+
@keyframes fadeOutDown {
|
184
|
+
from {
|
185
|
+
opacity: 1;
|
186
|
+
}
|
187
|
+
|
188
|
+
to {
|
189
|
+
opacity: 0;
|
190
|
+
-webkit-transform: translate3d(0, 100%, 0);
|
191
|
+
transform: translate3d(0, 100%, 0);
|
192
|
+
}
|
193
|
+
}
|
194
|
+
|
195
|
+
.fadeOutDown {
|
196
|
+
-webkit-animation-name: fadeOutDown;
|
197
|
+
animation-name: fadeOutDown;
|
198
|
+
}
|
199
|
+
|
200
|
+
@-webkit-keyframes fadeOutUp {
|
201
|
+
from {
|
202
|
+
opacity: 1;
|
203
|
+
}
|
204
|
+
|
205
|
+
to {
|
206
|
+
opacity: 0;
|
207
|
+
-webkit-transform: translate3d(0, -100%, 0);
|
208
|
+
transform: translate3d(0, -100%, 0);
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
@keyframes fadeOutUp {
|
213
|
+
from {
|
214
|
+
opacity: 1;
|
215
|
+
}
|
216
|
+
|
217
|
+
to {
|
218
|
+
opacity: 0;
|
219
|
+
-webkit-transform: translate3d(0, -100%, 0);
|
220
|
+
transform: translate3d(0, -100%, 0);
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
.fadeOutUp {
|
225
|
+
-webkit-animation-name: fadeOutUp;
|
226
|
+
animation-name: fadeOutUp;
|
227
|
+
}
|