casein 5.3.0.0 → 5.3.1.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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: ec20d7b92e03370e0d35fb7dc668f9252334fc2c03768cee54d0ef7874cc1ea1
|
|
4
|
+
data.tar.gz: 1a9833d28712d4f90d993a48690fe5553bce38464fea41b237cead73b12f9b65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 03f606f5cc0fcbb06dd65eb55d4067852a35407836863c563cf986e391d78c88a89e511b6b952e708cd7f58fcf2fefb23703eca6fb8e20b34e093fe2c4d86221
|
|
7
|
+
data.tar.gz: ef42d1c6b4221807c3ac20aa76be28e28701f9f13cec43138d1d2c3aadfdbaa841a7cf60cfc11106a45c2c5eaf106af3ec8900cff7ebe0b445e7bd3908891559
|
data/README.rdoc
CHANGED
|
@@ -14,11 +14,17 @@ This version of Casein is designed for Ruby on Rails 5.x and Ruby 2.2.x or later
|
|
|
14
14
|
|
|
15
15
|
Casein 5.1.1.5 was the last gem release compatible with Rails 4.x.
|
|
16
16
|
|
|
17
|
-
==What’s New in 5.3.
|
|
17
|
+
==What’s New in 5.3.1
|
|
18
18
|
|
|
19
|
-
Casein 5.3.
|
|
19
|
+
Casein 5.3.1 has the following update:
|
|
20
20
|
|
|
21
|
-
*
|
|
21
|
+
* Now uses authlogic >= 4.0.0; fixed compatability issues
|
|
22
|
+
|
|
23
|
+
Thanks to @brchristian for this release.
|
|
24
|
+
|
|
25
|
+
Casein 5.3.0 had the following updates:
|
|
26
|
+
|
|
27
|
+
* Support for passing html_options into casein_select (see https://github.com/russellquinn/casein/pull/80)
|
|
22
28
|
* Fixed a bug where jQuery couldn't be found if it wasn't in your main project's Gemfile (for example, when using Rails 5.1.x)
|
|
23
29
|
* Updated the migration templates to include Rails version number and modern syntax
|
|
24
30
|
* Made password-reset error message clearer to explain what the problem might be
|
|
@@ -11,7 +11,7 @@ module Casein
|
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def create
|
|
14
|
-
@admin_user_session = Casein::AdminUserSession.new
|
|
14
|
+
@admin_user_session = Casein::AdminUserSession.new(casein_admin_user_session_params.to_h)
|
|
15
15
|
if @admin_user_session.save
|
|
16
16
|
redirect_back_or_default controller: :casein, action: :index
|
|
17
17
|
else
|
data/lib/casein/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: casein
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.3.
|
|
4
|
+
version: 5.3.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Russell Quinn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: will_paginate
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 4.0.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: 4.0.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: scrypt
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -235,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
235
235
|
version: '0'
|
|
236
236
|
requirements: []
|
|
237
237
|
rubyforge_project:
|
|
238
|
-
rubygems_version: 2.
|
|
238
|
+
rubygems_version: 2.7.6
|
|
239
239
|
signing_key:
|
|
240
240
|
specification_version: 4
|
|
241
241
|
summary: A lightweight CMS toolkit for Ruby on Rails, based on Bootstrap.
|