eac_rails_base0 0.40.0 → 0.44.0

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: 20ae2a7f8314d4637e38f5f324f0ee9ef314ed0964477ef1ceb58b27e1d949b8
4
- data.tar.gz: 83b42bcf46c4aaca8b397c11d24e4b0f0ace7b5d8a94d42e75185dcd60c1190e
3
+ metadata.gz: dccf7c6042fface06b7406b0e890d50ceaac2e19283e6c99b1e2a7e5c7f26f62
4
+ data.tar.gz: 7ff5888516a0df463b8f7fe0f329913b4e7d18d6632ee707ccfcf243a35c8416
5
5
  SHA512:
6
- metadata.gz: 91c5c84d65469f2d73c767c06a895c50cb9f4970f7b007466251cffc9733b840fc310352f3e373de144d575c5b006f241c1dd2e0af169f3bda5b9928cee2d7d3
7
- data.tar.gz: 53a82f8ac645124d7e60fcab6295659a9a96dce8aaddbf7523d48a440e680a925ec5dd611708a394a769210a9249d74fcfa2ec84e52bd1c697335c2b8460e0fb
6
+ metadata.gz: 919b3dc8fbbf60f1b267bfbbe1a0080f5aa0ebc9b71e33400f3cf7d313e99be99ebd224ff098f9db58e9be4f81069683cd0ed4673b98774628c3730799cddf33
7
+ data.tar.gz: 2d8dda5b4f8a53d586f8e7d4659586a8b01a47fce86d8fcf6c58cab20acf0461f861e168444d19ee7ba885272dedb2462cc5b101ff1e62fdc25ecfb8ce0011c6
@@ -0,0 +1,4 @@
1
+ <% if current_user&.administrator %>
2
+ <div class="text-center"><b>Versão:</b> <%= base0_app_version %></div>
3
+ <div class="text-center"><b>RailsEnv:</b> <%= ::Rails.env %></div>
4
+ <% end %>
@@ -33,5 +33,6 @@
33
33
  <%= render partial: '/layouts/eac_rails_base0/flash' %>
34
34
  <%= yield %>
35
35
  </div>
36
+ <%= render partial: '/layouts/eac_rails_base0/version' %>
36
37
  </body>
37
38
  </html>
@@ -1,58 +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
- # Settings in config/environments/* take precedence over those specified here.
22
- # Application configuration should go into files in config/initializers
23
- # -- all .rb files in that directory are automatically loaded.
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
- config.eager_load_paths << ::Rails.root.join('lib')
40
-
41
- config.after_initialize do
42
- ActiveRecord::Base.logger = nil
43
- end
44
-
45
- app_tmpdir = ::File.join(::Dir.tmpdir, ::Rails.root.to_path.parameterize, 'tmp')
46
-
47
- config.assets.configure do |env|
48
- env.cache = Sprockets::Cache::FileStore.new(
49
- ::File.join(app_tmpdir, 'cache', 'assets'),
50
- config.assets.cache_limit,
51
- env.logger
52
- )
12
+ class << self
13
+ def setup(*args)
14
+ args.each { |a| send("setup_#{a}") }
15
+ end
53
16
  end
54
17
 
55
- migrate_deprecated_dir = ::Rails.root.join('db', 'migrate_deprecated')
56
- config.paths['db/migrate'] << migrate_deprecated_dir if migrate_deprecated_dir.directory?
18
+ require_sub __FILE__, include_modules: true
57
19
  end
58
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,44 @@
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', 'general', 'log', 'letter_opener')
12
+ end
13
+
14
+ module ClassMethods
15
+ def setup_assets
16
+ config.assets.debug = true
17
+ config.assets.digest = true
18
+ config.assets.raise_runtime_errors = true
19
+ end
20
+
21
+ def setup_general
22
+ config.cache_classes = false
23
+ config.eager_load = false
24
+ config.consider_all_requests_local = true
25
+ config.action_controller.perform_caching = false
26
+ config.action_mailer.raise_delivery_errors = false
27
+
28
+ config.active_record.migration_error = :page_load
29
+ end
30
+
31
+ def setup_letter_opener
32
+ require 'letter_opener'
33
+ config.action_mailer.delivery_method = :letter_opener
34
+ config.action_mailer.perform_deliveries = true
35
+ end
36
+
37
+ def setup_log
38
+ config.active_support.deprecation = :log
39
+ config.logger = Logger.new(STDOUT)
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,39 @@
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')
12
+ end
13
+
14
+ module ClassMethods
15
+ def setup_assets
16
+ config.assets.js_compressor = :uglifier
17
+ config.assets.compile = false
18
+ config.assets.digest = true
19
+ end
20
+
21
+ def setup_general
22
+ config.cache_classes = true
23
+ config.eager_load = true
24
+ config.consider_all_requests_local = false
25
+ config.action_controller.perform_caching = true
26
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
27
+ config.i18n.fallbacks = true
28
+ config.active_record.dump_schema_after_migration = false
29
+ end
30
+
31
+ def setup_log
32
+ config.active_support.deprecation = :notify
33
+ config.log_level = :debug
34
+ config.log_formatter = ::Logger::Formatter.new
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacRailsBase0App
6
+ class Application < Rails::Application
7
+ module RailsBefore5
8
+ common_concern do
9
+ next unless ::Rails.version < '5'
10
+
11
+ config.active_record.raise_in_transactional_callbacks = true
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,37 @@
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')
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
+ config.serve_static_files = true
24
+ config.static_cache_control = 'public, max-age=3600'
25
+ config.consider_all_requests_local = true
26
+ config.action_dispatch.show_exceptions = false
27
+ config.action_mailer.delivery_method = :test
28
+ config.active_support.test_order = :random
29
+ end
30
+
31
+ def setup_log
32
+ config.active_support.deprecation = :stderr
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -26,7 +26,7 @@ module EacRailsBase0
26
26
  end
