casein 5.3.0.0 → 5.3.1.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: ff0f49f01f423bf89fc04f98f064bb30c825f2fb
4
- data.tar.gz: fa91ab17644cc8fd9c5046c168f987d2d2949860
2
+ SHA256:
3
+ metadata.gz: ec20d7b92e03370e0d35fb7dc668f9252334fc2c03768cee54d0ef7874cc1ea1
4
+ data.tar.gz: 1a9833d28712d4f90d993a48690fe5553bce38464fea41b237cead73b12f9b65
5
5
  SHA512:
6
- metadata.gz: f5ec95980a6ca24a64c1119bf4898a7e953124410fa8b2ba5507a12e13738523c17e14c3a930036f84ce347df644872a6965f840fb96ecc89990761a57810260
7
- data.tar.gz: c4346dbb675b58da56b3832f332f472915b265dc979bec16b58ac299ec5d2220d995b7e449253ca4215695d55118baae4d9acda9aa3485f987d2d4b4cafd3209
6
+ metadata.gz: 03f606f5cc0fcbb06dd65eb55d4067852a35407836863c563cf986e391d78c88a89e511b6b952e708cd7f58fcf2fefb23703eca6fb8e20b34e093fe2c4d86221
7
+ data.tar.gz: ef42d1c6b4221807c3ac20aa76be28e28701f9f13cec43138d1d2c3aadfdbaa841a7cf60cfc11106a45c2c5eaf106af3ec8900cff7ebe0b445e7bd3908891559
@@ -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.0
17
+ ==What’s New in 5.3.1
18
18
 
19
- Casein 5.3.0 has the following updates:
19
+ Casein 5.3.1 has the following update:
20
20
 
21
- * Support for passing html_options into casein_select (see [here](https://github.com/russellquinn/casein/pull/80))
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 casein_admin_user_session_params
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
@@ -1,4 +1,4 @@
1
1
  module Casein
2
- VERSION_HASH = { major: 5, minor: 3, patch: 0, build: 0 }
2
+ VERSION_HASH = { major: 5, minor: 3, patch: 1, build: 0 }
3
3
  VERSION = VERSION_HASH.values.join(".")
4
4
  end
@@ -18,7 +18,7 @@ module Casein
18
18
  end
19
19
 
20
20
  def generate_files
21
- @plural_route = (plural_name != singular_name) ? plural_name : "#{plural_name}_index"
21
+ @plural_route = plural_name
22
22
  @read_only = options[:read_only]
23
23
  @no_index = options[:no_index]
24
24
 
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.0.0
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: 2017-05-18 00:00:00.000000000 Z
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: 3.5.0
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: 3.5.0
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.4.5.1
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.