eac_rails_base0 0.41.0 → 0.46.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 +4 -4
- data/app/controllers/eac_rails_base0/mailer_controller.rb +12 -0
- data/app/helpers/eac_rails_base0/layout_helper.rb +9 -9
- data/app/views/eac_rails_base0/mailer/info.html.erb +17 -0
- data/app/views/layouts/eac_rails_base0/_version.erb +1 -0
- data/config/locales/en.yml +7 -0
- data/config/locales/pt-BR.yml +3 -0
- data/config/routes.rb +8 -0
- data/lib/eac_rails_base0/app_base/ability.rb +1 -0
- data/lib/eac_rails_base0/app_base/ability_mapping.rb +5 -0
- data/lib/eac_rails_base0/app_base/application.rb +6 -43
- data/lib/eac_rails_base0/app_base/application/all.rb +66 -0
- data/lib/eac_rails_base0/app_base/application/development.rb +58 -0
- data/lib/eac_rails_base0/app_base/application/production.rb +49 -0
- data/lib/eac_rails_base0/app_base/application/test.rb +43 -0
- data/lib/eac_rails_base0/app_generator/builder.rb +1 -1
- data/lib/eac_rails_base0/app_generator/templates/gitignore +23 -0
- data/lib/eac_rails_base0/version.rb +1 -1
- data/lib/eac_rails_base0/x_engine.rb +4 -0
- data/lib/tasks/eac_rails_base0.rake +13 -6
- metadata +28 -8
- data/config/initializers/letter_opener.rb +0 -7
- data/config/initializers/pg_deprecated_constants.rb +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c96092667c86b10c873e3a50592375478186f66a8532f05b237fe7ec591c604f
|
4
|
+
data.tar.gz: df32971dca2efcd3e13005ec8220f5f05fce87f3019f701e49bbc8aff45ab802
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9c801d5573d57f06281c1fa02e7a85b13b54ce491d5fc363a640526b4fcbf306d1a641c76c1fcdbc6e40a96d36f2841b72c40a6f1c13c61ab30423811f5f922
|
7
|
+
data.tar.gz: 770749e226208d837accc62737169c36f30e38a5fdcfc1e5997b68cf6cda4ca23906a4006a0470a030c035ee08c0d96f249a51e2080902aa296223b399ac997f
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module EacRailsBase0
|
4
|
+
class MailerController < ::EacRailsBase0::ApplicationController
|
5
|
+
def info
|
6
|
+
klass = ::ActionMailer::Base
|
7
|
+
@sections = %w[default_params default_url_options smtp_settings].map do |section|
|
8
|
+
["#{klass}.#{section}", klass.send(section)]
|
9
|
+
end.to_h
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -4,6 +4,7 @@ module EacRailsBase0
|
|
4
4
|
module LayoutHelper
|
5
5
|
APP_TITLE_METHOD = 'app_title'
|
6
6
|
APP_MAIN_MENU_ENTRIES_METHOD = 'app_main_menu_entries'
|
7
|
+
ADMIN_ENTRIES = %w[eac_users_support tasks_scheduler aranha br_railties mailer].freeze
|
7
8
|
|
8
9
|
def base0_app_title
|
9
10
|
if respond_to?(APP_TITLE_METHOD)
|
@@ -28,17 +29,16 @@ module EacRailsBase0
|
|
28
29
|
end
|
29
30
|
|
30
31
|
def base0_app_main_menu_admin_entries
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
send("#{identifier}_main_menu_admin_entries")
|
36
|
-
end
|
37
|
-
h
|
32
|
+
ADMIN_ENTRIES.map do |identifier|
|
33
|
+
[::I18n.t("eac_rails_base0.main_menu.admin.#{identifier}"),
|
34
|
+
send("#{identifier}_main_menu_admin_entries")]
|
35
|
+
end.to_h
|
38
36
|
end
|
39
37
|
|
40
|
-
def
|
41
|
-
|
38
|
+
def mailer_main_menu_admin_entries
|
39
|
+
{
|
40
|
+
t('eac_rails_base0.mailer.info') => [main_app.info_eac_rails_base0_mailer_index_path]
|
41
|
+
}
|
42
42
|
end
|
43
43
|
|
44
44
|
def eac_users_support_main_menu_admin_entries
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<h2><%= t('eac_rails_base0.mailer.info') %></h2>
|
2
|
+
<% @sections.each do |section_title, section_data| %>
|
3
|
+
<h3><%= section_title %></h3>
|
4
|
+
<dl>
|
5
|
+
<% section_data.each do |key, value| %>
|
6
|
+
<dt><%= key %></dt>
|
7
|
+
<dd>
|
8
|
+
<% if key.to_s.downcase.include?('password') %>
|
9
|
+
<em><%= value.present? ? 'Present' : 'Blank' %></em>
|
10
|
+
<% else %>
|
11
|
+
<%= value %>
|
12
|
+
<% end %>
|
13
|
+
(<%= value.class %>)
|
14
|
+
</dd>
|
15
|
+
<% end %>
|
16
|
+
</dl>
|
17
|
+
<% end %>
|
data/config/locales/pt-BR.yml
CHANGED
@@ -27,9 +27,12 @@ pt-BR:
|
|
27
27
|
eac_rails_base0:
|
28
28
|
app_version:
|
29
29
|
unsetted: Não especificada
|
30
|
+
mailer:
|
31
|
+
info: 'Informações de e-mail'
|
30
32
|
main_menu:
|
31
33
|
admin:
|
32
34
|
aranha: Aranha
|
33
35
|
br_railties: BrRailties
|
36
|
+
mailer: E-mail
|
34
37
|
eac_users_support: Usuários
|
35
38
|
tasks_scheduler: Agendador
|
data/config/routes.rb
CHANGED
@@ -7,4 +7,12 @@ Rails.application.routes.draw do
|
|
7
7
|
mount ::EacUsersSupport::Engine => '/'
|
8
8
|
mount ::Aranha::Engine => '/aranha'
|
9
9
|
mount ::BrRailties::Engine => '/br_railties'
|
10
|
+
|
11
|
+
namespace(:eac_rails_base0) do
|
12
|
+
resources(:mailer, include: []) do
|
13
|
+
collection do
|
14
|
+
get :info
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
10
18
|
end
|
@@ -17,6 +17,11 @@ module EacRailsBase0
|
|
17
17
|
map_controller 'BrRailties::Municipalities', :manage, ::BrRailties::Municipality
|
18
18
|
map_controller 'ScheduledTasks', :manage, ::ScheduledTask
|
19
19
|
map_controller 'TasksSchedulerDaemon', :manage, ::ScheduledTask
|
20
|
+
map_eac_rails_base0
|
21
|
+
end
|
22
|
+
|
23
|
+
def map_eac_rails_base0
|
24
|
+
map_controller 'EacRailsBase0::Mailer', :manage, :eac_rails_base0_mailer
|
20
25
|
end
|
21
26
|
end
|
22
27
|
end
|
@@ -1,57 +1,20 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
3
4
|
require 'rails/all'
|
4
5
|
|
5
6
|
# Require the gems listed in Gemfile, including any gems
|
6
7
|
# you've limited to :test, :development, or :production.
|
7
8
|
Bundler.require(*Rails.groups)
|
8
9
|
|
9
|
-
def rails_root(dir)
|
10
|
-
return dir if ::File.exist?(::File.join(dir, 'config.ru'))
|
11
|
-
raise 'config.ru not found in ascendent path' if dir == '/'
|
12
|
-
|
13
|
-
rails_root(::File.dirname(dir))
|
14
|
-
end
|
15
|
-
|
16
|
-
local_configuration = ::File.join(rails_root(APP_PATH), 'config', 'local_configuration.rb')
|
17
|
-
require local_configuration if File.exist?(local_configuration)
|
18
|
-
|
19
10
|
module EacRailsBase0App
|
20
11
|
class Application < Rails::Application
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
26
|
-
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
27
|
-
# config.time_zone = 'Central Time (US & Canada)'
|
28
|
-
|
29
|
-
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
30
|
-
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
31
|
-
# config.i18n.default_locale = :de
|
32
|
-
config.i18n.default_locale = :'pt-BR'
|
33
|
-
|
34
|
-
# Do not swallow errors in after_commit/after_rollback callbacks.
|
35
|
-
config.active_record.raise_in_transactional_callbacks = true if ::Rails.version < '5'
|
36
|
-
|
37
|
-
# Autoload do código em /lib.
|
38
|
-
config.autoload_paths << Rails.root.join('lib')
|
39
|
-
|
40
|
-
config.after_initialize do
|
41
|
-
ActiveRecord::Base.logger = nil
|
42
|
-
end
|
43
|
-
|
44
|
-
app_tmpdir = ::File.join(::Dir.tmpdir, ::Rails.root.to_path.parameterize, 'tmp')
|
45
|
-
|
46
|
-
config.assets.configure do |env|
|
47
|
-
env.cache = Sprockets::Cache::FileStore.new(
|
48
|
-
::File.join(app_tmpdir, 'cache', 'assets'),
|
49
|
-
config.assets.cache_limit,
|
50
|
-
env.logger
|
51
|
-
)
|
12
|
+
class << self
|
13
|
+
def setup(*args)
|
14
|
+
args.each { |a| send("setup_#{a}") }
|
15
|
+
end
|
52
16
|
end
|
53
17
|
|
54
|
-
|
55
|
-
config.paths['db/migrate'] << migrate_deprecated_dir if migrate_deprecated_dir.directory?
|
18
|
+
require_sub __FILE__, include_modules: true
|
56
19
|
end
|
57
20
|
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacRailsBase0App
|
6
|
+
class Application < Rails::Application
|
7
|
+
module All
|
8
|
+
common_concern do
|
9
|
+
setup('local_configuration', 'assets_cache', 'dependencies', 'localization', 'load_paths',
|
10
|
+
'loggers')
|
11
|
+
end
|
12
|
+
|
13
|
+
module ClassMethods
|
14
|
+
def app_temporary_directory
|
15
|
+
::File.join(::Dir.tmpdir, ::Rails.root.to_path.parameterize, 'tmp')
|
16
|
+
end
|
17
|
+
|
18
|
+
def rails_root(dir)
|
19
|
+
return dir if ::File.exist?(::File.join(dir, 'config.ru'))
|
20
|
+
raise 'config.ru not found in ascendent path' if dir == '/'
|
21
|
+
|
22
|
+
rails_root(::File.dirname(dir))
|
23
|
+
end
|
24
|
+
|
25
|
+
def setup_assets_cache
|
26
|
+
config.assets.configure do |env|
|
27
|
+
env.cache = Sprockets::Cache::FileStore.new(
|
28
|
+
::File.join(app_temporary_directory, 'cache', 'assets'),
|
29
|
+
config.assets.cache_limit,
|
30
|
+
env.logger
|
31
|
+
)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def setup_dependencies
|
36
|
+
require 'carrierwave'
|
37
|
+
end
|
38
|
+
|
39
|
+
def setup_deprecated_migrations
|
40
|
+
path = ::Rails.root.join('db', 'migrate_deprecated')
|
41
|
+
config.paths['db/migrate'] << path if path.directory?
|
42
|
+
end
|
43
|
+
|
44
|
+
def setup_load_paths
|
45
|
+
config.autoload_paths << Rails.root.join('lib')
|
46
|
+
end
|
47
|
+
|
48
|
+
def setup_local_configuration
|
49
|
+
local_configuration = ::File.join(rails_root(APP_PATH), 'config',
|
50
|
+
'local_configuration.rb')
|
51
|
+
require local_configuration if File.exist?(local_configuration)
|
52
|
+
end
|
53
|
+
|
54
|
+
def setup_localization
|
55
|
+
config.i18n.default_locale = :'pt-BR'
|
56
|
+
end
|
57
|
+
|
58
|
+
def setup_loggers
|
59
|
+
config.after_initialize do
|
60
|
+
ActiveRecord::Base.logger = nil
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacRailsBase0App
|
6
|
+
class Application < Rails::Application
|
7
|
+
module Development
|
8
|
+
common_concern do
|
9
|
+
next unless ::Rails.env.development?
|
10
|
+
|
11
|
+
setup('assets', 'cache', 'general', 'letter_opener', 'log')
|
12
|
+
end
|
13
|
+
|
14
|
+
module ClassMethods
|
15
|
+
def setup_assets
|
16
|
+
config.assets.debug = true
|
17
|
+
config.assets.quiet = true
|
18
|
+
end
|
19
|
+
|
20
|
+
def setup_cache
|
21
|
+
if Rails.root.join('tmp/caching-dev.txt').exist?
|
22
|
+
config.action_controller.perform_caching = true
|
23
|
+
config.cache_store = :memory_store
|
24
|
+
config.public_file_server.headers = {
|
25
|
+
'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}"
|
26
|
+
}
|
27
|
+
else
|
28
|
+
config.action_controller.perform_caching = false
|
29
|
+
config.cache_store = :null_store
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def setup_general
|
34
|
+
config.cache_classes = false
|
35
|
+
config.eager_load = false
|
36
|
+
config.consider_all_requests_local = true
|
37
|
+
config.action_mailer.raise_delivery_errors = false
|
38
|
+
config.action_mailer.perform_caching = false
|
39
|
+
config.active_record.migration_error = :page_load
|
40
|
+
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
41
|
+
end
|
42
|
+
|
43
|
+
def setup_letter_opener
|
44
|
+
require 'letter_opener'
|
45
|
+
config.action_mailer.delivery_method = :letter_opener
|
46
|
+
config.action_mailer.perform_deliveries = true
|
47
|
+
end
|
48
|
+
|
49
|
+
def setup_log
|
50
|
+
config.active_support.deprecation = :log
|
51
|
+
logger = ActiveSupport::Logger.new(STDOUT)
|
52
|
+
logger.formatter = config.log_formatter
|
53
|
+
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacRailsBase0App
|
6
|
+
class Application < Rails::Application
|
7
|
+
module Production
|
8
|
+
common_concern do
|
9
|
+
next unless ::Rails.env.production?
|
10
|
+
|
11
|
+
setup('assets', 'general', 'log', 'public_file_server')
|
12
|
+
end
|
13
|
+
|
14
|
+
module ClassMethods
|
15
|
+
def setup_assets
|
16
|
+
config.assets.js_compressor = :uglifier
|
17
|
+
config.assets.compile = false
|
18
|
+
end
|
19
|
+
|
20
|
+
def setup_general
|
21
|
+
config.active_record.dump_schema_after_migration = false
|
22
|
+
config.cache_classes = true
|
23
|
+
config.eager_load = false
|
24
|
+
config.consider_all_requests_local = false
|
25
|
+
config.action_controller.perform_caching = true
|
26
|
+
config.read_encrypted_secrets = true
|
27
|
+
config.action_mailer.perform_caching = false
|
28
|
+
config.i18n.fallbacks = true
|
29
|
+
end
|
30
|
+
|
31
|
+
def setup_log
|
32
|
+
config.log_level = :debug
|
33
|
+
config.log_tags = [:request_id]
|
34
|
+
config.active_support.deprecation = :notify
|
35
|
+
config.log_formatter = ::Logger::Formatter.new
|
36
|
+
return if ENV['RAILS_LOG_TO_STDOUT'].blank?
|
37
|
+
|
38
|
+
logger = ActiveSupport::Logger.new(STDOUT)
|
39
|
+
logger.formatter = config.log_formatter
|
40
|
+
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
41
|
+
end
|
42
|
+
|
43
|
+
def setup_public_file_server
|
44
|
+
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacRailsBase0App
|
6
|
+
class Application < Rails::Application
|
7
|
+
module Test
|
8
|
+
common_concern do
|
9
|
+
next unless ::Rails.env.test?
|
10
|
+
|
11
|
+
setup('action_controller', 'general', 'log', 'public_file_server')
|
12
|
+
end
|
13
|
+
|
14
|
+
module ClassMethods
|
15
|
+
def setup_action_controller
|
16
|
+
config.action_controller.perform_caching = false
|
17
|
+
config.action_controller.allow_forgery_protection = false
|
18
|
+
end
|
19
|
+
|
20
|
+
def setup_general
|
21
|
+
config.cache_classes = true
|
22
|
+
config.eager_load = false
|
23
|
+
|
24
|
+
config.consider_all_requests_local = true
|
25
|
+
config.action_controller.perform_caching = false
|
26
|
+
config.action_dispatch.show_exceptions = false
|
27
|
+
config.action_mailer.delivery_method = :test
|
28
|
+
end
|
29
|
+
|
30
|
+
def setup_log
|
31
|
+
config.active_support.deprecation = :stderr
|
32
|
+
end
|
33
|
+
|
34
|
+
def setup_public_file_server
|
35
|
+
config.public_file_server.enabled = true
|
36
|
+
config.public_file_server.headers = {
|
37
|
+
'Cache-Control' => "public, max-age=#{1.hour.seconds.to_i}"
|
38
|
+
}
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
2
|
+
#
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
+
|
7
|
+
# Ignore bundler config.
|
8
|
+
/.bundle
|
9
|
+
|
10
|
+
<% if sqlite3? -%>
|
11
|
+
# Ignore the default SQLite database.
|
12
|
+
/db/*.sqlite3
|
13
|
+
/db/*.sqlite3-journal
|
14
|
+
|
15
|
+
<% end -%>
|
16
|
+
# Ignore all logfiles and tempfiles.
|
17
|
+
/log/*
|
18
|
+
!/log/.keep
|
19
|
+
/tmp
|
20
|
+
|
21
|
+
# Configuration files
|
22
|
+
config/database.y*ml
|
23
|
+
config/local_configuration.rb
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'rake/testtask'
|
3
4
|
require 'rspec/core/rake_task'
|
4
5
|
|
5
6
|
namespace :eac_rails_base0 do
|
@@ -12,16 +13,22 @@ namespace :eac_rails_base0 do
|
|
12
13
|
end
|
13
14
|
Rake::Task['eac_rails_base0:rspec'].enhance ['db:test:prepare']
|
14
15
|
|
15
|
-
|
16
|
-
|
17
|
-
|
16
|
+
namespace :minitest do
|
17
|
+
{ core: '', engines: 'engines/*/' }.each do |name, pattern_prefix|
|
18
|
+
::Rake::TestTask.new(name => 'test:prepare') do |t|
|
19
|
+
t.libs << 'test'
|
20
|
+
t.pattern = "#{pattern_prefix}test/**/*_test.rb"
|
21
|
+
t.ruby_opts = %w[-W0]
|
22
|
+
t.verbose = false
|
23
|
+
end
|
24
|
+
end
|
18
25
|
end
|
19
26
|
|
20
|
-
desc 'Minitest for application'
|
21
|
-
task minitest: %w[
|
27
|
+
desc 'Minitest for application and engines'
|
28
|
+
task minitest: %w[core engines].map { |task| "eac_rails_base0:minitest:#{task}" }
|
22
29
|
|
23
30
|
desc 'Minitest and RSpec for application'
|
24
|
-
task test: ['
|
31
|
+
task test: ['eac_rails_base0:minitest', 'eac_rails_base0:rspec']
|
25
32
|
end
|
26
33
|
|
27
34
|
Rake::Task['default'].clear
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eac_rails_base0
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.46.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Esquilo Azul Company
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_scaffold
|
@@ -353,7 +353,7 @@ dependencies:
|
|
353
353
|
- !ruby/object:Gem::Version
|
354
354
|
version: '0'
|
355
355
|
- !ruby/object:Gem::Dependency
|
356
|
-
name:
|
356
|
+
name: listen
|
357
357
|
requirement: !ruby/object:Gem::Requirement
|
358
358
|
requirements:
|
359
359
|
- - ">="
|
@@ -367,19 +367,33 @@ dependencies:
|
|
367
367
|
- !ruby/object:Gem::Version
|
368
368
|
version: '0'
|
369
369
|
- !ruby/object:Gem::Dependency
|
370
|
-
name:
|
370
|
+
name: puma
|
371
371
|
requirement: !ruby/object:Gem::Requirement
|
372
372
|
requirements:
|
373
373
|
- - ">="
|
374
374
|
- !ruby/object:Gem::Version
|
375
|
-
version:
|
375
|
+
version: '0'
|
376
376
|
type: :runtime
|
377
377
|
prerelease: false
|
378
378
|
version_requirements: !ruby/object:Gem::Requirement
|
379
379
|
requirements:
|
380
380
|
- - ">="
|
381
381
|
- !ruby/object:Gem::Version
|
382
|
-
version:
|
382
|
+
version: '0'
|
383
|
+
- !ruby/object:Gem::Dependency
|
384
|
+
name: rails
|
385
|
+
requirement: !ruby/object:Gem::Requirement
|
386
|
+
requirements:
|
387
|
+
- - "~>"
|
388
|
+
- !ruby/object:Gem::Version
|
389
|
+
version: 5.1.7
|
390
|
+
type: :runtime
|
391
|
+
prerelease: false
|
392
|
+
version_requirements: !ruby/object:Gem::Requirement
|
393
|
+
requirements:
|
394
|
+
- - "~>"
|
395
|
+
- !ruby/object:Gem::Version
|
396
|
+
version: 5.1.7
|
383
397
|
- !ruby/object:Gem::Dependency
|
384
398
|
name: rails-i18n
|
385
399
|
requirement: !ruby/object:Gem::Requirement
|
@@ -563,6 +577,7 @@ files:
|
|
563
577
|
- app/assets/stylesheets/eac_rails_base0/components.scss
|
564
578
|
- app/assets/stylesheets/eac_rails_base0/default_configuration.scss
|
565
579
|
- app/controllers/eac_rails_base0/application_controller.rb
|
580
|
+
- app/controllers/eac_rails_base0/mailer_controller.rb
|
566
581
|
- app/helpers/eac_rails_base0/app_version_helper.rb
|
567
582
|
- app/helpers/eac_rails_base0/layout_helper.rb
|
568
583
|
- app/helpers/eac_rails_base0/panel_default_helper.rb
|
@@ -577,6 +592,7 @@ files:
|
|
577
592
|
- app/views/devise/registrations/new.html.erb
|
578
593
|
- app/views/devise/sessions/new.html.erb
|
579
594
|
- app/views/devise/shared/_links.html.erb
|
595
|
+
- app/views/eac_rails_base0/mailer/info.html.erb
|
580
596
|
- app/views/layouts/eac_rails_base0/_flash.html.erb
|
581
597
|
- app/views/layouts/eac_rails_base0/_main_menu.html.erb
|
582
598
|
- app/views/layouts/eac_rails_base0/_navbar_user.html.erb
|
@@ -591,12 +607,11 @@ files:
|
|
591
607
|
- config/initializers/carrier_wave.rb
|
592
608
|
- config/initializers/cookies_serializer.rb
|
593
609
|
- config/initializers/filter_parameter_logging.rb
|
594
|
-
- config/initializers/letter_opener.rb
|
595
610
|
- config/initializers/mime_types.rb
|
596
611
|
- config/initializers/patches.rb
|
597
|
-
- config/initializers/pg_deprecated_constants.rb
|
598
612
|
- config/initializers/session_store.rb
|
599
613
|
- config/initializers/wrap_parameters.rb
|
614
|
+
- config/locales/en.yml
|
600
615
|
- config/locales/pt-BR.yml
|
601
616
|
- config/routes.rb
|
602
617
|
- exe/eac_rails_base0_app
|
@@ -604,6 +619,10 @@ files:
|
|
604
619
|
- lib/eac_rails_base0/app_base/ability.rb
|
605
620
|
- lib/eac_rails_base0/app_base/ability_mapping.rb
|
606
621
|
- lib/eac_rails_base0/app_base/application.rb
|
622
|
+
- lib/eac_rails_base0/app_base/application/all.rb
|
623
|
+
- lib/eac_rails_base0/app_base/application/development.rb
|
624
|
+
- lib/eac_rails_base0/app_base/application/production.rb
|
625
|
+
- lib/eac_rails_base0/app_base/application/test.rb
|
607
626
|
- lib/eac_rails_base0/app_generator/builder.rb
|
608
627
|
- lib/eac_rails_base0/app_generator/generator.rb
|
609
628
|
- lib/eac_rails_base0/app_generator/templates/Gemfile
|
@@ -626,6 +645,7 @@ files:
|
|
626
645
|
- lib/eac_rails_base0/app_generator/templates/config/environments/production.rb
|
627
646
|
- lib/eac_rails_base0/app_generator/templates/config/environments/test.rb
|
628
647
|
- lib/eac_rails_base0/app_generator/templates/config/routes.rb
|
648
|
+
- lib/eac_rails_base0/app_generator/templates/gitignore
|
629
649
|
- lib/eac_rails_base0/app_generator/templates/lib/local_plugins.rb
|
630
650
|
- lib/eac_rails_base0/boolean_value.rb
|
631
651
|
- lib/eac_rails_base0/engine.rb
|
@@ -1,37 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# File: lib/pg/deprecated_constants.rb
|
4
|
-
#
|
5
|
-
# This file overrides the pg gem's pg/deprecated_constants.rb file and so
|
6
|
-
# its warning message is not printed. Avoiding this warning message helps
|
7
|
-
# clean up the app startup and test output.
|
8
|
-
#
|
9
|
-
# This behaviour relies on lib/ being ahead of the pg gem in $LOAD_PATH and
|
10
|
-
# these lines from the pg gem's lib/pg.rb file:
|
11
|
-
# autoload :PGError, 'pg/deprecated_constants'
|
12
|
-
# autoload :PGconn, 'pg/deprecated_constants'
|
13
|
-
# autoload :PGresult, 'pg/deprecated_constants'
|
14
|
-
#
|
15
|
-
# Your config/application.rb may need to modify autoload_paths to ensure
|
16
|
-
# the lib/ dir is ahead of the pg gem install path in $LOAD_PATH:
|
17
|
-
#
|
18
|
-
# config.autoload_paths << Rails.root.join('lib')
|
19
|
-
#
|
20
|
-
if (PG::VERSION != '0.21.0') || (ActiveRecord.version.to_s != '4.2.11.3')
|
21
|
-
::Rails.logger.warn(<<~MSG)
|
22
|
-
-----------------------------------------------------------------------------------
|
23
|
-
The pg and/or activerecord gem version has changed, meaning deprecated pg constants
|
24
|
-
may no longer be in use, so try deleting this file to see if the
|
25
|
-
'The PGconn, PGresult, and PGError constants are deprecated...' message has gone:
|
26
|
-
#{__FILE__}
|
27
|
-
-----------------------------------------------------------------------------------
|
28
|
-
|
29
|
-
MSG
|
30
|
-
end
|
31
|
-
|
32
|
-
# Declare the deprecated constants as is done in the original
|
33
|
-
# pg/deprecated_constants.rb so they can still be used by older
|
34
|
-
# versions of gems such as activerecord.
|
35
|
-
PGconn = PG::Connection
|
36
|
-
PGresult = PG::Result
|
37
|
-
PGError = PG::Error
|