eac_rails_base0 0.71.1 → 0.72.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/lib/eac_rails_base0/app_base/application/all.rb +60 -58
- data/lib/eac_rails_base0/app_base/application/development.rb +42 -40
- data/lib/eac_rails_base0/app_base/application/envvars.rb +29 -27
- data/lib/eac_rails_base0/app_base/application/production.rb +40 -38
- data/lib/eac_rails_base0/app_base/application/test.rb +40 -38
- data/lib/eac_rails_base0/app_base/application.rb +14 -12
- data/lib/eac_rails_base0/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f88d2c9313f86297fdcc658ed38515d219e24f0b05a1da78eb0fca51bdaa7a7
|
|
4
|
+
data.tar.gz: 00b13b01d33d1ba13f453b9aa522bac6f4900216f88f1866f0ebb1406c6adc07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0eb8483185b2d0572f7afeaa32401cc66f61927119734a93618d93557eaee8236cde4468c87669e62cdbcab99d4c7b5e57fb6aa168d6e39175154df43da4a4f
|
|
7
|
+
data.tar.gz: b220711a12dd59ced711edb5cd81ae0345de3fa5921efd4c4ef9f6af49b1aba28cef33ca261bcc97cf5442c602a2efc45b99d15d04848f3cf4d958107703f2b5
|
|
@@ -4,79 +4,81 @@ require 'eac_fs/contexts'
|
|
|
4
4
|
require 'eac_fs/storage_tree'
|
|
5
5
|
require 'eac_rails_base0/x_engine'
|
|
6
6
|
|
|
7
|
-
module
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
module ClassMethods
|
|
17
|
-
# @return [String]
|
|
18
|
-
def app_temporary_directory
|
|
19
|
-
::Dir.tmpdir.to_pathname.join(::Rails.root.to_path.parameterize, 'tmp')
|
|
7
|
+
module EacRailsBase0
|
|
8
|
+
module AppBase
|
|
9
|
+
class Application < Rails::Application
|
|
10
|
+
module All
|
|
11
|
+
common_concern do
|
|
12
|
+
setup('app_root', 'engines', 'local_engines', 'assets_cache',
|
|
13
|
+
'dependencies', 'fs_cache_context', 'defaults', 'localization', 'load_paths',
|
|
14
|
+
'loggers', 'unknown_asset_fallback')
|
|
20
15
|
end
|
|
21
16
|
|
|
22
|
-
|
|
23
|
-
return
|
|
17
|
+
module ClassMethods
|
|
18
|
+
# @return [String]
|
|
19
|
+
def app_temporary_directory
|
|
20
|
+
::Dir.tmpdir.to_pathname.join(::Rails.root.to_path.parameterize, 'tmp')
|
|
21
|
+
end
|
|
24
22
|
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
def setup_app_root
|
|
24
|
+
return unless defined?(APP_PATH)
|
|
27
25
|
|
|
28
|
-
|
|
29
|
-
config.assets.configure do |env|
|
|
30
|
-
env.cache = Sprockets::Cache::FileStore.new(
|
|
31
|
-
::File.join(app_temporary_directory, 'cache', 'assets'),
|
|
32
|
-
config.assets.cache_limit,
|
|
33
|
-
env.logger
|
|
34
|
-
)
|
|
26
|
+
config.root = find_root(APP_PATH)
|
|
35
27
|
end
|
|
36
|
-
end
|
|
37
28
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
29
|
+
def setup_assets_cache
|
|
30
|
+
config.assets.configure do |env|
|
|
31
|
+
env.cache = Sprockets::Cache::FileStore.new(
|
|
32
|
+
::File.join(app_temporary_directory, 'cache', 'assets'),
|
|
33
|
+
config.assets.cache_limit,
|
|
34
|
+
env.logger
|
|
35
|
+
)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
43
38
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
39
|
+
def setup_fs_cache_context
|
|
40
|
+
::EacFs::Contexts.cache.push(
|
|
41
|
+
::EacFs::StorageTree.new(::Rails.root.join('tmp/cache/eac_fs'))
|
|
42
|
+
)
|
|
43
|
+
end
|
|
47
44
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
45
|
+
def setup_engines
|
|
46
|
+
require 'eac_rails_base0'
|
|
47
|
+
end
|
|
51
48
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
49
|
+
def setup_local_engines
|
|
50
|
+
::EacRailsBase0::XEngine.require_local
|
|
51
|
+
end
|
|
55
52
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
53
|
+
def setup_unknown_asset_fallback
|
|
54
|
+
config.assets.unknown_asset_fallback = false
|
|
55
|
+
end
|
|
59
56
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
57
|
+
def setup_defaults
|
|
58
|
+
config.load_defaults 6.1
|
|
59
|
+
end
|
|
63
60
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
end
|
|
61
|
+
def setup_dependencies
|
|
62
|
+
require 'carrierwave'
|
|
63
|
+
end
|
|
68
64
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
65
|
+
def setup_deprecated_migrations
|
|
66
|
+
path = ::Rails.root.join('db/migrate_deprecated')
|
|
67
|
+
config.paths['db/migrate'] << path if path.directory?
|
|
68
|
+
end
|
|
72
69
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
70
|
+
def setup_load_paths
|
|
71
|
+
config.autoload_paths << Rails.root.join('lib')
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def setup_localization
|
|
75
|
+
config.i18n.default_locale = :'pt-BR'
|
|
76
|
+
end
|
|
76
77
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
78
|
+
def setup_loggers
|
|
79
|
+
config.after_initialize do
|
|
80
|
+
ActiveRecord::Base.logger = nil
|
|
81
|
+
end
|
|
80
82
|
end
|
|
81
83
|
end
|
|
82
84
|
end
|
|
@@ -1,52 +1,54 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
module
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
module EacRailsBase0
|
|
4
|
+
module AppBase
|
|
5
|
+
class Application < Rails::Application
|
|
6
|
+
module Development
|
|
7
|
+
common_concern do
|
|
8
|
+
next unless ::Rails.env.development?
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
end
|
|
11
|
-
|
|
12
|
-
module ClassMethods
|
|
13
|
-
def setup_assets
|
|
14
|
-
config.assets.debug = true
|
|
15
|
-
config.assets.quiet = true
|
|
10
|
+
setup('assets', 'cache', 'general', 'letter_opener', 'log')
|
|
16
11
|
end
|
|
17
12
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
config.
|
|
21
|
-
config.
|
|
22
|
-
config.public_file_server.headers = {
|
|
23
|
-
'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}"
|
|
24
|
-
}
|
|
25
|
-
else
|
|
26
|
-
config.action_controller.perform_caching = false
|
|
27
|
-
config.cache_store = :null_store
|
|
13
|
+
module ClassMethods
|
|
14
|
+
def setup_assets
|
|
15
|
+
config.assets.debug = true
|
|
16
|
+
config.assets.quiet = true
|
|
28
17
|
end
|
|
29
|
-
end
|
|
30
18
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
19
|
+
def setup_cache # rubocop:disable Metrics/AbcSize
|
|
20
|
+
if Rails.root.join('tmp/caching-dev.txt').exist?
|
|
21
|
+
config.action_controller.perform_caching = true
|
|
22
|
+
config.cache_store = :memory_store
|
|
23
|
+
config.public_file_server.headers = {
|
|
24
|
+
'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}"
|
|
25
|
+
}
|
|
26
|
+
else
|
|
27
|
+
config.action_controller.perform_caching = false
|
|
28
|
+
config.cache_store = :null_store
|
|
29
|
+
end
|
|
30
|
+
end
|
|
40
31
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
32
|
+
def setup_general # rubocop:disable Metrics/AbcSize
|
|
33
|
+
config.cache_classes = false
|
|
34
|
+
config.eager_load = false
|
|
35
|
+
config.consider_all_requests_local = true
|
|
36
|
+
config.action_mailer.raise_delivery_errors = false
|
|
37
|
+
config.action_mailer.perform_caching = false
|
|
38
|
+
config.active_record.migration_error = :page_load
|
|
39
|
+
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
|
40
|
+
end
|
|
46
41
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
42
|
+
def setup_letter_opener
|
|
43
|
+
require 'letter_opener'
|
|
44
|
+
config.action_mailer.delivery_method = :letter_opener
|
|
45
|
+
config.action_mailer.perform_deliveries = true
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def setup_log
|
|
49
|
+
config.active_support.deprecation = :log
|
|
50
|
+
config.logger = new_stdout_logger
|
|
51
|
+
end
|
|
50
52
|
end
|
|
51
53
|
end
|
|
52
54
|
end
|
|
@@ -1,39 +1,41 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
module
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
module ClassMethods
|
|
15
|
-
def config_root
|
|
16
|
-
::Rails.root.join('config')
|
|
3
|
+
module EacRailsBase0
|
|
4
|
+
module AppBase
|
|
5
|
+
class Application < Rails::Application
|
|
6
|
+
module Envvars
|
|
7
|
+
ENVVARS_FILE_BASENAME = 'envvars'
|
|
8
|
+
ENVVARS_DIRECTORY_NAME = "#{ENVVARS_FILE_BASENAME}.d"
|
|
9
|
+
ENVVARS_FILE_EXTENSIONS = %w[.yml .yaml].freeze
|
|
10
|
+
|
|
11
|
+
common_concern do
|
|
12
|
+
setup('envvars')
|
|
17
13
|
end
|
|
18
14
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
15
|
+
module ClassMethods
|
|
16
|
+
def config_root
|
|
17
|
+
::Rails.root.join('config')
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def envvars_files
|
|
21
|
+
ENVVARS_FILE_EXTENSIONS.flat_map do |extension|
|
|
22
|
+
[config_root.join("#{ENVVARS_FILE_BASENAME}#{extension}")] +
|
|
23
|
+
config_root.join(ENVVARS_DIRECTORY_NAME).glob("*#{extension}")
|
|
24
|
+
end
|
|
23
25
|
end
|
|
24
|
-
end
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
def load_envvars_file(path)
|
|
28
|
+
return unless path.exist?
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
vars = ::EacRubyUtils::Yaml.load(path.read)
|
|
31
|
+
raise "\"#{path}\" does not contain a Hash" unless vars.is_a?(::Hash)
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
vars.each { |name, value| ENV[name.to_s] = value.to_s }
|
|
34
|
+
end
|
|
34
35
|
|
|
35
|
-
|
|
36
|
-
|
|
36
|
+
def setup_envvars
|
|
37
|
+
envvars_files.each { |path| load_envvars_file(path) }
|
|
38
|
+
end
|
|
37
39
|
end
|
|
38
40
|
end
|
|
39
41
|
end
|
|
@@ -2,46 +2,48 @@
|
|
|
2
2
|
|
|
3
3
|
require 'aranha/selenium/driver_options'
|
|
4
4
|
|
|
5
|
-
module
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
module ClassMethods
|
|
15
|
-
def setup_aranha
|
|
16
|
-
::Aranha::Selenium::DriverOptions.default.headless = true
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def setup_assets
|
|
20
|
-
config.assets.js_compressor = :uglifier
|
|
21
|
-
config.assets.compile = false
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
def setup_general # rubocop:disable Metrics/AbcSize
|
|
25
|
-
config.active_record.dump_schema_after_migration = false
|
|
26
|
-
config.cache_classes = true
|
|
27
|
-
config.eager_load = false
|
|
28
|
-
config.consider_all_requests_local = false
|
|
29
|
-
config.action_controller.perform_caching = true
|
|
30
|
-
config.read_encrypted_secrets = true
|
|
31
|
-
config.action_mailer.perform_caching = false
|
|
32
|
-
config.i18n.fallbacks = true
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
def setup_log
|
|
36
|
-
config.log_level = :debug
|
|
37
|
-
config.log_tags = [:request_id]
|
|
38
|
-
config.active_support.deprecation = :notify
|
|
39
|
-
config.log_formatter = ::Logger::Formatter.new
|
|
40
|
-
config.logger = new_stdout_logger if ENV['RAILS_LOG_TO_STDOUT'].blank?
|
|
5
|
+
module EacRailsBase0
|
|
6
|
+
module AppBase
|
|
7
|
+
class Application < Rails::Application
|
|
8
|
+
module Production
|
|
9
|
+
common_concern do
|
|
10
|
+
next unless ::Rails.env.production?
|
|
11
|
+
|
|
12
|
+
setup('aranha', 'assets', 'general', 'log', 'public_file_server')
|
|
41
13
|
end
|
|
42
14
|
|
|
43
|
-
|
|
44
|
-
|
|
15
|
+
module ClassMethods
|
|
16
|
+
def setup_aranha
|
|
17
|
+
::Aranha::Selenium::DriverOptions.default.headless = true
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def setup_assets
|
|
21
|
+
config.assets.js_compressor = :uglifier
|
|
22
|
+
config.assets.compile = false
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def setup_general # rubocop:disable Metrics/AbcSize
|
|
26
|
+
config.active_record.dump_schema_after_migration = false
|
|
27
|
+
config.cache_classes = true
|
|
28
|
+
config.eager_load = false
|
|
29
|
+
config.consider_all_requests_local = false
|
|
30
|
+
config.action_controller.perform_caching = true
|
|
31
|
+
config.read_encrypted_secrets = true
|
|
32
|
+
config.action_mailer.perform_caching = false
|
|
33
|
+
config.i18n.fallbacks = true
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def setup_log
|
|
37
|
+
config.log_level = :debug
|
|
38
|
+
config.log_tags = [:request_id]
|
|
39
|
+
config.active_support.deprecation = :notify
|
|
40
|
+
config.log_formatter = ::Logger::Formatter.new
|
|
41
|
+
config.logger = new_stdout_logger if ENV['RAILS_LOG_TO_STDOUT'].blank?
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def setup_public_file_server
|
|
45
|
+
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
|
46
|
+
end
|
|
45
47
|
end
|
|
46
48
|
end
|
|
47
49
|
end
|
|
@@ -1,50 +1,52 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
module
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
module ClassMethods
|
|
19
|
-
def setup_action_controller
|
|
20
|
-
config.action_controller.perform_caching = false
|
|
21
|
-
config.action_controller.allow_forgery_protection = false
|
|
3
|
+
module EacRailsBase0
|
|
4
|
+
module AppBase
|
|
5
|
+
class Application < Rails::Application
|
|
6
|
+
module Test
|
|
7
|
+
ACTION_MAILER_CONFIGS = {
|
|
8
|
+
delivery_method: :test,
|
|
9
|
+
default_url_options: { host: 'localhost', port: 3000 },
|
|
10
|
+
default_options: { from: 'myadddress@example.net', reply_to: '' }
|
|
11
|
+
}.freeze
|
|
12
|
+
|
|
13
|
+
common_concern do
|
|
14
|
+
next unless ::Rails.env.test?
|
|
15
|
+
|
|
16
|
+
setup('action_controller', 'action_mailer', 'general', 'log', 'public_file_server')
|
|
22
17
|
end
|
|
23
18
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
config.
|
|
19
|
+
module ClassMethods
|
|
20
|
+
def setup_action_controller
|
|
21
|
+
config.action_controller.perform_caching = false
|
|
22
|
+
config.action_controller.allow_forgery_protection = false
|
|
27
23
|
end
|
|
28
|
-
end
|
|
29
24
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
def setup_action_mailer
|
|
26
|
+
ACTION_MAILER_CONFIGS.each do |key, value|
|
|
27
|
+
config.action_mailer.send("#{key}=", value)
|
|
28
|
+
end
|
|
29
|
+
end
|
|
33
30
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
end
|
|
31
|
+
def setup_general
|
|
32
|
+
config.cache_classes = true
|
|
33
|
+
config.eager_load = false
|
|
38
34
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
config.consider_all_requests_local = true
|
|
36
|
+
config.action_controller.perform_caching = false
|
|
37
|
+
config.action_dispatch.show_exceptions = false
|
|
38
|
+
end
|
|
42
39
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
40
|
+
def setup_log
|
|
41
|
+
config.active_support.deprecation = :stderr
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def setup_public_file_server
|
|
45
|
+
config.public_file_server.enabled = true
|
|
46
|
+
config.public_file_server.headers = {
|
|
47
|
+
'Cache-Control' => "public, max-age=#{1.hour.seconds.to_i}"
|
|
48
|
+
}
|
|
49
|
+
end
|
|
48
50
|
end
|
|
49
51
|
end
|
|
50
52
|
end
|
|
@@ -7,20 +7,22 @@ require 'rails/all'
|
|
|
7
7
|
# you've limited to :test, :development, or :production.
|
|
8
8
|
Bundler.require(*Rails.groups)
|
|
9
9
|
|
|
10
|
-
module
|
|
11
|
-
|
|
12
|
-
class
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
10
|
+
module EacRailsBase0
|
|
11
|
+
module AppBase
|
|
12
|
+
class Application < Rails::Application
|
|
13
|
+
class << self
|
|
14
|
+
def new_stdout_logger
|
|
15
|
+
logger = ActiveSupport::Logger.new($stdout)
|
|
16
|
+
logger.formatter = config.log_formatter
|
|
17
|
+
::ActiveSupport::TaggedLogging.new(logger)
|
|
18
|
+
end
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
def setup(*args)
|
|
21
|
+
args.each { |a| send("setup_#{a}") }
|
|
22
|
+
end
|
|
21
23
|
end
|
|
22
|
-
end
|
|
23
24
|
|
|
24
|
-
|
|
25
|
+
require_sub __FILE__, include_modules: true, require_mode: :kernel
|
|
26
|
+
end
|
|
25
27
|
end
|
|
26
28
|
end
|
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.72.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: 2026-03-
|
|
11
|
+
date: 2026-03-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aranha-parsers
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '0.26'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 0.26.
|
|
22
|
+
version: 0.26.3
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '0.26'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.26.
|
|
32
|
+
version: 0.26.3
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aranha-rails
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -221,6 +221,9 @@ dependencies:
|
|
|
221
221
|
- - "~>"
|
|
222
222
|
- !ruby/object:Gem::Version
|
|
223
223
|
version: '0.12'
|
|
224
|
+
- - ">="
|
|
225
|
+
- !ruby/object:Gem::Version
|
|
226
|
+
version: 0.12.1
|
|
224
227
|
type: :runtime
|
|
225
228
|
prerelease: false
|
|
226
229
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -228,6 +231,9 @@ dependencies:
|
|
|
228
231
|
- - "~>"
|
|
229
232
|
- !ruby/object:Gem::Version
|
|
230
233
|
version: '0.12'
|
|
234
|
+
- - ">="
|
|
235
|
+
- !ruby/object:Gem::Version
|
|
236
|
+
version: 0.12.1
|
|
231
237
|
- !ruby/object:Gem::Dependency
|
|
232
238
|
name: eac_rails_remotes
|
|
233
239
|
requirement: !ruby/object:Gem::Requirement
|