thecore_backend_commons 2.2.6 → 2.3.2

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
2
  SHA256:
3
- metadata.gz: 01d347e1f796b03f40136ca428f2f893124ce75a7529b7b0d6a9e6507fe42f85
4
- data.tar.gz: e469edb2a2a4323816b3d0e078d5112efa86f58ea52aefd9d1c0fe119fea2208
3
+ metadata.gz: 7e1d24d6395eea6d48915c5d165cdc8ac1350be9f50ee9e39580af7e1c64a4a8
4
+ data.tar.gz: 5a7de1ca4db859ac7c0db77e7419a6f079642ff68f96b09b01ee873010abba96
5
5
  SHA512:
6
- metadata.gz: 65ee09a21ac92a8ae89bbd81d53f1180480bf196b5baa2121aafeed1bac1c4d9c5b79041cf700205e9366dec63ca866de4b185c6c52e987b370e8f7bc5cf1171
7
- data.tar.gz: 8656f875e63d7ad644f238005edc4e08a0b38f45249d299b15156f84b7be30f7860d0ab924a8274aec5307ad21bd770e3a38d58c7a530140aab038e540b5f28c
6
+ metadata.gz: ead1c46f8be7ec8663063b8cb948ec8d6f6153a4e397edea854e9ff9fbcf6b37d5dc4a9f9ddc554e430f4ac994ece33a02623db61a5d7174a1e86ba4ee08436c
7
+ data.tar.gz: a235d64f81b4d5eae8495b07e9bd8840242d126e8c5d5d1ef2abd4fb9c82b43090765c3cf41e6442652ef51384c7ee3efefb58e3b3ea86be45a3c97f6bf25db1
@@ -0,0 +1,25 @@
1
+ class CreateRailsAdminSettings < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :rails_admin_settings do |t|
4
+ t.boolean :enabled, default: true
5
+ t.string :kind, null: false, default: 'string'
6
+ t.string :ns, default: 'main'
7
+ t.string :key, null: false
8
+ if Object.const_defined?('Geocoder')
9
+ t.float :latitude
10
+ t.float :longitude
11
+ end
12
+ t.text :raw
13
+ t.string :label
14
+ if defined?(Paperclip)
15
+ t.attachment :file
16
+ elsif defined?(CarrierWave)
17
+ t.string :file
18
+ end
19
+ t.timestamps
20
+ end
21
+
22
+ add_index :rails_admin_settings, :key
23
+ add_index :rails_admin_settings, [:ns, :key], unique: true
24
+ end
25
+ end
@@ -0,0 +1,5 @@
1
+ class AddAppName < ActiveRecord::Migration[5.0]
2
+ def change
3
+ Settings.app_name = "The Core by Gabriele Tassoni"
4
+ end
5
+ end
@@ -4,7 +4,5 @@ module ThecoreBackendCommonsUser
4
4
  extend ActiveSupport::Concern
5
5
 
6
6
  included do
7
- validates :username, uniqueness: { case_sensitive: false }, presence: true, length: { in: 4..15 }
8
- validates_format_of :username, with: /\A[a-zA-Z0-9]*\z/, on: :create, message: "can only contain letters and digits"
9
7
  end
10
8
  end
@@ -2,6 +2,7 @@ require 'thecore_auth_commons'
2
2
  require 'devise-i18n'
3
3
  require 'http_accept_language'
4
4
  require 'rails-i18n'
5
+ require 'rails_admin_settings'
5
6
 
6
7
  require 'patches/thecore'
7
8
  require 'concerns/thecore_backend_commons_user'
@@ -1,3 +1,3 @@
1
1
  module ThecoreBackendCommons
2
- VERSION = '2.2.6'
2
+ VERSION = "#{`git describe --tags $(git rev-list --tags --max-count=1)`}"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_backend_commons
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.6
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-17 00:00:00.000000000 Z
11
+ date: 2021-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thecore_auth_commons
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '2.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rails_admin_settings
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.5'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.5'
69
83
  description: Wrapper to keep all the common libraries and setups needed by Thecore
70
84
  UI Backend(s).
71
85
  email:
@@ -80,16 +94,11 @@ files:
80
94
  - app/assets/config/thecore_backend_commons_manifest.js
81
95
  - app/jobs/application_job.rb
82
96
  - config/initializers/thecore_backend_commons_app_configs.rb
83
- - config/locales/en.activerecord.yml
84
- - config/locales/en.contact_mailer.custom.yml
85
97
  - config/locales/en.devise.custom.yml
