configurable_engine 2.0.2 → 3.0.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: 35d8e042be21d9ecc3832fcf236bec6145e58ee6a545185121cda190f26a935e
4
- data.tar.gz: 5d3619555b52de54a69da528aec0e92a9b5911425ea06f244a01082e6cfd588d
3
+ metadata.gz: 283cf61227a97ab17df548eced982e91abac7fc66d8c14e69814376772d466cf
4
+ data.tar.gz: d39aaf3799d5be3f7ea5f652a6b66c546e9ab9d3b78ae0221429574c9b6215cd
5
5
  SHA512:
6
- metadata.gz: ebc8c63d1ea3ac3722dd7632ab38ecba3cd60dd0b2a23b6595f9905e7aaa947aa8b069f0f8de5e0f275ca69cd09b786ee9f866aba82c6c7672f02f937116bdaf
7
- data.tar.gz: b09227577c08b4e35523d134dbf7dbeff3ff2c1c45f6f01c536985c446239ec2ee8ee39b8c649e334c4bd9ee5a3a165a85b3c3fbdabbc2332fba4cbb2aec7f5e
6
+ metadata.gz: e545213eecab5c9d38d076ccbfcf23b7ff40e02b1f70b712521e50be7932d72a513173ee22211e92a046186fd95d5207c80bcff63fb94f3cfa799981c49342bf
7
+ data.tar.gz: c866f492aa4c716e0b17f658fcc3a7c259455d6b765049af2fcbcfd975daab3e2e2781633035abda509d5b811d23dad6e8968ac1059e4116a51334fb0bf5461d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### v3.0.0 - April 2, 2025
2
+ **breaking changes**
3
+ Drops support for Rails < 7 and ruby < 3.2
4
+ adds support for modern rails
5
+
1
6
  ### v2.0.2 - August 20, 2020
2
7
  **bug fixes**
3
8
  fix rendering with included module
@@ -1,6 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ConfigurableEngine
2
4
  class ApplicationController < ActionController::Base
3
- layout "configurable_engine/application"
5
+ layout 'configurable_engine/application'
4
6
  protect_from_forgery with: :exception
5
7
  end
6
8
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ConfigurableEngine
2
4
  class ConfigurablesController < ::ConfigurableEngine::ApplicationController
3
5
  include ConfigurableEngine::ConfigurablesControllerMethods
@@ -1,14 +1,12 @@
1
- class Configurable < ActiveRecord::Base
2
- serialize :value
1
+ # frozen_string_literal: true
3
2
 
3
+ class Configurable < ActiveRecord::Base
4
4
  after_save :invalidate_cache, if: -> { ConfigurableEngine::Engine.config.use_cache }
5
5
  after_destroy :invalidate_cache, if: -> { ConfigurableEngine::Engine.config.use_cache }
6
6
 
7
- validates_presence_of :name
8
- validates_uniqueness_of :name
7
+ validates :name, presence: true, uniqueness: { case_sensitive: true }
9
8
 
10
9
  validate :type_of_value
11
- before_save :serialize_value
12
10
 
13
11
  def self.defaults
