rails_admin_content_builder 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 6d43a49c5e8aae91e33c9e357d0a846620735d92
4
- data.tar.gz: c213f32dc3f58efa8800f4ff477af14d1fc8780b
2
+ SHA256:
3
+ metadata.gz: 36a21dc388fd40d8c345dcde8ddce064863f0801899abe16da213b1b4523404f
4
+ data.tar.gz: '0108d7b88a06cb49081ac439e4a66c2d866a7dad37461edd265f0a8d0eb38b54'
5
5
  SHA512:
6
- metadata.gz: 9498a6d49929e6132b6f350b43e9c5b5fbfd7aa0d49dd90c061a838c926a1045050056b5ba13b95068c06b6033fa26f72322561b8918665c2d668ac74bee785b
7
- data.tar.gz: 59e6d9043a7eb63dbd1e43590be56c18b350b10a85ad8e23740e06e22a09f03f2f594485929ae492affd370e2261facf5929446348f1c88e7f140c528972dc8b
6
+ metadata.gz: 4c7a153750e7d3982877f3070663064950cf87accf0c89020a5b1ef387d8f5ebe240e3a1ea0dd0e066fc2f3aa7e866dc04c15858262db08e8d883b525b63a6d0
7
+ data.tar.gz: e20ce100f76eb69c9013451bf729526bf0b361f56bc340dfe66ec09741a7a9aa81d442be4657d4c1e3f707bede56c88daf044cbe900f417bc760f6bc46b3be18
@@ -1,4 +1,4 @@
1
- class CreateContentBuilderCategories < ActiveRecord::Migration
1
+ class CreateContentBuilderCategories < ActiveRecord::Migration[5.2]
2
2
  def change
3
3
  create_table :content_builder_categories do |t|
4
4
  t.string :name
@@ -1,4 +1,4 @@
1
- class CreateContentBuilderImages < ActiveRecord::Migration
1
+ class CreateContentBuilderImages < ActiveRecord::Migration[5.2]
2
2
  def change
3
3
  create_table :content_builder_images do |t|
4
4
  t.string :image
@@ -1,4 +1,4 @@
1
- class CreateContentBuilders < ActiveRecord::Migration
1
+ class CreateContentBuilders < ActiveRecord::Migration[5.2]
2
2
  def change
3
3
  create_table :content_builders do |t|
4
4
  t.string :title
@@ -1,3 +1,3 @@
1
1
  module RailsAdminContentBuilder
2
- VERSION = '1.2.0'.freeze
2
+ VERSION = '1.3.0'.freeze
3
3
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ['luizpicolo@gmail.com', 'gmedina.santos@gmail.com']
11
11
 
12
12
  spec.summary = 'Easy way for create contents using rails_admin'
13
- spec.description = 'Easy way for create contents using rails_admin'
13
+ spec.description = 'Easy way for create contents using rails_admin '
14
14
  spec.homepage = 'http://github.com/luizpicolo/rails_admin_content_builder'
15
15
  spec.license = 'MIT'
16
16
 
@@ -24,9 +24,9 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  spec.add_development_dependency 'bundler', '~> 1.11'
26
26
  spec.add_development_dependency 'rake', '~> 10.0'
27
- spec.add_development_dependency 'rails', ['>= 4.0', '< 6']
27
+ spec.add_development_dependency 'rails', ['>= 5.0', '< 6']
28
28
  spec.add_development_dependency 'rspec-rails', '~> 3.0'
29
- spec.add_development_dependency 'rails_admin', '~> 0.8.1'
29
+ spec.add_development_dependency 'rails_admin', '~> 1.3', '>= 1.3.0'
30
30
  spec.add_development_dependency 'capybara', '~> 2.7', '>= 2.7.0'
31
31
  spec.add_development_dependency 'launchy', '~> 2.4', '>= 2.4.3'
32
32
  spec.add_development_dependency 'shoulda-matchers', '~> 3.1'
@@ -34,11 +34,11 @@ Gem::Specification.new do |spec|
34
34
  spec.add_development_dependency 'factory_girl_rails', '~> 4.7', '>= 4.7.0'
35
35
  spec.add_development_dependency 'faker', '~> 1.6', '>= 1.6.3'
36
36
 
37
- spec.add_runtime_dependency 'carrierwave', '~> 0.11.0'
37
+ spec.add_runtime_dependency 'carrierwave', '~> 1.2', '>= 1.2.0'
38
38
  spec.add_runtime_dependency 'medium-editor-rails', '~> 2.1', '>= 2.1.0'