86
- - config/locales/en.yml
87
- - config/locales/it.activerecord.yml
88
- - config/locales/it.contact_mailer.custom.yml
89
98
  - config/locales/it.devise.custom.yml
90
- - config/locales/it.yml
91
99
  - config/routes.rb
92
- - db/migrate/20190920115549_create_active_storage_tables.active_storage.rb
100
+ - db/migrate/20161227101954_create_rails_admin_settings.rb
101
+ - db/migrate/20161227101956_add_app_name.rb
93
102
  - lib/concerns/thecore_backend_commons_user.rb
94
103
  - lib/patches/active_record_extensions.rb
95
104
  - lib/patches/application_record_loader.rb
@@ -1,6 +0,0 @@
1
- en:
2
- activerecord:
3
- models:
4
- user:
5
- one: User
6
- other: Users
@@ -1,5 +0,0 @@
1
- it:
2
- contact_mailer:
3
- message:
4
- domain: "Domain: %{domain}"
5
- from: "From: %{name} - %{email}"
@@ -1,33 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
- en:
23
- current_user: Current user
24
- hello: "Hello world"
25
- dashboard: "Dashboard"
26
- contact: "Contact"
27
- manage: "Manage"
28
- sign_out: "Sign Out"
29
- admin:
30
- links:
31
- label: Links
32
- settings:
33
- advanced: Advanced
@@ -1,20 +0,0 @@
1
- it:
2
- activerecord:
3
- models:
4
- user:
5
- one: Utente
6
- other: Utenti
7
- attributes:
8
- user:
9
- email: E-Mail
10
- username: Nome Utente
11
- code: Codice
12
- roles: Ruoli
13
- admin: Amministratore?
14
- created_at: Data di Creazione
15
- locked: Bloccato?
16
- third_party: Ente Terzo?
17
- password: Password
18
- password_confirmation: Conferma Password
19
- descriptions:
20
- user: In questa sezione dell'applicazione potete cercare nella lista degli utenti in diversi modi usando i filtri o ordinare la lista secondo diversi campi.
@@ -1,5 +0,0 @@
1
- it:
2
- contact_mailer:
3
- message:
4
- domain: "Dominio: %{domain}"
5
- from: "Mittente: %{name} - %{email}"
@@ -1,44 +0,0 @@
1
- it:
2
- current_user: Utente corrente
3
- hello: "Ciao Mondo"
4
- dashboard: "Pannello di controllo"
5
- contact: "Aiutaci a Migliorare"
6
- manage: "Gestione"
7
- sign_out: "Uscita"
8
- advanced: Impostazioni
9
- main_records: Anagrafiche
10
- errors:
11
- messages:
12
- invalid: contiene caratteri invalidi
13
- tiered_times:
14
- dd:
15
- zero: "0 Giorni"
16
- one: "%{count} Giorno"
17
- other: "%{count} Giorni"
18
- hh:
19
- zero: "0 Ore"
20
- one: "%{count} Ora"
21
- other: "%{count} Ore"
22
- mm:
23
- zero: "0 Minuti"
24
- one: "%{count} Minuto"
25
- other: "%{count} Minuti"
26
- ss:
27
- zero: "0 Secondi"
28
- one: "%{count} Secondo"
29
- other: "%{count} Secondi"
30
- admin:
31
- links:
32
- label: Collegamenti
33
- tools:
34
- label: "Strumenti"
35
- settings:
36
- label: "Impostazioni"
37
- advanced: Avanzate
38
- registries: Anagrafiche
39
- operations: Operatività
40
- actions:
41
- charts:
42
- menu: Analisi
43
- title: Grafici
44
- breadcrumb: Grafici
@@ -1,27 +0,0 @@
1
- # This migration comes from active_storage (originally 20170806125915)
2
- class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
3
- def change
4
- create_table :active_storage_blobs do |t|
5
- t.string :key, null: false
6
- t.string :filename, null: false
7
- t.string :content_type
8
- t.text :metadata
9
- t.bigint :byte_size, null: false
10
- t.string :checksum, null: false
11
- t.datetime :created_at, null: false
12
-
13
- t.index [ :key ], unique: true
14
- end
15
-
16
- create_table :active_storage_attachments do |t|
17
- t.string :name, null: false
18
- t.references :record, null: false, polymorphic: true, index: false
19
- t.references :blob, null: false
20
-
21
- t.datetime :created_at, null: false
22
-
23
- t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
24
- t.foreign_key :active_storage_blobs, column: :blob_id
25
- end
26
- end
27
- end