14
12
  @defaults ||= HashWithIndifferentAccess.new(
@@ -19,7 +17,7 @@ class Configurable < ActiveRecord::Base
19
17
  end
20
18
 
21
19
  def self.keys
22
- self.defaults.collect { |k,v| k.to_s }.sort
20
+ defaults.collect { |k, _v| k.to_s }.sort
23
21
  end
24
22
 
25
23
  def self.[]=(key, value)
@@ -27,7 +25,10 @@ class Configurable < ActiveRecord::Base
27
25
  if exisiting
28
26
  exisiting.update_attribute(:value, value)
29
27
  else
30
- create {|c| c.name = key.to_s; c.value = value}
28
+ create do |c|
29
+ c.name = key.to_s
30
+ c.value = Configurable.value_for_serialization key, value
31
+ end
31
32
  end
32
33
  end
33
34
 
@@ -38,23 +39,21 @@ class Configurable < ActiveRecord::Base
38
39
  def self.[](key)
39
40
  return parse_value key, defaults[key][:default] unless table_exists?
40
41
 
41
- value, found = [false, false]
42
- database_finder = -> do
42
+ value = false
43
+ found = false
44
+ database_finder = lambda do
43
45
  config = find_by_name(key)
44
- found = !!config
46
+ found = !config.nil?
45
47
  value = config.try(:value)
46
48
  end
47
49
 
48
-
49
50
  if ConfigurableEngine::Engine.config.use_cache
50
51
  found = Rails.cache.exist?(cache_key(key))
51
52
  if found
52
53
  value = Rails.cache.fetch(cache_key(key))
53
54
  else
54
55
  database_finder.call
55
- if found
56
- Rails.cache.write cache_key(key), value
57
- end
56
+ Rails.cache.write cache_key(key), value if found
58
57
  end
59
58
  else
60
59
  database_finder.call
@@ -64,9 +63,7 @@ class Configurable < ActiveRecord::Base
64
63
  value
65
64
  else
66
65
  parse_value(key, defaults[key][:default]).tap do |val|
67
- if ConfigurableEngine::Engine.config.use_cache
68
- Rails.cache.write cache_key(key), val
69
- end
66
+ Rails.cache.write cache_key(key), val if ConfigurableEngine::Engine.config.use_cache
70
67
  end
71
68
  end
72
69
  end
@@ -75,10 +72,10 @@ class Configurable < ActiveRecord::Base
75
72
  self.class.parse_value name, super
76
73
  end
77
74
 
78
- def self.parse_value key, value
75
+ def self.parse_value(key, value)
79
76
  case defaults[key][:type]
80
77
  when 'boolean'
81
- [true, 1, "1", "t", "true"].include?(value)
78
+ [true, 1, '1', 't', 'true'].include?(value)
82
79
  when 'decimal'
83
80
  value ||= 0
84
81
  BigDecimal(value.to_s)
@@ -94,32 +91,30 @@ class Configurable < ActiveRecord::Base
94
91
  when 'date'
95
92
  if value.is_a? Date
96
93
  value
97
- else
98
- Date.parse(value) if value.present?
94
+ elsif value.present?
95
+ Date.parse(value)
99
96
  end
100
97
  else
101
98
  value
102
99
  end
103
100
  end
104
101
 
105
- def self.serialized_value key
102
+ def self.serialized_value(key)
106
103
  value_for_serialization key, self[key]
107
104
  end
108
105
 
109
106
  def self.value_for_serialization(key, value)
110
107
  if defaults[key][:type] == 'list' && value.is_a?(Array)
111
- if value.all? {|entry| entry.is_a? Array}
112
- value = value.collect {|entry| entry.join ','}
113
- end
108
+ value = value.collect { |entry| entry.join ',' } if value.all? { |entry| entry.is_a? Array }
114
109
  value.join("\n")
115
110
  else
116
111
  value.to_s
117
- end.gsub("\r\n","\n")
112
+ end.gsub("\r\n", "\n")
118
113
  end
119
114
 
120
115
  def self.method_missing(name, *args)
121
116
  name_stripped = name.to_s.sub(/[\?=]$/, '')
122
- if self.keys.include?(name_stripped)
117
+ if keys.include?(name_stripped)
123
118
  if name.to_s.end_with?('=')
124
119
  self[name_stripped] = args.first
125
120
  else
@@ -134,21 +129,30 @@ class Configurable < ActiveRecord::Base
134
129
 
135
130
  def type_of_value
136
131
  return unless name
132
+
137
133
  valid = case Configurable.defaults[name][:type]
138
- when 'boolean'
139
- [true, 1, "1", "true", false, 0, "0", "false"].include?(value)
140
- when 'decimal'
141
- BigDecimal(value) rescue false
142
- when 'integer'
143
- Integer(value) rescue false
144
- when 'list'
145
- value.is_a?(Array)
146
- when 'date'
147
- value.is_a?(Date)
148
- else
149
- true
150
- end
151
- errors.add(:value, I18n.t("activerecord.errors.messages.invalid")) unless valid
134
+ when 'boolean'
135
+ [true, 1, '1', 'true', false, 0, '0', 'false'].include?(value)
136
+ when 'decimal'
137
+ begin
138
+ BigDecimal(value)
139
+ rescue StandardError
140
+ false
141
+ end
142
+ when 'integer'
143
+ begin
144
+ Integer(value)
145
+ rescue StandardError
146
+ false
147
+ end
148
+ when 'list'
149
+ value.is_a?(Array)
150
+ when 'date'
151
+ value.is_a?(Date)
152
+ else
153
+ true
154
+ end
155
+ errors.add(:value, I18n.t('activerecord.errors.messages.invalid')) unless valid
152
156
  end
153
157
 
154
158
  def serialize_value
@@ -156,6 +160,6 @@ class Configurable < ActiveRecord::Base
156
160
  end
157
161
 
158
162
  def invalidate_cache
159
- Rails.cache.delete(Configurable.cache_key self.name)
163
+ Rails.cache.delete(Configurable.cache_key(name))
160
164
  end
161
165
  end
data/config/routes.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  ConfigurableEngine::Engine.routes.draw do
2
- resource :configurable, path: '/', only: [:show, :update]
4
+ resource :configurable, path: '/', only: %i[show update]
3
5
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ConfigurableEngine
2
4
  module ConfigurablesControllerMethods
3
5
  def show
@@ -7,16 +9,16 @@ module ConfigurableEngine
7
9
 
8
10
  def update
9
11
  failures = Configurable
10
- .keys.map do |key|
11
- Configurable.find_by_name(key) ||
12
- Configurable.create {|c| c.name = key}
13
- end.reject do |configurable|
14
- configurable.value = params[configurable.name]
15
- configurable.save
16
- end
12
+ .keys.map do |key|
13
+ Configurable.find_by_name(key) ||
14
+ Configurable.create { |c| c.name = key }
15
+ end.reject do |configurable|
16
+ configurable.value = params[configurable.name]
17
+ configurable.save
18
+ end
17
19
 
18
20
  if failures.empty?
19
- redirect_to(action: :show, :notice => "Changes successfully updated")
21
+ redirect_to(action: :show, notice: 'Changes successfully updated')
20
22
  else
21
23
  flash[:error] = failures.flat_map(&:errors).flat_map(&:full_messages).join(',')
22
24
  redirect_to(action: :show)
@@ -1,6 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ConfigurableEngine
2
4
  class Engine < ::Rails::Engine
3
- engine_name "configurable"
5
+ engine_name 'configurable'
4
6
  isolate_namespace ConfigurableEngine
5
7
  config.use_cache = false
6
8
  config.generators do |g|
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module ConfigurableEngine
2
- VERSION = '2.0.2'
4
+ VERSION = '3.0.0'
3
5
  end
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'configurable_engine/engine'
2
4
  require 'configurable_engine/configurables_controller_methods'
@@ -1,21 +1,22 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rails/generators'
2
4
  module ConfigurableEngine
3
- class InstallGenerator < Rails::Generators::Base
4
- include Rails::Generators::Migration
5
-
5
+ class InstallGenerator < Rails::Generators::Base
6
+ include Rails::Generators::Migration
6
7
 
7
- def self.source_root
8
+ def self.source_root
8
9
  @source_root ||= File.join(File.dirname(__FILE__), 'templates')
9
- end
10
-
11
- def self.next_migration_number(dirname)
10
+ end
11
+
12
+ def self.next_migration_number(dirname)
12
13
  if ActiveRecord::Base.timestamped_migrations
13
- Time.now.utc.strftime("%Y%m%d%H%M%S")
14
+ Time.now.utc.strftime('%Y%m%d%H%M%S')
14
15
  else
15
- "%.3d" % (current_migration_number(dirname) + 1)
16
+ format('%.3d', (current_migration_number(dirname) + 1))
16
17
  end
17
18
  end
18
-
19
+
19
20
  def create_migration_file
20
21
  copy_file 'configurable.yml', 'config/configurable.yml'
21
22
  migration_template 'migration.rb', 'db/migrate/create_configurables.rb'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class CreateConfigurables < ActiveRecord::Migration[5.2]
2
4
  def self.up
3
5
  create_table :configurables do |t|
@@ -6,7 +8,7 @@ class CreateConfigurables < ActiveRecord::Migration[5.2]
6
8
 
7
9
  t.timestamps
8
10
  end
9
-
11
+
10
12
  add_index :configurables, :name
11
13
  end
12
14
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: configurable_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Campbell
@@ -9,22 +9,28 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-08-20 00:00:00.000000000 Z
12
+ date: 1980-01-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ">"
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: 5.2.0
20
+ version: 7.0.0
21
+ - - "<"
22
+ - !ruby/object:Gem::Version
23
+ version: 8.0.0
21
24
  type: :runtime
22
25
  prerelease: false
23
26
  version_requirements: !ruby/object:Gem::Requirement
24
27
  requirements:
25
- - - ">"
28
+ - - ">="
29
+ - !ruby/object:Gem::Version
30
+ version: 7.0.0
31
+ - - "<"
26
32
  - !ruby/object:Gem::Version
27
- version: 5.2.0
33
+ version: 8.0.0
28
34
  description: 'Configurable is a Rails 4 engine that allows you to set up config variables
29
35
  in a config file, specifying default values for all environmentspec. These variables
30
36
  can then be set on a per-app basis using a user facing configuration screen. '
@@ -54,7 +60,8 @@ files:
54
60
  homepage: http://github.com/paulca/configurable_engine
55
61
  licenses:
56
62
  - MIT
57
- metadata: {}
63
+ metadata:
64
+ rubygems_mfa_required: 'true'
58
65
  post_install_message:
59
66
  rdoc_options: []
60
67
  require_paths:
@@ -70,8 +77,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
77
  - !ruby/object:Gem::Version
71
78
  version: '0'
72
79
  requirements: []
73
- rubygems_version: 3.0.3
80
+ rubygems_version: 3.5.22
74
81
  signing_key:
75
82
  specification_version: 4
76
- summary: Database-backed configuration for Rails 4, with defaults from config file.
83
+ summary: Database-backed configuration for Rails 7, with defaults from config file.
77
84
  test_files: []