39
39
  spec.add_runtime_dependency 'mini_magick', '~> 4.5', '>= 4.5.1'
40
40
  spec.add_runtime_dependency 'friendly_id', '~> 5.1', '>= 5.1.0'
41
- spec.add_runtime_dependency 'simple_form', '~> 3.2'
41
+ spec.add_runtime_dependency 'simple_form', '~> 4.0', '>= 4.0.0'
42
42
  spec.add_runtime_dependency 'search_cop', '~> 1.0', '>= 1.0.6'
43
43
  spec.add_runtime_dependency 'rails-html-sanitizer', '~> 1.0', '>= 1.0.0'
44
44
  end
@@ -1,206 +1,237 @@
1
1
  PATH
2
- remote: ../../
2
+ remote: ../..
3
3
  specs:
4
- rails_admin_content_builder (1.0.4)
5
- carrierwave (~> 0.11.0)
4
+ rails_admin_content_builder (1.2.0)
5
+ carrierwave (~> 1.2, >= 1.2.0)
6
6
  friendly_id (~> 5.1, >= 5.1.0)
7
7
  medium-editor-rails (~> 2.1, >= 2.1.0)
8
8
  mini_magick (~> 4.5, >= 4.5.1)
9
9
  rails-html-sanitizer (~> 1.0, >= 1.0.0)
10
10
  search_cop (~> 1.0, >= 1.0.6)
11
- simple_form (~> 3.2)
11
+ simple_form (~> 4.0, >= 4.0.0)
12
12
 
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- actionmailer (4.2.6)
17
- actionpack (= 4.2.6)
18
- actionview (= 4.2.6)
19
- activejob (= 4.2.6)
16
+ actioncable (5.2.0)
17
+ actionpack (= 5.2.0)
18
+ nio4r (~> 2.0)
19
+ websocket-driver (>= 0.6.1)
20
+ actionmailer (5.2.0)
21
+ actionpack (= 5.2.0)
22
+ actionview (= 5.2.0)
23
+ activejob (= 5.2.0)
20
24
  mail (~> 2.5, >= 2.5.4)
21
- rails-dom-testing (~> 1.0, >= 1.0.5)
22
- actionpack (4.2.6)
23
- actionview (= 4.2.6)
24
- activesupport (= 4.2.6)
25
- rack (~> 1.6)
26
- rack-test (~> 0.6.2)
27
- rails-dom-testing (~> 1.0, >= 1.0.5)
25
+ rails-dom-testing (~> 2.0)
26
+ actionpack (5.2.0)
27
+ actionview (= 5.2.0)
28
+ activesupport (= 5.2.0)
29
+ rack (~> 2.0)
30
+ rack-test (>= 0.6.3)
31
+ rails-dom-testing (~> 2.0)
28
32
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
- actionview (4.2.6)
30
- activesupport (= 4.2.6)
33
+ actionview (5.2.0)
34
+ activesupport (= 5.2.0)
31
35
  builder (~> 3.1)
32
- erubis (~> 2.7.0)
33
- rails-dom-testing (~> 1.0, >= 1.0.5)
34
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
35
- activejob (4.2.6)
36
- activesupport (= 4.2.6)
37
- globalid (>= 0.3.0)
38
- activemodel (4.2.6)
39
- activesupport (= 4.2.6)
40
- builder (~> 3.1)
41
- activerecord (4.2.6)
42
- activemodel (= 4.2.6)
43
- activesupport (= 4.2.6)
44
- arel (~> 6.0)
45
- activesupport (4.2.6)
46
- i18n (~> 0.7)
47
- json (~> 1.7, >= 1.7.7)
36
+ erubi (~> 1.4)
37
+ rails-dom-testing (~> 2.0)
38
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
39
+ activejob (5.2.0)
40
+ activesupport (= 5.2.0)
41
+ globalid (>= 0.3.6)
42
+ activemodel (5.2.0)
43
+ activesupport (= 5.2.0)
44
+ activerecord (5.2.0)
45
+ activemodel (= 5.2.0)
46
+ activesupport (= 5.2.0)
47
+ arel (>= 9.0)
48
+ activestorage (5.2.0)
49
+ actionpack (= 5.2.0)
50
+ activerecord (= 5.2.0)
51
+ marcel (~> 0.3.1)
52
+ activesupport (5.2.0)
53
+ concurrent-ruby (~> 1.0, >= 1.0.2)
54
+ i18n (>= 0.7, < 2)
48
55
  minitest (~> 5.1)
