pageflow 13.0.0.rc1 → 13.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +163 -234
  3. data/lib/pageflow/version.rb +1 -1
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8fab5dd114de577bd568932a8cb40b211acbe465ed3efc7d00675721bd2e1c3
4
- data.tar.gz: f8e0dd2bdbdf379f12da158eea9037c022379a670ae325369a983b2d792ca22c
3
+ metadata.gz: 7697475a5d486aa1f3141e78142d3f3ee516df9d79018efa40f12b78c5210b9b
4
+ data.tar.gz: d2210666f335bc9ffadfc12fb3010d4068f93f710a1db63c42993295762e0a90
5
5
  SHA512:
6
- metadata.gz: 7e9f66f15ec2e22291e73fd266557a71d9559e75c84cdfa9a76528acd7321ad8edac53a122a3131fd013d8d87baaf19365734b5bc4655ce2e917c71d7f561536
7
- data.tar.gz: bdb6faef9e4031aa7c41aff37027dc4a2b7b21ed09ae80b33bfedc8df42c7f1907bbd82b411b7b9b8b4bf2bc9872f87c2bb687804b55281cb6fb2e96f1222fe4
6
+ metadata.gz: b056f5a0af277752c091a07e198b76865ea6af0b461b8b071763d1032305e1eea64495c96e4818cadbd6b97e9105392f806eb7468f60ae5e5929768e2e2c97cd
7
+ data.tar.gz: 1fc51de4006d89bb6a53efe78cf3b13d191b5df731026fcf2270cb4327149004344eb93849f1ba5af91164df2b0be8c6cf4e1f1388da0d8cd42054c3a9b03b83
data/CHANGELOG.md CHANGED
@@ -1,79 +1,138 @@
1
1
  # CHANGELOG
2
2
 
3
- ### Version 13.0.0.rc1
3
+ ### Version 13.0.0
4
4
 
5
5
  2018-12-03
6
6
 