27
27
 
28
28
  def db
29
- # Do nothing
29
+ directory 'db'
30
30
  end
31
31
 
32
32
  def lib
@@ -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,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRailsBase0
4
- VERSION = '0.40.0'
4
+ VERSION = '0.44.0'
5
5
  end
@@ -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
- desc 'Minitest for engines'
16
- Rails::TestTask.new('minitest:engines' => 'test:prepare') do |t|
17
- t.pattern = 'engines/*/test/**/*_test.rb'
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[test:run eac_rails_base0:minitest:engines]
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: ['test', 'eac_rails_base0:rspec']
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.40.0
4
+ version: 0.44.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-09-13 00:00:00.000000000 Z
11
+ date: 2020-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_scaffold
@@ -338,6 +338,20 @@ dependencies:
338
338
  - - ">="
339
339
  - !ruby/object:Gem::Version
340
340
  version: '0'
341
+ - !ruby/object:Gem::Dependency
342
+ name: letter_opener
343
+ requirement: !ruby/object:Gem::Requirement
344
+ requirements:
345
+ - - ">="
346
+ - !ruby/object:Gem::Version
347
+ version: '0'
348
+ type: :runtime
349
+ prerelease: false
350
+ version_requirements: !ruby/object:Gem::Requirement
351
+ requirements:
352
+ - - ">="
353
+ - !ruby/object:Gem::Version
354
+ version: '0'
341
355
  - !ruby/object:Gem::Dependency
342
356
  name: puma
343
357
  requirement: !ruby/object:Gem::Requirement
@@ -568,6 +582,7 @@ files:
568
582
  - app/views/layouts/eac_rails_base0/_navbar_user.html.erb
569
583
  - app/views/layouts/eac_rails_base0/_open_graph_protocol.html.erb
570
584
  - app/views/layouts/eac_rails_base0/_tasks_scheduler_alert.html.erb
585
+ - app/views/layouts/eac_rails_base0/_version.erb
571
586
  - app/views/layouts/eac_rails_base0/application.html.erb
572
587
  - config/initializers/action_mailer.rb
573
588
  - config/initializers/active_scaffold.rb
@@ -588,6 +603,11 @@ files:
588
603
  - lib/eac_rails_base0/app_base/ability.rb
589
604
  - lib/eac_rails_base0/app_base/ability_mapping.rb
590
605
  - lib/eac_rails_base0/app_base/application.rb
606
+ - lib/eac_rails_base0/app_base/application/all.rb
607
+ - lib/eac_rails_base0/app_base/application/development.rb
608
+ - lib/eac_rails_base0/app_base/application/production.rb
609
+ - lib/eac_rails_base0/app_base/application/rails_before_5.rb
610
+ - lib/eac_rails_base0/app_base/application/test.rb
591
611
  - lib/eac_rails_base0/app_generator/builder.rb
592
612
  - lib/eac_rails_base0/app_generator/generator.rb
593
613
  - lib/eac_rails_base0/app_generator/templates/Gemfile
@@ -610,6 +630,7 @@ files:
610
630
  - lib/eac_rails_base0/app_generator/templates/config/environments/production.rb
611
631
  - lib/eac_rails_base0/app_generator/templates/config/environments/test.rb
612
632
  - lib/eac_rails_base0/app_generator/templates/config/routes.rb
633
+ - lib/eac_rails_base0/app_generator/templates/gitignore
613
634
  - lib/eac_rails_base0/app_generator/templates/lib/local_plugins.rb
614
635
  - lib/eac_rails_base0/boolean_value.rb
615
636
  - lib/eac_rails_base0/engine.rb