49
- thread_safe (~> 0.3, >= 0.3.4)
50
56
  tzinfo (~> 1.1)
51
- arel (6.0.3)
52
- builder (3.2.2)
53
- carrierwave (0.11.2)
54
- activemodel (>= 3.2.0)
55
- activesupport (>= 3.2.0)
56
- json (>= 1.7)
57
+ arel (9.0.0)
58
+ builder (3.2.3)
59
+ carrierwave (1.2.2)
60
+ activemodel (>= 4.0.0)
61
+ activesupport (>= 4.0.0)
57
62
  mime-types (>= 1.16)
58
- mimemagic (>= 0.3.0)
59
- coffee-rails (4.1.1)
63
+ coffee-rails (4.2.2)
60
64
  coffee-script (>= 2.2.0)
61
- railties (>= 4.0.0, < 5.1.x)
65
+ railties (>= 4.0.0)
62
66
  coffee-script (2.4.1)
63
67
  coffee-script-source
64
68
  execjs
65
- coffee-script-source (1.10.0)
66
- concurrent-ruby (1.0.1)
67
- diff-lcs (1.2.5)
68
- erubis (2.7.0)
69
- execjs (2.6.0)
70
- factory_girl (4.7.0)
69
+ coffee-script-source (1.12.2)
70
+ concurrent-ruby (1.0.5)
71
+ crass (1.0.4)
72
+ diff-lcs (1.3)
73
+ erubi (1.7.1)
74
+ execjs (2.7.0)
75
+ factory_girl (4.9.0)
71
76
  activesupport (>= 3.0.0)
72
- factory_girl_rails (4.7.0)
73
- factory_girl (~> 4.7.0)
77
+ factory_girl_rails (4.9.0)
78
+ factory_girl (~> 4.9.0)
74
79
  railties (>= 3.0.0)
75
- font-awesome-rails (4.6.1.0)
76
- railties (>= 3.2, < 5.1)
77
- friendly_id (5.1.0)
80
+ ffi (1.9.25)
81
+ font-awesome-rails (4.7.0.4)
82
+ railties (>= 3.2, < 6.0)
83
+ friendly_id (5.2.4)
78
84
  activerecord (>= 4.0.0)
79
- globalid (0.3.6)
80
- activesupport (>= 4.1.0)
81
- haml (4.0.7)
85
+ globalid (0.4.1)
86
+ activesupport (>= 4.2.0)
87
+ haml (5.0.4)
88
+ temple (>= 0.8.0)
82
89
  tilt
83
- i18n (0.7.0)
84
- jquery-rails (4.1.1)
90
+ i18n (1.0.1)
91
+ concurrent-ruby (~> 1.0)
92
+ jquery-rails (4.3.3)
85
93
  rails-dom-testing (>= 1, < 3)
86
94
  railties (>= 4.2.0)
87
95
  thor (>= 0.14, < 2.0)
88
96
  jquery-ui-rails (5.0.5)
89
97
  railties (>= 3.2.16)
90
- json (1.8.3)
91
- kaminari (0.16.3)
92
- actionpack (>= 3.0.0)
93
- activesupport (>= 3.0.0)
94
- loofah (2.0.3)
98
+ kaminari (1.1.1)
99
+ activesupport (>= 4.1.0)
100
+ kaminari-actionview (= 1.1.1)
101
+ kaminari-activerecord (= 1.1.1)
102
+ kaminari-core (= 1.1.1)
103
+ kaminari-actionview (1.1.1)
104
+ actionview
105
+ kaminari-core (= 1.1.1)
106
+ kaminari-activerecord (1.1.1)
107
+ activerecord
108
+ kaminari-core (= 1.1.1)
109
+ kaminari-core (1.1.1)
110
+ loofah (2.2.2)
111
+ crass (~> 1.0.2)
95
112
  nokogiri (>= 1.5.9)
96
- mail (2.6.4)
97
- mime-types (>= 1.16, < 4)
98
- medium-editor-rails (2.2.0)
113
+ mail (2.7.0)
114
+ mini_mime (>= 0.1.1)
115
+ marcel (0.3.2)
116
+ mimemagic (~> 0.3.2)
117
+ medium-editor-rails (2.3.1)
99
118
  railties (>= 3.0)
100
- mime-types (3.0)
119
+ method_source (0.9.0)
120
+ mime-types (3.1)
101
121
  mime-types-data (~> 3.2015)
