thecore_settings 3.0.6 → 3.0.7

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: 21b45376d7eeef17396f6e18f0bc3ea53bc1d1c5acba8c427438dc51649a7274
4
- data.tar.gz: da3aa0dda8e23974bfd8b3fd44eae95841c988ce683bf5f5a433c9c981ba136c
3
+ metadata.gz: 25adc2c72aff187b7a66c51d7ca04c6258ce6539792afefb98a5fd22e43fc9e4
4
+ data.tar.gz: 5d87a43236b21cb81d911184fd001e12edbccf1334592b941018ea3119fc9c95
5
5
  SHA512:
6
- metadata.gz: aee3f4e00187ea79db0921d07d876be876afa4d69ff86e7bd65ebd1dd3f2481e4a9d34ba1f31be12550c6bc357249b5a1a9eb794c15ca8347aebc68b5d82fb9d
7
- data.tar.gz: 2641a41e04fc6cbf8c76d26ffbf3e6d87b92641942c0673a81feb680fd6b4e64d39faa923ca604af86bba9a2ea5b80ce128288823e817f9f33ecc0bf47a51845
6
+ metadata.gz: 30e3bd803f72ad878a486d79b176611c6c612b5b4aa5720f0ef437925579e675559511ded4d552a52c38d5f8dfa50055aa1b18b67eb02b5a8206d43ca0d5ebde
7
+ data.tar.gz: 7fa8a47b1d158fef1154017172fe20e1d39f6fe9bcaf3eff15e1cf24fb44b62998e792057a0d94d352fbfe1f104bb49278d170e2da0fd5498aae2f802f310321
data/README.md CHANGED
@@ -1,169 +1 @@
1
- # ThecoreSettings
2
-
3
- Project forked from:
4
-
5
- https://gitlab.com/rocket-science/rails_admin_settings
6
-
7
- Since it looks in hyatus.
8
-
9
-
10
- [![Build Status](https://secure.travis-ci.org/rs-pro/thecore_settings.png?branch=master)](http://travis-ci.org/rs-pro/thecore_settings)
11
- [![Gem Version](https://badge.fury.io/rb/thecore_settings.svg)](https://badge.fury.io/rb/thecore_settings)
12
- [![security](https://hakiri.io/github/rs-pro/thecore_settings/master.svg)](https://hakiri.io/github/rs-pro/thecore_settings/master)
13
- [![Maintainability](https://api.codeclimate.com/v1/badges/de00cbec10559ebd2b4b/maintainability)](https://codeclimate.com/github/rs-pro/thecore_settings/maintainability)
14
- [![Test Coverage](https://api.codeclimate.com/v1/badges/de00cbec10559ebd2b4b/test_coverage)](https://codeclimate.com/github/rs-pro/thecore_settings/test_coverage)
15
-
16
- App settings editable via RailsAdmin with support for ActiveRecord and Mongoid.
17
-
18
- Supports images, files, html with or without sanitization, code with codemirror, etc.
19
-
20
- ## Features
21
-
22
- - Lazy loading - loads settings only if they are needed during request
23
- - Loads all settings at once and caches them for the duration of request
24
- - Supports lots of setting kinds - yaml, html with ckeditor, phone numbers etc
25
- - Each setting can be enabled and disabled within rails_admin, if it's disabled it returns default value for kind
26
-
27
- ## Installation
28
-
29
- 1. Add this line to your application's Gemfile:
30
-
31
- ```shell
32
- gem 'thecore_settings'
33
- ```
34
-
35
- 2. Then migrate:
36
-
37
- ```shell
38
- rails db:migrate
39
- ```
40
-
41
-
42
- ### OPTIONAL Generage migration
43
-
44
- Not needed anymore since migrations from this gem are automatically loaded by main app when needed:
45
-
46
- ```shell
47
- rails g thecore_settings:migration
48
- ```
49
-
50
- ## Gemfile order matters
51
-
52
- - Put it after rails_admin to get built-in support
53
- - Put it after rails_admin_toggleable to get built-in support
54
- - Put it after ckeditor/glebtv-ckeditor/rich to get built-in support
55
- - Put it after russian_phone to get built-in support
56
- - Put it after sanitized to get built-in support
57
- - Put it after safe_yaml to get built-in support
58
- - Put it after validates_email_format_of to get built-in support
59
- - Put it after geocoder to get built-in support
60
- - Put it after carrierwave / paperclip to get built-in support
61
- - Put it after addressable to get built-in support
62
-
63
- And then execute:
64
-
65
- $ bundle
66
-
67
- Or install it yourself as:
68
-
69
- $ gem install thecore_settings
70
-
71
- ## Basic Usage (like RailsSettings)
72
-
73
- Settings.admin_email = 'test@example.com'
74
- Settings.admin_email
75
-
76
-
77
- ## Advanced Usage
78
-
79
- Settings.content_block_1(kind: 'html', default: 'test', label: "Test Value")
80
- Settings.data(kind: 'yaml')
81
- Settings.data = [1, 2, 3]
82
-
83
- Settings.enabled?(:phone, kind: 'phone', default: '906 111-11-11') # also creates setting if it doesn't exist
84
- Settings.phone.area
85
- Settings.phone.subscriber
86
-
87
- See more here: https://github.com/rs-pro/thecore_settings/blob/master/spec/advanced_usage_spec.rb
88
-
89
- ## Namespacing
90
-
91
- Settings can have namespaces (useful for locale, etc)
92
-
93
- Settings.ns('test').s1 = 123
94
- Settings.ns('test').s1
95
- > "123"
96
- Settings.ns('main').s1
97
- > ""
98
- Settings.s1
99
- > ""
100
- Settings.ns_default = 'test'
101
- Settings.s1
102
- > "123"
103
- Settings.ns_default = 'main'
104
- Settings.ns_fallback = 'test'
105
- Settings.s1
106
- > "123"
107
-
108
-
109
- ## Value types
110
-
111
- Supported types:
112
-
113
- string (input)
114
- text (textarea)
115
- boolean (checkbox)
116
- color (uses built-in RailsAdmin color picker)
117
- html (does NOT sanitize (allows ANY javascript) - for trusted admin, supports Rich, glebtv-ckeditor, ckeditor, but does not require any of them)
118
- code (does NOT sanitize (allows ANY javascript) - shows as codemirror, requires glebtv-ckeditor for codemirror)
119
- sanitized (requires sanitize gem -- sanitizes HTML before saving to DB [Warning: uses RELAXED config!])
120
- integer (stored as string)
121
- yaml (requires safe_yaml)
122
- phone (requires russian_phone)
123
- phones (requires russian_phone - multiple phones)
124
- email (requires validates_email_format_of)
125
- address (requires geocoder)
126
- file (requires paperclip or carrierwave)
127
- url (requires addressable)
128
- domain (requires addressable)
129
- sanitize (uses rails sanitize helper with default settings, shows as html)
130
- sanitize_code (uses rails sanitize helper with default settings, shows as codemirror textarea, can provide custom scrubber, defaults to Rails::Html::WhiteListSanitizer)
131
- strip_tags (uses strip_tags rails helper)
132
- simple_format (uses simple_format rails helper)
133
- simple_format_raw (does NOT sanitize (allows ANY javascript) - uses simple_format rails helper with sanitize: false)
134
- json
135
-
136
- #### Sanitize settings
137
-
138
- Sanitizer can be changed like this:
139
- ```
140
- RalsAdminSettings.scrubber = Rails::Html::WhiteListSanitizer.new
141
- ```
142
- defaults to Rails::Html::WhiteListSanitizer
143
-
144
- Strings and html support following replacement patterns:
145
-
146
- {{year}} -> current year
147
- {{year|2013}} -> 2013 in 2013, 2013-2014 in 2014, etc
148
-
149
- Sanitized types sanitize before storing to DB and not on display for performance.
150
- Simple format types are stored in db as-is.
151
-
152
- ## Usage with Rails Admin
153
-
154
- Rails admin management for settings is supported out of the box
155
-
156
- It is recommended to disable new/create page (it is not supported by design, settings are defined in ruby code).
157
- Disable via cancan:
158
-
159
- ```
160
- cannot :create, ThecoreSettings::Setting
161
- ```
162
-
163
- ## Contributing
164
-
165
- 1. Fork it
166
- 2. Create your feature branch (`git checkout -b my-new-feature`)
167
- 3. Commit your changes (`git commit -am 'Add some feature'`)
168
- 4. Push to the branch (`git push origin my-new-feature`)
169
- 5. Create new Pull Request
1
+ This is part of Thecore framework: https://github.com/gabrieletassoni/thecore/tree/release/3
@@ -1,3 +1,3 @@
1
1
  module ThecoreSettings
2
- VERSION = "3.0.6".freeze
2
+ VERSION = "3.0.7".freeze
3
3
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_settings
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.6
4
+ version: 3.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  - Gleb Tv
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2023-06-13 00:00:00.000000000 Z
11
+ date: 2025-02-12 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: safe_yaml
@@ -31,42 +30,42 @@ dependencies:
31
30
  requirements:
32
31
  - - "~>"
33
32
  - !ruby/object:Gem::Version
34
- version: '0.7'
33
+ version: '0.8'
35
34
  type: :runtime
36
35
  prerelease: false
37
36
  version_requirements: !ruby/object:Gem::Requirement
38
37
  requirements:
39
38
  - - "~>"
40
39
  - !ruby/object:Gem::Version
41
- version: '0.7'
40
+ version: '0.8'
42
41
  - !ruby/object:Gem::Dependency
43
42
  name: sanitize
44
43
  requirement: !ruby/object:Gem::Requirement
45
44
  requirements:
46
45
  - - "~>"
47
46
  - !ruby/object:Gem::Version
48
- version: '6.0'
47
+ version: '7.0'
49
48
  type: :runtime
50
49
  prerelease: false
51
50
  version_requirements: !ruby/object:Gem::Requirement
52
51
  requirements:
53
52
  - - "~>"
54
53
  - !ruby/object:Gem::Version
55
- version: '6.0'
54
+ version: '7.0'
56
55
  - !ruby/object:Gem::Dependency
57
56
  name: validates_email_format_of
58
57
  requirement: !ruby/object:Gem::Requirement
59
58
  requirements:
60
59
  - - "~>"
61
60
  - !ruby/object:Gem::Version
62
- version: '1.7'
61
+ version: '1.8'
63
62
  type: :runtime
64
63
  prerelease: false
65
64
  version_requirements: !ruby/object:Gem::Requirement
66
65
  requirements:
67
66
  - - "~>"
68
67
  - !ruby/object:Gem::Version
69
- version: '1.7'
68
+ version: '1.8'
70
69
  - !ruby/object:Gem::Dependency
71
70
  name: geocoder
72
71
  requirement: !ruby/object:Gem::Requirement
@@ -101,28 +100,28 @@ dependencies:
101
100
  requirements:
102
101
  - - "~>"
103
102
  - !ruby/object:Gem::Version
104
- version: '4.12'
103
+ version: '5.1'
105
104
  type: :runtime
106
105
  prerelease: false
107
106
  version_requirements: !ruby/object:Gem::Requirement
108
107
  requirements:
109
108
  - - "~>"
110
109
  - !ruby/object:Gem::Version
111
- version: '4.12'
110
+ version: '5.1'
112
111
  - !ruby/object:Gem::Dependency
113
112
  name: shrine
114
113
  requirement: !ruby/object:Gem::Requirement
115
114
  requirements:
116
115
  - - "~>"
117
116
  - !ruby/object:Gem::Version
118
- version: '3.4'
117
+ version: '3.6'
119
118
  type: :runtime
120
119
  prerelease: false
121
120
  version_requirements: !ruby/object:Gem::Requirement
122
121
  requirements:
123
122
  - - "~>"
124
123
  - !ruby/object:Gem::Version
125
- version: '3.4'
124
+ version: '3.6'
126
125
  description: ActiveRecord + RailsAdmin App Settings management
127
126
  email:
128
127
  - g.tassoni@bancolini.com
@@ -169,7 +168,6 @@ metadata:
169
168
  homepage_uri: https://github.com/gabrieletassoni/thecore_settings
170
169
  source_code_uri: https://github.com/gabrieletassoni/thecore_settings
171
170
  changelog_uri: https://github.com/gabrieletassoni/thecore_settings/blob/master/CHANGELOG.md
172
- post_install_message:
173
171
  rdoc_options: []
174
172
  require_paths:
175
173
  - lib
@@ -184,8 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
182
  - !ruby/object:Gem::Version
185
183
  version: '0'
186
184
  requirements: []
187
- rubygems_version: 3.4.10
188
- signing_key:
185
+ rubygems_version: 3.6.2
189
186
  specification_version: 4
190
187
  summary: Settings Management
191
188
  test_files: []