7
- [Compare changes](https://github.com/codevise/pageflow/compare/v13.0.0.beta7...v13.0.0.rc1)
7
+ [Compare changes](https://github.com/codevise/pageflow/compare/12-x-stable...v13.0.0)
8
8
 
9
- #### Breaking Changes
9
+ See
10
+ [changes grouped by pre releases](https://github.com/codevise/pageflow/blob/v13.0.0.rc1/CHANGELOG.md).
10
11
 
11
- - Remove deprecated `HostedFile.columns` method
12
- ([#1085](https://github.com/codevise/pageflow/pull/1085))
12
+ #### Manual Update Steps
13
13
 
14
- Migrations for models including `Pageflow::HostedFile` can no longer
15
- use `Pageflow::HostedFile.columns`. The call has to be replaced with
16
- the list of columns. See the
17
- [guide on creating files types](doc/creating_file_types.md) for an
18
- updated migration template.
14
+ - All of the migrations of earlier versions have been consolidated
15
+ into a single migration to speed up setup of new applications.
16
+ ([#975](https://github.com/codevise/pageflow/pull/975))
19
17
 
20
- - Remove `HostedFile#keep_on_filesystem_after_upload_to_s3`
21
- ([#1082](https://github.com/codevise/pageflow/pull/1082))
18
+ Make sure to update your application to Pageflow 12.2 before
19
+ updating to 13.0 to make sure the host application contains all
20
+ migrations.
22
21
 
23
- Pageflow plugins defining file types need to change their jobs to
24
- redownload attachments for processing.
22
+ - Upgraded to Rails 5.2 and Active Admin 1.3
23
+ ([#938](https://github.com/codevise/pageflow/pull/938),
24
+ [#989](https://github.com/codevise/pageflow/pull/989))
25
25
 
26
- #### Published Entries
26
+ Follow the Rails upgrade guide and review the Active Admin changelog
27
+ to update the host application.
27
28
 
28
- - Introduce widget insert points
29
- ([#1050](https://github.com/codevise/pageflow/pull/1050),
30
- [#1081](https://github.com/codevise/pageflow/pull/1081))
31
- - Init page transitions after navigation direction
32
- ([#1047](https://github.com/codevise/pageflow/pull/1047))
29
+ - Migrated from Resque to Active Job
30
+ ([#976](https://github.com/codevise/pageflow/pull/976))
33
31
 
34
- #### Editor
32
+ Pageflow no longer depends on Resque, but can work with different
33
+ Active Job backends instead. The install generator still sets up
34
+ Resque as backend. To coninute using Resque in an existing
35
+ application, you need to add the following dependencies to the host
36
+ application's `Gemfile`:
35
37
 
36
- - Add maxlength attribute to text input fields
37
- ([#1063](https://github.com/codevise/pageflow/pull/1063),
38
- [#1075](https://github.com/codevise/pageflow/pull/1075))
38
+ gem 'resque', '~> 1.25'
39
+ gem 'resque-scheduler', '~> 2.5'
40
+ gem 'ar_after_transaction', '~> 0.5.0'
41
+ gem 'redis', '~> 3.0'
42
+ gem 'redis-namespace', '~> 1.5'
39
43
 
40
- #### Admin
44
+ Then set Resque as default queue adapter in `config/application.rb`:
41
45
 
42
- - Redirect to active tab when modifying revisions
43
- ([#1066](https://github.com/codevise/pageflow/pull/1066))
44
- - Bug fix: Run checkbox toggle script for accounts only on new and edit
45
- ([#1072](https://github.com/codevise/pageflow/pull/1072))
46
- - Bug fix: Fix flash notice on revision restore
47
- ([#1071](https://github.com/codevise/pageflow/pull/1071))
48
- - Bug fix: Prevent class name collision in admin tabs view
49
- ([#1046](https://github.com/codevise/pageflow/pull/1046))
46
+ config.active_job.queue_adapter = :resque
50
47
 
51
- #### Rails Engine
48
+ The `resque-logger` and `resque_mailer` gems are no longer
49
+ used. Their initializers need to be removed from the host
50
+ application:
52
51
 
53
- - Fix example migration in file type guide
54
- ([#1087](https://github.com/codevise/pageflow/pull/1087))
52
+ $ rm config/initializers/resque_logger.rb
53
+ $ rm config/initializers/resque_mailer.rb
55
54
 
56
- #### Internal
55
+ The following unused line has been removed from
56
+ `Pageflow::AbilityMixin`:
57
57
 
58
- - Add js feature spec for published entry
59
- ([#1049](https://github.com/codevise/pageflow/pull/1049))
60
- - Fix bourbon deprecation warnings
61
- ([#1070](https://github.com/codevise/pageflow/pull/1070))
62
- - Fix warnings caused by Enzyme 2.8.2
63
- ([#1053](https://github.com/codevise/pageflow/pull/1053))
64
- - Make js specs fail on js errors
65
- ([#1048](https://github.com/codevise/pageflow/pull/1048),
66
- [#1086](https://github.com/codevise/pageflow/pull/1086))
58
+ can(:manage, Resque) if user.admin?
59
+
60
+ If the host application depends on this permission, you need to add
61
+ it to the `Ability` yourself.
62
+
63
+ - Upgraded to Devise 4.4.0
64
+ ([#932](https://github.com/codevise/pageflow/pull/932))
65
+
66
+ Consider re-running the Devise intall generator to update the Devise
67
+ initializer:
68
+
69
+ $ bin/rails generate devise:install
70
+
71
+ - Devise Async has been removed
72
+ ([#932](https://github.com/codevise/pageflow/pull/932))
67
73
 
68
- ### Version 13.0.0.beta7
74
+ We now use Active Job to allow sending Devise mails in background
75
+ jobs. The Device Async initializer (which was originally created by
76
+ the `pageflow:install` generator) needs to be removed:
77
+
78
+ $ rm config/initializers/device_async.rb
79
+
80
+ - The deprecated Factory Girl gem has been replaced with its successor
81
+ Factory Bot. To continue using factories defined by Pageflow, you
82
+ need to switch as well.
83
+ ([#943](https://github.com/codevise/pageflow/pull/943))
84
+
85
+ - Upgraded to Paperclip 6.1
86
+ ([#983](https://github.com/codevise/pageflow/pull/983))
87
+
88
+ Set the name of the S3 region you are using in
89
+ `config/initializers/pageflow.rb`. The complete configuration looks
90
+ like this:
91
+
92
+ config.paperclip_s3_default_options.merge!(
93
+ s3_credentials: {
94
+ bucket: ENV.fetch('S3_BUCKET', 'com-example-pageflow-development'),
95
+ access_key_id: ENV.fetch('S3_ACCESS_KEY', 'xxx'),
96
+ secret_access_key: ENV.fetch('S3_SECRET_KEY', 'xxx'),
97
+ },
98
+ s3_host_name: ENV.fetch('S3_HOST_NAME', 's3-eu-west-1.amazonaws.com'),
99
+ s3_region: ENV.fetch('S3_REGION', 'eu-central-1'), # <= new line
100
+ s3_host_alias: ENV.fetch('S3_HOST_ALIAS', 'com-example-pageflow.s3-website-eu-west-1.amazonaws.com'),
101
+ s3_protocol: ENV.fetch('S3_PROTOCOL', 'http')
102
+ )
103
+
104
+ - The name of the root folder in the S3 bucket needs to be configured
105
+ explicitly.
106
+ ([#985](https://github.com/codevise/pageflow/pull/985)
107
+
108
+ Add the following code to your Pageflow initializer to keep using
109
+ host specific root folders in development S3 buckets.
110
+
111
+ config.paperclip_s3_root =
112
+ if Rails.env.development?
113
+ require 'socket'
114
+ Socket.gethostname
115
+ else
116
+ 'main'
117
+ end
69
118
 
70
- 2018-10-23
119
+ This used to be the default behavior.
120
+
121
+ - Migrated to `state_machines` gem
122
+ ([#981](https://github.com/codevise/pageflow/pull/981))
71
123
 
72
- [Compare changes](https://github.com/codevise/pageflow/compare/v13.0.0.beta6...v13.0.0.beta7)
124
+ Pageflow no longer depends on a fork of the `state_machine` gem. The
125
+ corresponding `Gemfile` entry has to be removed.
73
126
 
74
- #### Breaking Changes
127
+ #### Breaking Changes for Pageflow Plugins
128
+
129
+ - The `:host` interpolation has been renamed to `:pageflow_s3_root`.
130
+ ([#985](https://github.com/codevise/pageflow/pull/985)
131
+
132
+ Pageflow plugins using the interpolation in Paperclip options need
133
+ to be updated.
75
134
 
76
- - Breaking change: Remove panorama mask image file style
135
+ - Remove panorama mask image file style
77
136
  ([#1044](https://github.com/codevise/pageflow/pull/1044))
78
137
 
79
138
  - Semi-official JavaScript API for registering custom page transitions
@@ -81,12 +140,28 @@
81
140
  ([#1043](https://github.com/codevise/pageflow/pull/1043),
82
141
  [#1045](https://github.com/codevise/pageflow/pull/1045))
83
142
 
143
+ - Remove deprecated `HostedFile.columns` method
144
+ ([#1085](https://github.com/codevise/pageflow/pull/1085))
145
+
146
+ Migrations for models including `Pageflow::HostedFile` can no longer
147
+ use `Pageflow::HostedFile.columns`. The call has to be replaced with
148
+ the list of columns. See the
149
+ [guide on creating files types](doc/creating_file_types.md) for an
150
+ updated migration template.
151
+
152
+ - Remove `HostedFile#keep_on_filesystem_after_upload_to_s3`
153
+ ([#1082](https://github.com/codevise/pageflow/pull/1082))
154
+
155
+ Pageflow plugins defining file types need to change their jobs to
156
+ redownload attachments for processing.
157
+
84
158
  #### Published Entries
85
159
 
86
160
  - Option to allow horizontal swiping to change pages on phone
87
161
  ([#1040](https://github.com/codevise/pageflow/pull/1040),
88
162
  [#1042](https://github.com/codevise/pageflow/pull/1042),
89
- [#1041](https://github.com/codevise/pageflow/pull/1041))
163
+ [#1041](https://github.com/codevise/pageflow/pull/1041),
164
+ [#1047](https://github.com/codevise/pageflow/pull/1047))
90
165
  - Use "swipe to continue" for scroll indicator on mobile
91
166
  ([#1037](https://github.com/codevise/pageflow/pull/1037))
92
167
  - Prevent using desktop layout for landscape phones
@@ -101,17 +176,20 @@
101
176
  ([#1020](https://github.com/codevise/pageflow/pull/1020))
102
177
  - Improve quality of panorama image file styles
103
178
  ([#1019](https://github.com/codevise/pageflow/pull/1019))
179
+ - Introduce widget insert points
180
+ ([#1050](https://github.com/codevise/pageflow/pull/1050),
181
+ [#1081](https://github.com/codevise/pageflow/pull/1081))
104
182
 
105
183
  #### Editor
106
184
 
185
+ - Add phone emulation mode to editor
186
+ ([#1027](https://github.com/codevise/pageflow/pull/1027))
107
187
  - Add additionalInlineHelpText option to input views
108
188
  ([#1036](https://github.com/codevise/pageflow/pull/1036))
109
189
  - Allow displaying help images in editor
110
190
  ([#1035](https://github.com/codevise/pageflow/pull/1035))
111
191
  - Allow using html in infobox view
112
192
  ([#1034](https://github.com/codevise/pageflow/pull/1034))
113
- - Add phone emulation mode to editor
114
- ([#1027](https://github.com/codevise/pageflow/pull/1027))
115
193
  - Validate attachment presence for image and hosted files
116
194
  ([#1028](https://github.com/codevise/pageflow/pull/1028))
117
195
  - Improve files js api
@@ -120,15 +198,37 @@
120
198
  ([#1023](https://github.com/codevise/pageflow/pull/1023))
121
199
  - Improve transient references
122
200
  ([#1022](https://github.com/codevise/pageflow/pull/1022))
201
+ - Add maxlength attribute to text input fields
202
+ ([#1063](https://github.com/codevise/pageflow/pull/1063),
203
+ [#1075](https://github.com/codevise/pageflow/pull/1075))
204
+
205
+ #### Admin
206
+
207
+ - Redirect to active tab when modifying revisions
208
+ ([#1066](https://github.com/codevise/pageflow/pull/1066))
209
+ - Fix background color of form buttons in admin action items
210
+ ([#991](https://github.com/codevise/pageflow/pull/991))
211
+ - Bug fix: Run checkbox toggle script for accounts only on new and edit
212
+ ([#1072](https://github.com/codevise/pageflow/pull/1072))
213
+ - Bug fix: Fix flash notice on revision restore
214
+ ([#1071](https://github.com/codevise/pageflow/pull/1071))
215
+ - Bug fix: Prevent class name collision in admin tabs view
216
+ ([#1046](https://github.com/codevise/pageflow/pull/1046))
123
217
 
124
218
  #### Rails Engine
125
219
 
220
+ - Allow using `sassc-rails`
221
+ ([#982](https://github.com/codevise/pageflow/pull/982))
126
222
  - Add shared example to pageflow-support to lint file types
127
223
  ([#1026](https://github.com/codevise/pageflow/pull/1026))
128
224
  - Custom params for file types
129
225
  ([#1024](https://github.com/codevise/pageflow/pull/1024))
226
+ - Move config overrides for test env to pageflow-supprt
227
+ ([#988](https://github.com/codevise/pageflow/pull/988))
130
228
  - File type background image rules for generated css
131
229
  ([#944](https://github.com/codevise/pageflow/pull/944))
230
+ - Fix example migration in file type guide
231
+ ([#1087](https://github.com/codevise/pageflow/pull/1087))
132
232
 
133
233
  #### Internal
134
234
 
@@ -138,201 +238,30 @@
138
238
  ([#1032](https://github.com/codevise/pageflow/pull/1032))
139
239
  - Improve hosted file factory
140
240
  ([#1029](https://github.com/codevise/pageflow/pull/1029))
141
-
142
- ### Version 13.0.0.beta6
143
-
144
- 2018-10-18
145
-
146
- [Compare changes](https://github.com/codevise/pageflow/compare/v13.0.0.beta5...v13.0.0.beta6)
147
-
241
+ - Add js feature spec for published entry
242
+ ([#1049](https://github.com/codevise/pageflow/pull/1049))
243
+ - Fix bourbon deprecation warnings
244
+ ([#1070](https://github.com/codevise/pageflow/pull/1070))
245
+ - Fix warnings caused by Enzyme 2.8.2
246
+ ([#1053](https://github.com/codevise/pageflow/pull/1053))
247
+ - Make js specs fail on js errors
248
+ ([#1048](https://github.com/codevise/pageflow/pull/1048),
249
+ [#1086](https://github.com/codevise/pageflow/pull/1086))
148
250
  - Relax Active Admin dependency
149
251
  ([#1012](https://github.com/codevise/pageflow/pull/1012))
150
252
  - Add factory_bot dependency to pageflow-support
151
253
  ([#1014](https://github.com/codevise/pageflow/pull/1014))
152
254
  - Rewrite factories to use dynamic attributes
153
255
  ([#1011](https://github.com/codevise/pageflow/pull/1011))
154
- - Fix background color of form buttons in admin action items
155
- ([#991](https://github.com/codevise/pageflow/pull/991))
156
- - Fix fragment caching for published entries
157
- ([#989](https://github.com/codevise/pageflow/pull/989))
158
-
159
- ### Version 13.0.0.beta5
160
-
161
- 2018-08-09
162
-
163
- [Compare changes](https://github.com/codevise/pageflow/compare/v13.0.0.beta4...v13.0.0.beta5)
164
-
165
- - Move config overrides for test env to pageflow-supprt
166
- ([#988](https://github.com/codevise/pageflow/pull/988))
167
-
168
- ### Version 13.0.0.beta4
169
-
170
- 2018-08-08
171
-
172
- [Compare changes](https://github.com/codevise/pageflow/compare/v13.0.0.beta3...v13.0.0.beta4)
173
-
174
- #### Manual Update Steps
175
-
176
- - Upgraded to Paperclip 6.1
177
- ([#983](https://github.com/codevise/pageflow/pull/983))
178
-
179
- Set the name of the S3 region you are using in
180
- `config/initializers/pageflow.rb`. The complete configuration looks
181
- like this:
182
-
183
- config.paperclip_s3_default_options.merge!(
184
- s3_credentials: {
185
- bucket: ENV.fetch('S3_BUCKET', 'com-example-pageflow-development'),
186
- access_key_id: ENV.fetch('S3_ACCESS_KEY', 'xxx'),
187
- secret_access_key: ENV.fetch('S3_SECRET_KEY', 'xxx'),
188
- },
189
- s3_host_name: ENV.fetch('S3_HOST_NAME', 's3-eu-west-1.amazonaws.com'),
190
- s3_region: ENV.fetch('S3_REGION', 'eu-central-1'), # <= new line
191
- s3_host_alias: ENV.fetch('S3_HOST_ALIAS', 'com-example-pageflow.s3-website-eu-west-1.amazonaws.com'),
192
- s3_protocol: ENV.fetch('S3_PROTOCOL', 'http')
193
- )
194
-
195
- - The `:host` interpolation has been renamed to `:pageflow_s3_root`.
196
- ([#985](https://github.com/codevise/pageflow/pull/985)
197
-
198
- Pageflow plugins using the interpolation in Paperclip options need
199
- to be updated.
200
-
201
- - The name of the root folder in the S3 bucket needs to be configured
202
- explicitly.
203
- ([#985](https://github.com/codevise/pageflow/pull/985)
204
-
205
- Add the following code to your Pageflow initializer to keep using
206
- host specific root folders in development S3 buckets.
207
-
208
- config.paperclip_s3_root =
209
- if Rails.env.development?
210
- require 'socket'
211
- Socket.gethostname
212
- else
213
- 'main'
214
- end
215
-
216
- This used to be the default behavior.
217
-
218
- #### Rails Engine
219
-
220
- - Allow using `sassc-rails`
221
- ([#982](https://github.com/codevise/pageflow/pull/982))
222
-
223
- #### Internals
224
-
225
256
  - Ensure `lib/pagefow` is eager loaded in production
226
257
  ([#984](https://github.com/codevise/pageflow/pull/984),
227
258
  [#987](https://github.com/codevise/pageflow/pull/987))
228
-
229
- ### Version 13.0.0.beta3
230
-
231
- 2018-07-31
232
-
233
- [Compare changes](https://github.com/codevise/pageflow/compare/v13.0.0.beta2...v13.0.0.beta3)
234
-
235
- #### Breaking Changes
236
-
237
- - Migrated to `state_machines` gem
238
- ([#981](https://github.com/codevise/pageflow/pull/981))
239
-
240
- Pageflow no longer depends on a fork of the `state_machine` gem. The
241
- corresponding `Gemfile` entry has to be removed.
242
-
243
- ### Version 13.0.0.beta2
244
-
245
- 2018-07-31
246
-
247
- [Compare changes](https://github.com/codevise/pageflow/compare/v13.0.0.beta1...v13.0.0.beta2)
248
-
249
259
  - Require resque in initializer
250
260
  ([#980](https://github.com/codevise/pageflow/pull/980))
251
261
  - Use `ar_after_transaction` 0.5
252
262
  ([#979](https://github.com/codevise/pageflow/pull/979))
253
263
  - Fix handling of null object in presence validation
254
264
  ([#978](https://github.com/codevise/pageflow/pull/978))
255
-
256
- ### Version 13.0.0.beta1
257
-
258
- 2018-07-30
259
-
260
- [Compare changes](https://github.com/codevise/pageflow/compare/12-x-stable...v13.0.0.beta1)
261
-
262
- #### Breaking Changes
263
-
264
- - All of the migrations of earlier versions have been consolidated
265
- into a single migration to speed up setup of new applications.
266
- ([#975](https://github.com/codevise/pageflow/pull/975))
267
-
268
- Make sure to update your application to Pageflow 12.2 before
269
- updating to 13.0 to make sure the host application contains all
270
- migrations.
271
-
272
- - Upgraded to Rails 5.2 and Active Admin 1.3
273
- ([#938](https://github.com/codevise/pageflow/pull/938))
274
-
275
- Follow the Rails upgrade guide and review the Active Admin changelog
276
- to update the host application.
277
-
278
- - Migrated from Resque to Active Job
279
- ([#976](https://github.com/codevise/pageflow/pull/976))
280
-
281
- Pageflow no longer depends on Resque, but can work with different
282
- Active Job backends instead. The install generator still sets up
283
- Resque as backend. To coninute using Resque in an existing
284
- application, you need to add the following dependencies to the host
285
- application's `Gemfile`:
286
-
287
- gem 'resque', '~> 1.25'
288
- gem 'resque-scheduler', '~> 2.5'
289
- gem 'ar_after_transaction', '~> 0.5.0'
290
- gem 'redis', '~> 3.0'
291
- gem 'redis-namespace', '~> 1.5'
292
-
293
- Then set Resque as default queue adapter in `config/application.rb`:
294
-
295
- config.active_job.queue_adapter = :resque
296
-
297
- The `resque-logger` and `resque_mailer` gems are no longer
298
- used. Their initializers need to be removed from the host
299
- application:
300
-
301
- $ rm config/initializers/resque_logger.rb
302
- $ rm config/initializers/resque_mailer.rb
303
-
304
- The following unused line has been removed from
305
- `Pageflow::AbilityMixin`:
306
-
307
- can(:manage, Resque) if user.admin?
308
-
309
- If the host application depends on this permission, you need to add
310
- it to the `Ability` yourself.
311
-
312
- - Upgraded to Devise 4.4.0
313
- ([#932](https://github.com/codevise/pageflow/pull/932))
314
-
315
- Consider re-running the Devise intall generator to update the Devise
316
- initializer:
317
-
318
- $ bin/rails generate devise:install
319
-
320
- - Devise Async has been removed
321
- ([#932](https://github.com/codevise/pageflow/pull/932))
322
-
323
- We now use Active Job to allow sending Devise mails in background
324
- jobs. The Device Async initializer (which was originally created by
325
- the `pageflow:install` generator) needs to be removed:
326
-
327
- $ rm config/initializers/device_async.rb
328
-
329
- - The deprecated Factory Girl gem has been replaced with its successor
330
- Factory Bot. To continue using factories defined by Pageflow, you
331
- need to switch as well.
332
- ([#943](https://github.com/codevise/pageflow/pull/943))
333
-
334
- #### Internals
335
-
336
265
  - Fix building of nested associations
337
266
  ([#977](https://github.com/codevise/pageflow/pull/977))
338
267
  - Upgrade Rubocop and remove imported Hound config
@@ -1,3 +1,3 @@
1
1
  module Pageflow
2
- VERSION = '13.0.0.rc1'.freeze
2
+ VERSION = '13.0.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pageflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.0.0.rc1
4
+ version: 13.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codevise Solutions Ltd
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-03 00:00:00.000000000 Z
11
+ date: 2018-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -2049,12 +2049,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
2049
2049
  version: '0'
2050
2050
  required_rubygems_version: !ruby/object:Gem::Requirement
2051
2051
  requirements:
2052
- - - ">"
2052
+ - - ">="
2053
2053
  - !ruby/object:Gem::Version
2054
- version: 1.3.1
2054
+ version: '0'
2055
2055
  requirements: []
2056
2056
  rubyforge_project:
2057
- rubygems_version: 2.7.3
2057
+ rubygems_version: 2.7.5
2058
2058
  signing_key:
2059
2059
  specification_version: 4
2060
2060
  summary: Multimedia story telling for the web.