thecore_backend_commons 2.2.5 → 2.3.1

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: 82149f563831770ec3f19bcd865462625a2cf8029312eeea7c3e25a9157960f3
4
- data.tar.gz: e4cde439462a45b1f27d29a3cb60c0462c7a72d2ef8aa0d8b5064ca1b29a82f3
3
+ metadata.gz: f0202849e4f38b4061e22ad045921e089568105f0f93133f49f73b8a4f940b98
4
+ data.tar.gz: '08f3c782440a101aebe5c6e87f471296871063e2f4410eb29c6c919a2396293c'
5
5
  SHA512:
6
- metadata.gz: e355b6924cd95c543b86032493219de14b615ed686f1e45c7899b8d3af3b47cd01fe512fcd7032135a715d5103bd4c3363e253d2afd0a4fd16f17519246a5971
7
- data.tar.gz: 7056954496cecf46edfdf9eec29c7c8f70e81ab854795c94ef6c1dbda9a61f1302193a539b1dba2825efe90f2812904214b5bcac36408706a629c7fb929e36c6
6
+ metadata.gz: e7031d0b99ffdb997d7c088c4528cd0fffe4cfa411a6eed78a93a775c552e0e3e8315b872ec042d3f38a90f5b2d1972780dba28ed6bd30c59dfd059523cf19c4
7
+ data.tar.gz: 7580d85e179694ca46b3392952e8b2cda451f757387c9b4d26a810712e0c2480205271f2a91f26d002de38256b3a3ab17006edb0baf8ef1dbfd831513230d70a
@@ -11,13 +11,6 @@ Rails.application.configure do
11
11
  # AFTER INITIALIZE Good place to load things that must have a bit of initialization
12
12
  # setup on order to work (and not be overrided).
13
13
  config.after_initialize do
14
- # In development be sure to load all the namespaces
15
- # in order to have working reflection and meta-programming.
16
- if Rails.env.development?
17
- Rails.configuration.eager_load_namespaces.each(&:eager_load!) if Rails.version.to_i == 5 #Rails 5
18
- Zeitwerk::Loader.eager_load_all if Rails.version.to_i >= 6 #Rails 6
19
- end
20
-
21
14
  # include the extensions
22
15
  ActiveRecord::Base.send(:include, ActiveRecordExtensions)
23
16
  Integer.send(:include, FixnumConcern)
@@ -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,9 +4,5 @@ module ThecoreBackendCommonsUser
4
4
  extend ActiveSupport::Concern
5
5
 
6
6
  included do
7
- devise :rememberable
8
- devise :timeoutable, timeout_in: 30.minutes
9
- validates :username, uniqueness: { case_sensitive: false }, presence: true, length: { in: 4..15 }
10
- validates_format_of :username, with: /\A[a-zA-Z0-9]*\z/, on: :create, message: "can only contain letters and digits"
11
7
  end
12
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.5'
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.5
4
+ version: 2.3.1
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-15 00:00:00.000000000 Z
11
+ date: 2020-11-03 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