102
- mime-types-data (3.2016.0221)
122
+ mime-types-data (3.2016.0521)
103
123
  mimemagic (0.3.2)
104
- mini_magick (4.5.1)
105
- mini_portile2 (2.0.0)
106
- minitest (5.8.4)
124
+ mini_magick (4.8.0)
125
+ mini_mime (1.0.0)
126
+ mini_portile2 (2.3.0)
127
+ minitest (5.11.3)
107
128
  nested_form (0.3.2)
108
- nokogiri (1.6.7.2)
109
- mini_portile2 (~> 2.0.0.rc2)
129
+ nio4r (2.3.1)
130
+ nokogiri (1.8.3)
131
+ mini_portile2 (~> 2.3.0)
110
132
  polyglot (0.3.5)
111
- rack (1.6.4)
112
- rack-pjax (0.8.0)
133
+ rack (2.0.5)
134
+ rack-pjax (1.0.0)
113
135
  nokogiri (~> 1.5)
114
- rack (~> 1.1)
115
- rack-test (0.6.3)
116
- rack (>= 1.0)
117
- rails (4.2.6)
118
- actionmailer (= 4.2.6)
119
- actionpack (= 4.2.6)
120
- actionview (= 4.2.6)
121
- activejob (= 4.2.6)
122
- activemodel (= 4.2.6)
123
- activerecord (= 4.2.6)
124
- activesupport (= 4.2.6)
125
- bundler (>= 1.3.0, < 2.0)
126
- railties (= 4.2.6)
127
- sprockets-rails
128
- rails-deprecated_sanitizer (1.0.3)
129
- activesupport (>= 4.2.0.alpha)
130
- rails-dom-testing (1.0.7)
131
- activesupport (>= 4.2.0.beta, < 5.0)
132
- nokogiri (~> 1.6.0)
133
- rails-deprecated_sanitizer (>= 1.0.1)
134
- rails-html-sanitizer (1.0.3)
135
- loofah (~> 2.0)
136
- rails_admin (0.8.1)
136
+ rack (>= 1.1)
137
+ rack-test (1.0.0)
138
+ rack (>= 1.0, < 3)
139
+ rails (5.2.0)
140
+ actioncable (= 5.2.0)
141
+ actionmailer (= 5.2.0)
142
+ actionpack (= 5.2.0)
143
+ actionview (= 5.2.0)
144
+ activejob (= 5.2.0)
145
+ activemodel (= 5.2.0)
146
+ activerecord (= 5.2.0)
147
+ activestorage (= 5.2.0)
148
+ activesupport (= 5.2.0)
149
+ bundler (>= 1.3.0)
150
+ railties (= 5.2.0)
151
+ sprockets-rails (>= 2.0.0)
152
+ rails-dom-testing (2.0.3)
153
+ activesupport (>= 4.2.0)
154
+ nokogiri (>= 1.6)
155
+ rails-html-sanitizer (1.0.4)
156
+ loofah (~> 2.2, >= 2.2.2)
157
+ rails_admin (1.3.0)
137
158
  builder (~> 3.1)
138
159
  coffee-rails (~> 4.0)
139
160
  font-awesome-rails (>= 3.0, < 5)
140
- haml (~> 4.0)
161
+ haml (>= 4.0, < 6)
141
162
  jquery-rails (>= 3.0, < 5)
142
163
  jquery-ui-rails (~> 5.0)
143
- kaminari (~> 0.14)
164
+ kaminari (>= 0.14, < 2.0)
144
165
  nested_form (~> 0.3)
145
- rack-pjax (~> 0.7)
146
- rails (~> 4.0)
147
- remotipart (~> 1.0)
148
- safe_yaml (~> 1.0)
166
+ rack-pjax (>= 0.7)
167
+ rails (>= 4.0, < 6)
168
+ remotipart (~> 1.3)
149
169
  sass-rails (>= 4.0, < 6)
150
- railties (4.2.6)
151
- actionpack (= 4.2.6)
152
- activesupport (= 4.2.6)
170
+ railties (5.2.0)
171
+ actionpack (= 5.2.0)
172
+ activesupport (= 5.2.0)
173
+ method_source
153
174
  rake (>= 0.8.7)
154
175
  thor (>= 0.18.1, < 2.0)
155
- rake (11.1.2)
156
- remotipart (1.2.1)
157
- rspec-core (3.4.4)
158
- rspec-support (~> 3.4.0)
159
- rspec-expectations (3.4.0)
176
+ rake (12.3.1)
177
+ rb-fsevent (0.10.3)
178
+ rb-inotify (0.9.10)
179
+ ffi (>= 0.5.0, < 2)
180
+ remotipart (1.4.2)
181
+ rspec-core (3.7.1)
182
+ rspec-support (~> 3.7.0)
183
+ rspec-expectations (3.7.0)
160
184
  diff-lcs (>= 1.2.0, < 2.0)
161
- rspec-support (~> 3.4.0)
162
- rspec-mocks (3.4.1)
185
+ rspec-support (~> 3.7.0)
186
+ rspec-mocks (3.7.0)
163
187
  diff-lcs (>= 1.2.0, < 2.0)
164
- rspec-support (~> 3.4.0)
165
- rspec-rails (3.4.2)
166
- actionpack (>= 3.0, < 4.3)
167
- activesupport (>= 3.0, < 4.3)
168
- railties (>= 3.0, < 4.3)
169
- rspec-core (~> 3.4.0)
170
- rspec-expectations (~> 3.4.0)
171
- rspec-mocks (~> 3.4.0)
172
- rspec-support (~> 3.4.0)
173
- rspec-support (3.4.1)
174
- safe_yaml (1.0.4)
175
- sass (3.4.22)
176
- sass-rails (5.0.4)
177
- railties (>= 4.0.0, < 5.0)
188
+ rspec-support (~> 3.7.0)
189
+ rspec-rails (3.7.2)
190
+ actionpack (>= 3.0)
191
+ activesupport (>= 3.0)
192
+ railties (>= 3.0)
193
+ rspec-core (~> 3.7.0)
194
+ rspec-expectations (~> 3.7.0)
195
+ rspec-mocks (~> 3.7.0)
196
+ rspec-support (~> 3.7.0)
197
+ rspec-support (3.7.1)
198
+ sass (3.5.6)
199
+ sass-listen (~> 4.0.0)
200
+ sass-listen (4.0.0)
201
+ rb-fsevent (~> 0.9, >= 0.9.4)
202
+ rb-inotify (~> 0.9, >= 0.9.7)
203
+ sass-rails (5.0.7)
204
+ railties (>= 4.0.0, < 6)
178
205
  sass (~> 3.1)
179
206
  sprockets (>= 2.8, < 4.0)
180
207
  sprockets-rails (>= 2.0, < 4.0)
181
208
  tilt (>= 1.1, < 3)
182
- search_cop (1.0.6)
209
+ search_cop (1.0.9)
183
210
  treetop
184
- shoulda-matchers (3.1.1)
211
+ shoulda-matchers (3.1.2)
185
212
  activesupport (>= 4.0.0)
186
- simple_form (3.3.1)
187
- actionpack (> 4, < 5.1)
188
- activemodel (> 4, < 5.1)
189
- sprockets (3.6.0)
213
+ simple_form (4.0.1)
214
+ actionpack (>= 5.0)
215
+ activemodel (>= 5.0)
216
+ sprockets (3.7.1)
190
217
  concurrent-ruby (~> 1.0)
191
218
  rack (> 1, < 3)
192
- sprockets-rails (3.0.4)
219
+ sprockets-rails (3.2.1)
193
220
  actionpack (>= 4.0)
194
221
  activesupport (>= 4.0)
195
222
  sprockets (>= 3.0.0)
196
- sqlite3 (1.3.11)
197
- thor (0.19.1)
198
- thread_safe (0.3.5)
199
- tilt (2.0.2)
200
- treetop (1.6.8)
223
+ sqlite3 (1.3.13)
224
+ temple (0.8.0)
225
+ thor (0.20.0)
226
+ thread_safe (0.3.6)
227
+ tilt (2.0.8)
228
+ treetop (1.6.10)
201
229
  polyglot (~> 0.3)
202
- tzinfo (1.2.2)
230
+ tzinfo (1.2.5)
203
231
  thread_safe (~> 0.1)
232
+ websocket-driver (0.7.0)
233
+ websocket-extensions (>= 0.1.0)
234
+ websocket-extensions (0.1.3)
204
235
 
205
236
  PLATFORMS
206
237
  ruby
@@ -214,4 +245,4 @@ DEPENDENCIES
214
245
  sqlite3
215
246
 
216
247
  BUNDLED WITH
217
- 1.12.5
248
+ 1.16.1