bscf-core 0.1.0 → 0.2.1
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/Rakefile +1 -1
- data/app/models/bscf/core/address.rb +7 -0
- data/app/models/bscf/core/business.rb +15 -0
- data/app/models/bscf/core/category.rb +11 -0
- data/app/models/bscf/core/order.rb +24 -0
- data/app/models/bscf/core/order_item.rb +15 -0
- data/app/models/bscf/core/product.rb +29 -0
- data/app/models/bscf/core/quotation.rb +29 -0
- data/app/models/bscf/core/quotation_item.rb +23 -0
- data/app/models/bscf/core/request_for_quotation.rb +13 -0
- data/app/models/bscf/core/rfq_item.rb +9 -0
- data/app/models/bscf/core/role.rb +10 -0
- data/app/models/bscf/core/user.rb +21 -0
- data/app/models/bscf/core/user_profile.rb +26 -0
- data/app/models/bscf/core/user_role.rb +8 -0
- data/app/models/bscf/core/virtual_account.rb +53 -0
- data/app/models/bscf/core/virtual_account_transaction.rb +158 -0
- data/db/migrate/20250326065606_create_bscf_core_users.rb +18 -0
- data/db/migrate/20250326075111_create_bscf_core_roles.rb +9 -0
- data/db/migrate/20250326080646_create_bscf_core_user_profiles.rb +19 -0
- data/db/migrate/20250326081052_create_bscf_core_addresses.rb +14 -0
- data/db/migrate/20250326084233_create_bscf_core_user_roles.rb +10 -0
- data/db/migrate/20250326085741_create_bscf_core_virtual_accounts.rb +24 -0
- data/db/migrate/20250326103305_create_bscf_core_categories.rb +11 -0
- data/db/migrate/20250326105652_create_bscf_core_products.rb +14 -0
- data/db/migrate/20250326112449_create_bscf_core_businesses.rb +14 -0
- data/db/migrate/20250326115203_create_bscf_core_request_for_quotations.rb +11 -0
- data/db/migrate/20250326120613_create_bscf_core_rfq_items.rb +12 -0
- data/db/migrate/20250326121246_create_bscf_core_bscf_core_virtual_account_transactions.rb +19 -0
- data/db/migrate/20250327041651_create_bscf_core_quotations.rb +15 -0
- data/db/migrate/20250327044020_create_bscf_core_quotation_items.rb +15 -0
- data/db/migrate/20250327102217_create_bscf_core_orders.rb +14 -0
- data/db/migrate/20250327112412_create_bscf_core_order_items.rb +14 -0
- data/lib/bscf/core/engine.rb +18 -0
- data/lib/bscf/core/version.rb +1 -1
- data/lib/tasks/release.rake +42 -0
- data/spec/factories/bscf/core/addresses.rb +10 -0
- data/spec/factories/bscf/core/businesses.rb +24 -0
- data/spec/factories/bscf/core/categories.rb +16 -0
- data/spec/factories/bscf/core/order_items.rb +10 -0
- data/spec/factories/bscf/core/orders.rb +10 -0
- data/spec/factories/bscf/core/products.rb +8 -0
- data/spec/factories/bscf/core/quotation_items.rb +11 -0
- data/spec/factories/bscf/core/quotations.rb +28 -0
- data/spec/factories/bscf/core/request_for_quotations.rb +7 -0
- data/spec/factories/bscf/core/rfq_items.rb +8 -0
- data/spec/factories/bscf/core/roles.rb +5 -0
- data/spec/factories/bscf/core/user_profiles.rb +15 -0
- data/spec/factories/bscf/core/user_roles.rb +6 -0
- data/spec/factories/bscf/core/users.rb +10 -0
- data/spec/factories/bscf/core/virtual_account_transactions.rb +34 -0
- data/spec/factories/bscf/core/virtual_accounts.rb +38 -0
- metadata +51 -37
- data/spec/dummy/Rakefile +0 -6
- data/spec/dummy/app/assets/stylesheets/application.css +0 -15
- data/spec/dummy/app/controllers/application_controller.rb +0 -2
- data/spec/dummy/app/jobs/application_job.rb +0 -7
- data/spec/dummy/app/mailers/application_mailer.rb +0 -4
- data/spec/dummy/app/models/application_record.rb +0 -3
- data/spec/dummy/app/views/layouts/mailer.html.erb +0 -13
- data/spec/dummy/app/views/layouts/mailer.text.erb +0 -1
- data/spec/dummy/bin/dev +0 -2
- data/spec/dummy/bin/rails +0 -4
- data/spec/dummy/bin/rake +0 -4
- data/spec/dummy/bin/setup +0 -34
- data/spec/dummy/config/application.rb +0 -43
- data/spec/dummy/config/boot.rb +0 -5
- data/spec/dummy/config/cable.yml +0 -10
- data/spec/dummy/config/database.yml +0 -17
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -67
- data/spec/dummy/config/environments/production.rb +0 -86
- data/spec/dummy/config/environments/test.rb +0 -53
- data/spec/dummy/config/initializers/cors.rb +0 -16
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -8
- data/spec/dummy/config/initializers/inflections.rb +0 -16
- data/spec/dummy/config/locales/en.yml +0 -31
- data/spec/dummy/config/puma.rb +0 -38
- data/spec/dummy/config/routes.rb +0 -3
- data/spec/dummy/config/storage.yml +0 -34
- data/spec/dummy/config.ru +0 -6
- data/spec/dummy/log/development.log +0 -17
- data/spec/dummy/tmp/local_secret.txt +0 -1
- data/spec/examples.txt +0 -3
- data/spec/rails_helper.rb +0 -46
- data/spec/spec_helper.rb +0 -34
- data/spec/support/models/shared_examples.rb +0 -49
- data/spec/support/requests/shared_requests.rb +0 -126
@@ -1,43 +0,0 @@
|
|
1
|
-
require_relative "boot"
|
2
|
-
|
3
|
-
require "rails"
|
4
|
-
# Pick the frameworks you want:
|
5
|
-
require "active_model/railtie"
|
6
|
-
require "active_job/railtie"
|
7
|
-
require "active_record/railtie"
|
8
|
-
require "active_storage/engine"
|
9
|
-
require "action_controller/railtie"
|
10
|
-
require "action_mailer/railtie"
|
11
|
-
require "action_mailbox/engine"
|
12
|
-
require "action_text/engine"
|
13
|
-
require "action_view/railtie"
|
14
|
-
require "action_cable/engine"
|
15
|
-
# require "rails/test_unit/railtie"
|
16
|
-
|
17
|
-
# Require the gems listed in Gemfile, including any gems
|
18
|
-
# you've limited to :test, :development, or :production.
|
19
|
-
Bundler.require(*Rails.groups)
|
20
|
-
|
21
|
-
module Dummy
|
22
|
-
class Application < Rails::Application
|
23
|
-
config.load_defaults Rails::VERSION::STRING.to_f
|
24
|
-
|
25
|
-
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
26
|
-
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
27
|
-
# Common ones are `templates`, `generators`, or `middleware`, for example.
|
28
|
-
config.autoload_lib(ignore: %w[assets tasks])
|
29
|
-
|
30
|
-
# Configuration for the application, engines, and railties goes here.
|
31
|
-
#
|
32
|
-
# These settings can be overridden in specific environments using the files
|
33
|
-
# in config/environments, which are processed later.
|
34
|
-
#
|
35
|
-
# config.time_zone = "Central Time (US & Canada)"
|
36
|
-
# config.eager_load_paths << Rails.root.join("extras")
|
37
|
-
|
38
|
-
# Only loads a smaller set of middleware suitable for API only apps.
|
39
|
-
# Middleware like session, flash, cookies can be added back manually.
|
40
|
-
# Skip views, helpers and assets when generating a new resource.
|
41
|
-
config.api_only = true
|
42
|
-
end
|
43
|
-
end
|
data/spec/dummy/config/boot.rb
DELETED
data/spec/dummy/config/cable.yml
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
default: &default
|
2
|
-
adapter: postgresql
|
3
|
-
encoding: unicode
|
4
|
-
host: localhost
|
5
|
-
port: 5432
|
6
|
-
username: postgres
|
7
|
-
password: password
|
8
|
-
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
9
|
-
timeout: 5000
|
10
|
-
|
11
|
-
development:
|
12
|
-
<<: *default
|
13
|
-
database: bscf_dev
|
14
|
-
|
15
|
-
test:
|
16
|
-
<<: *default
|
17
|
-
database: bscf_test
|
@@ -1,67 +0,0 @@
|
|
1
|
-
require "active_support/core_ext/integer/time"
|
2
|
-
|
3
|
-
Rails.application.configure do
|
4
|
-
# Settings specified here will take precedence over those in config/application.rb.
|
5
|
-
|
6
|
-
# Make code changes take effect immediately without server restart.
|
7
|
-
config.enable_reloading = true
|
8
|
-
|
9
|
-
# Do not eager load code on boot.
|
10
|
-
config.eager_load = false
|
11
|
-
|
12
|
-
# Show full error reports.
|
13
|
-
config.consider_all_requests_local = true
|
14
|
-
|
15
|
-
# Enable server timing.
|
16
|
-
config.server_timing = true
|
17
|
-
|
18
|
-
# Enable/disable Action Controller caching. By default Action Controller caching is disabled.
|
19
|
-
# Run rails dev:cache to toggle Action Controller caching.
|
20
|
-
if Rails.root.join("tmp/caching-dev.txt").exist?
|
21
|
-
config.public_file_server.headers = { "cache-control" => "public, max-age=#{2.days.to_i}" }
|
22
|
-
else
|
23
|
-
config.action_controller.perform_caching = false
|
24
|
-
end
|
25
|
-
|
26
|
-
# Change to :null_store to avoid any caching.
|
27
|
-
config.cache_store = :memory_store
|
28
|
-
|
29
|
-
# Store uploaded files on the local file system (see config/storage.yml for options).
|
30
|
-
config.active_storage.service = :local
|
31
|
-
|
32
|
-
# Don't care if the mailer can't send.
|
33
|
-
config.action_mailer.raise_delivery_errors = false
|
34
|
-
|
35
|
-
# Make template changes take effect immediately.
|
36
|
-
config.action_mailer.perform_caching = false
|
37
|
-
|
38
|
-
# Set localhost to be used by links generated in mailer templates.
|
39
|
-
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
|
40
|
-
|
41
|
-
# Print deprecation notices to the Rails logger.
|
42
|
-
config.active_support.deprecation = :log
|
43
|
-
|
44
|
-
# Raise an error on page load if there are pending migrations.
|
45
|
-
config.active_record.migration_error = :page_load
|
46
|
-
|
47
|
-
# Highlight code that triggered database queries in logs.
|
48
|
-
config.active_record.verbose_query_logs = true
|
49
|
-
|
50
|
-
# Append comments with runtime information tags to SQL queries in logs.
|
51
|
-
config.active_record.query_log_tags_enabled = true
|
52
|
-
|
53
|
-
# Highlight code that enqueued background job in logs.
|
54
|
-
config.active_job.verbose_enqueue_logs = true
|
55
|
-
|
56
|
-
# Raises error for missing translations.
|
57
|
-
# config.i18n.raise_on_missing_translations = true
|
58
|
-
|
59
|
-
# Annotate rendered view with file names.
|
60
|
-
config.action_view.annotate_rendered_view_with_filenames = true
|
61
|
-
|
62
|
-
# Uncomment if you wish to allow Action Cable access from any origin.
|
63
|
-
# config.action_cable.disable_request_forgery_protection = true
|
64
|
-
|
65
|
-
# Raise error when a before_action's only/except options reference missing actions.
|
66
|
-
config.action_controller.raise_on_missing_callback_actions = true
|
67
|
-
end
|
@@ -1,86 +0,0 @@
|
|
1
|
-
require "active_support/core_ext/integer/time"
|
2
|
-
|
3
|
-
Rails.application.configure do
|
4
|
-
# Settings specified here will take precedence over those in config/application.rb.
|
5
|
-
|
6
|
-
# Code is not reloaded between requests.
|
7
|
-
config.enable_reloading = false
|
8
|
-
|
9
|
-
# Eager load code on boot for better performance and memory savings (ignored by Rake tasks).
|
10
|
-
config.eager_load = true
|
11
|
-
|
12
|
-
# Full error reports are disabled.
|
13
|
-
config.consider_all_requests_local = false
|
14
|
-
|
15
|
-
# Cache assets for far-future expiry since they are all digest stamped.
|
16
|
-
config.public_file_server.headers = { "cache-control" => "public, max-age=#{1.year.to_i}" }
|
17
|
-
|
18
|
-
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
19
|
-
# config.asset_host = "http://assets.example.com"
|
20
|
-
|
21
|
-
# Store uploaded files on the local file system (see config/storage.yml for options).
|
22
|
-
config.active_storage.service = :local
|
23
|
-
|
24
|
-
# Assume all access to the app is happening through a SSL-terminating reverse proxy.
|
25
|
-
config.assume_ssl = true
|
26
|
-
|
27
|
-
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
28
|
-
config.force_ssl = true
|
29
|
-
|
30
|
-
# Skip http-to-https redirect for the default health check endpoint.
|
31
|
-
# config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
|
32
|
-
|
33
|
-
# Log to STDOUT with the current request id as a default log tag.
|
34
|
-
config.log_tags = [ :request_id ]
|
35
|
-
config.logger = ActiveSupport::TaggedLogging.logger(STDOUT)
|
36
|
-
|
37
|
-
# Change to "debug" to log everything (including potentially personally-identifiable information!)
|
38
|
-
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
|
39
|
-
|
40
|
-
# Prevent health checks from clogging up the logs.
|
41
|
-
config.silence_healthcheck_path = "/up"
|
42
|
-
|
43
|
-
# Don't log any deprecations.
|
44
|
-
config.active_support.report_deprecations = false
|
45
|
-
|
46
|
-
# Replace the default in-process memory cache store with a durable alternative.
|
47
|
-
# config.cache_store = :mem_cache_store
|
48
|
-
|
49
|
-
# Replace the default in-process and non-durable queuing backend for Active Job.
|
50
|
-
# config.active_job.queue_adapter = :resque
|
51
|
-
|
52
|
-
# Ignore bad email addresses and do not raise email delivery errors.
|
53
|
-
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
54
|
-
# config.action_mailer.raise_delivery_errors = false
|
55
|
-
|
56
|
-
# Set host to be used by links generated in mailer templates.
|
57
|
-
config.action_mailer.default_url_options = { host: "example.com" }
|
58
|
-
|
59
|
-
# Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit.
|
60
|
-
# config.action_mailer.smtp_settings = {
|
61
|
-
# user_name: Rails.application.credentials.dig(:smtp, :user_name),
|
62
|
-
# password: Rails.application.credentials.dig(:smtp, :password),
|
63
|
-
# address: "smtp.example.com",
|
64
|
-
# port: 587,
|
65
|
-
# authentication: :plain
|
66
|
-
# }
|
67
|
-
|
68
|
-
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
-
# the I18n.default_locale when a translation cannot be found).
|
70
|
-
config.i18n.fallbacks = true
|
71
|
-
|
72
|
-
# Do not dump schema after migrations.
|
73
|
-
config.active_record.dump_schema_after_migration = false
|
74
|
-
|
75
|
-
# Only use :id for inspections in production.
|
76
|
-
config.active_record.attributes_for_inspect = [ :id ]
|
77
|
-
|
78
|
-
# Enable DNS rebinding protection and other `Host` header attacks.
|
79
|
-
# config.hosts = [
|
80
|
-
# "example.com", # Allow requests from example.com
|
81
|
-
# /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
|
82
|
-
# ]
|
83
|
-
#
|
84
|
-
# Skip DNS rebinding protection for the default health check endpoint.
|
85
|
-
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
|
86
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
# The test environment is used exclusively to run your application's
|
2
|
-
# test suite. You never need to work with it otherwise. Remember that
|
3
|
-
# your test database is "scratch space" for the test suite and is wiped
|
4
|
-
# and recreated between test runs. Don't rely on the data there!
|
5
|
-
|
6
|
-
Rails.application.configure do
|
7
|
-
# Settings specified here will take precedence over those in config/application.rb.
|
8
|
-
|
9
|
-
# While tests run files are not watched, reloading is not necessary.
|
10
|
-
config.enable_reloading = false
|
11
|
-
|
12
|
-
# Eager loading loads your entire application. When running a single test locally,
|
13
|
-
# this is usually not necessary, and can slow down your test suite. However, it's
|
14
|
-
# recommended that you enable it in continuous integration systems to ensure eager
|
15
|
-
# loading is working properly before deploying your code.
|
16
|
-
config.eager_load = ENV["CI"].present?
|
17
|
-
|
18
|
-
# Configure public file server for tests with cache-control for performance.
|
19
|
-
config.public_file_server.headers = { "cache-control" => "public, max-age=3600" }
|
20
|
-
|
21
|
-
# Show full error reports.
|
22
|
-
config.consider_all_requests_local = true
|
23
|
-
config.cache_store = :null_store
|
24
|
-
|
25
|
-
# Render exception templates for rescuable exceptions and raise for other exceptions.
|
26
|
-
config.action_dispatch.show_exceptions = :rescuable
|
27
|
-
|
28
|
-
# Disable request forgery protection in test environment.
|
29
|
-
config.action_controller.allow_forgery_protection = false
|
30
|
-
|
31
|
-
# Store uploaded files on the local file system in a temporary directory.
|
32
|
-
config.active_storage.service = :test
|
33
|
-
|
34
|
-
# Tell Action Mailer not to deliver emails to the real world.
|
35
|
-
# The :test delivery method accumulates sent emails in the
|
36
|
-
# ActionMailer::Base.deliveries array.
|
37
|
-
config.action_mailer.delivery_method = :test
|
38
|
-
|
39
|
-
# Set host to be used by links generated in mailer templates.
|
40
|
-
config.action_mailer.default_url_options = { host: "example.com" }
|
41
|
-
|
42
|
-
# Print deprecation notices to the stderr.
|
43
|
-
config.active_support.deprecation = :stderr
|
44
|
-
|
45
|
-
# Raises error for missing translations.
|
46
|
-
# config.i18n.raise_on_missing_translations = true
|
47
|
-
|
48
|
-
# Annotate rendered view with file names.
|
49
|
-
# config.action_view.annotate_rendered_view_with_filenames = true
|
50
|
-
|
51
|
-
# Raise error when a before_action's only/except options reference missing actions.
|
52
|
-
config.action_controller.raise_on_missing_callback_actions = true
|
53
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# Be sure to restart your server when you modify this file.
|
2
|
-
|
3
|
-
# Avoid CORS issues when API is called from the frontend app.
|
4
|
-
# Handle Cross-Origin Resource Sharing (CORS) in order to accept cross-origin Ajax requests.
|
5
|
-
|
6
|
-
# Read more: https://github.com/cyu/rack-cors
|
7
|
-
|
8
|
-
# Rails.application.config.middleware.insert_before 0, Rack::Cors do
|
9
|
-
# allow do
|
10
|
-
# origins "example.com"
|
11
|
-
#
|
12
|
-
# resource "*",
|
13
|
-
# headers: :any,
|
14
|
-
# methods: [:get, :post, :put, :patch, :delete, :options, :head]
|
15
|
-
# end
|
16
|
-
# end
|
@@ -1,8 +0,0 @@
|
|
1
|
-
# Be sure to restart your server when you modify this file.
|
2
|
-
|
3
|
-
# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file.
|
4
|
-
# Use this to limit dissemination of sensitive information.
|
5
|
-
# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
|
6
|
-
Rails.application.config.filter_parameters += [
|
7
|
-
:passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn, :cvv, :cvc
|
8
|
-
]
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# Be sure to restart your server when you modify this file.
|
2
|
-
|
3
|
-
# Add new inflection rules using the following format. Inflections
|
4
|
-
# are locale specific, and you may define rules for as many different
|
5
|
-
# locales as you wish. All of these examples are active by default:
|
6
|
-
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
-
# inflect.plural /^(ox)$/i, "\\1en"
|
8
|
-
# inflect.singular /^(ox)en/i, "\\1"
|
9
|
-
# inflect.irregular "person", "people"
|
10
|
-
# inflect.uncountable %w( fish sheep )
|
11
|
-
# end
|
12
|
-
|
13
|
-
# These inflection rules are supported but not enabled by default:
|
14
|
-
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
-
# inflect.acronym "RESTful"
|
16
|
-
# end
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# Files in the config/locales directory are used for internationalization and
|
2
|
-
# are automatically loaded by Rails. If you want to use locales other than
|
3
|
-
# 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 about the API, please read the Rails Internationalization guide
|
20
|
-
# at https://guides.rubyonrails.org/i18n.html.
|
21
|
-
#
|
22
|
-
# Be aware that YAML interprets the following case-insensitive strings as
|
23
|
-
# booleans: `true`, `false`, `on`, `off`, `yes`, `no`. Therefore, these strings
|
24
|
-
# must be quoted to be interpreted as strings. For example:
|
25
|
-
#
|
26
|
-
# en:
|
27
|
-
# "yes": yup
|
28
|
-
# enabled: "ON"
|
29
|
-
|
30
|
-
en:
|
31
|
-
hello: "Hello world"
|
data/spec/dummy/config/puma.rb
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
# This configuration file will be evaluated by Puma. The top-level methods that
|
2
|
-
# are invoked here are part of Puma's configuration DSL. For more information
|
3
|
-
# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
|
4
|
-
#
|
5
|
-
# Puma starts a configurable number of processes (workers) and each process
|
6
|
-
# serves each request in a thread from an internal thread pool.
|
7
|
-
#
|
8
|
-
# You can control the number of workers using ENV["WEB_CONCURRENCY"]. You
|
9
|
-
# should only set this value when you want to run 2 or more workers. The
|
10
|
-
# default is already 1.
|
11
|
-
#
|
12
|
-
# The ideal number of threads per worker depends both on how much time the
|
13
|
-
# application spends waiting for IO operations and on how much you wish to
|
14
|
-
# prioritize throughput over latency.
|
15
|
-
#
|
16
|
-
# As a rule of thumb, increasing the number of threads will increase how much
|
17
|
-
# traffic a given process can handle (throughput), but due to CRuby's
|
18
|
-
# Global VM Lock (GVL) it has diminishing returns and will degrade the
|
19
|
-
# response time (latency) of the application.
|
20
|
-
#
|
21
|
-
# The default is set to 3 threads as it's deemed a decent compromise between
|
22
|
-
# throughput and latency for the average Rails application.
|
23
|
-
#
|
24
|
-
# Any libraries that use a connection pool or another resource pool should
|
25
|
-
# be configured to provide at least as many connections as the number of
|
26
|
-
# threads. This includes Active Record's `pool` parameter in `database.yml`.
|
27
|
-
threads_count = ENV.fetch("RAILS_MAX_THREADS", 3)
|
28
|
-
threads threads_count, threads_count
|
29
|
-
|
30
|
-
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
31
|
-
port ENV.fetch("PORT", 3000)
|
32
|
-
|
33
|
-
# Allow puma to be restarted by `bin/rails restart` command.
|
34
|
-
plugin :tmp_restart
|
35
|
-
|
36
|
-
# Specify the PID file. Defaults to tmp/pids/server.pid in development.
|
37
|
-
# In other environments, only set the PID file if requested.
|
38
|
-
pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
|
data/spec/dummy/config/routes.rb
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
test:
|
2
|
-
service: Disk
|
3
|
-
root: <%= Rails.root.join("tmp/storage") %>
|
4
|
-
|
5
|
-
local:
|
6
|
-
service: Disk
|
7
|
-
root: <%= Rails.root.join("storage") %>
|
8
|
-
|
9
|
-
# Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
|
10
|
-
# amazon:
|
11
|
-
# service: S3
|
12
|
-
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
13
|
-
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
14
|
-
# region: us-east-1
|
15
|
-
# bucket: your_own_bucket-<%= Rails.env %>
|
16
|
-
|
17
|
-
# Remember not to checkin your GCS keyfile to a repository
|
18
|
-
# google:
|
19
|
-
# service: GCS
|
20
|
-
# project: your_project
|
21
|
-
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
|
22
|
-
# bucket: your_own_bucket-<%= Rails.env %>
|
23
|
-
|
24
|
-
# Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
25
|
-
# microsoft:
|
26
|
-
# service: AzureStorage
|
27
|
-
# storage_account_name: your_account_name
|
28
|
-
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
|
29
|
-
# container: your_container_name-<%= Rails.env %>
|
30
|
-
|
31
|
-
# mirror:
|
32
|
-
# service: Mirror
|
33
|
-
# primary: local
|
34
|
-
# mirrors: [ amazon, google, microsoft ]
|
data/spec/dummy/config.ru
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
[1m[35mSQL (10.8ms)[0m [1m[35mSET search_path TO public /*application='Dummy'*/[0m
|
2
|
-
[1m[35m (722.5ms)[0m [1m[35mCREATE DATABASE "bscf_dev" ENCODING = 'unicode' /*application='Dummy'*/[0m
|
3
|
-
[1m[35mSQL (0.1ms)[0m [1m[35mSET search_path TO public /*application='Dummy'*/[0m
|
4
|
-
[1m[35m (105.0ms)[0m [1m[35mCREATE DATABASE "bscf_test" ENCODING = 'unicode' /*application='Dummy'*/[0m
|
5
|
-
[1m[35m (26.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) /*application='Dummy'*/[0m
|
6
|
-
[1m[35m (4.5ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) /*application='Dummy'*/[0m
|
7
|
-
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_try_advisory_lock(7136077842679658775) /*application='Dummy'*/[0m
|
8
|
-
[1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC /*application='Dummy'*/[0m
|
9
|
-
[1m[36mActiveRecord::InternalMetadata Load (3.4ms)[0m [1m[34mSELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = 'environment' ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 /*application='Dummy'*/[0m
|
10
|
-
[1m[36mActiveRecord::InternalMetadata Create (1.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('environment', 'development', '2025-03-24 13:19:53.793527', '2025-03-24 13:19:53.793529') RETURNING "key" /*application='Dummy'*/[0m
|
11
|
-
Migrating to CreateBscfCorePeople (20250324131935)
|
12
|
-
[1m[36mTRANSACTION (0.1ms)[0m [1m[35mBEGIN /*application='Dummy'*/[0m
|
13
|
-
[1m[35m (9.7ms)[0m [1m[35mCREATE TABLE "bscf_core_people" ("id" bigserial primary key, "name" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) /*application='Dummy'*/[0m
|
14
|
-
[1m[36mActiveRecord::SchemaMigration Create (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ('20250324131935') RETURNING "version" /*application='Dummy'*/[0m
|
15
|
-
[1m[36mTRANSACTION (1.4ms)[0m [1m[35mCOMMIT /*application='Dummy'*/[0m
|
16
|
-
[1m[35m (0.6ms)[0m [1m[34mSELECT pg_advisory_unlock(7136077842679658775) /*application='Dummy'*/[0m
|
17
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC /*application='Dummy'*/[0m
|
@@ -1 +0,0 @@
|
|
1
|
-
3a22c82420f040930f412554d7919569ed231f0c16026a0795faffcbd126ec78eccdd546cacca4a594cfb3770ba0380c4da0352d5af1c3b7483f2f35bdff4ed0
|
data/spec/examples.txt
DELETED
data/spec/rails_helper.rb
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
2
|
-
require "spec_helper"
|
3
|
-
ENV["RAILS_ENV"] ||= "test"
|
4
|
-
require_relative "../spec/dummy/config/environment"
|
5
|
-
abort("The Rails environment is running in production mode!") if Rails.env.production?
|
6
|
-
|
7
|
-
require "rspec/rails"
|
8
|
-
require "database_cleaner/active_record"
|
9
|
-
require "factory_bot_rails"
|
10
|
-
require "faker"
|
11
|
-
require "shoulda-matchers"
|
12
|
-
|
13
|
-
begin
|
14
|
-
ActiveRecord::Migration.maintain_test_schema!
|
15
|
-
rescue ActiveRecord::PendingMigrationError => e
|
16
|
-
abort e.to_s.strip
|
17
|
-
end
|
18
|
-
|
19
|
-
RSpec.configure do |config|
|
20
|
-
config.before(:suite) do
|
21
|
-
DatabaseCleaner.strategy = :transaction
|
22
|
-
DatabaseCleaner.clean_with(:truncation)
|
23
|
-
end
|
24
|
-
|
25
|
-
config.before do
|
26
|
-
DatabaseCleaner.strategy = :transaction
|
27
|
-
DatabaseCleaner.start
|
28
|
-
end
|
29
|
-
|
30
|
-
config.append_after do
|
31
|
-
DatabaseCleaner.clean
|
32
|
-
end
|
33
|
-
|
34
|
-
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
35
|
-
config.use_transactional_fixtures = true
|
36
|
-
config.infer_spec_type_from_file_location!
|
37
|
-
config.filter_rails_from_backtrace!
|
38
|
-
config.include FactoryBot::Syntax::Methods
|
39
|
-
end
|
40
|
-
|
41
|
-
Shoulda::Matchers.configure do |config|
|
42
|
-
config.integrate do |with|
|
43
|
-
with.test_framework(:rspec)
|
44
|
-
with.library(:rails)
|
45
|
-
end
|
46
|
-
end
|
data/spec/spec_helper.rb
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
require "simplecov"
|
2
|
-
# require "./spec/support/models/shared_examples"
|
3
|
-
# require "./spec/support/requests/shared_requests"
|
4
|
-
require "rspec/retry"
|
5
|
-
|
6
|
-
RSpec.configure do |config|
|
7
|
-
config.expect_with :rspec do |expectations|
|
8
|
-
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
9
|
-
end
|
10
|
-
|
11
|
-
config.mock_with :rspec do |mocks|
|
12
|
-
mocks.verify_partial_doubles = true
|
13
|
-
end
|
14
|
-
|
15
|
-
config.shared_context_metadata_behavior = :apply_to_host_groups
|
16
|
-
config.example_status_persistence_file_path = "spec/examples.txt"
|
17
|
-
config.disable_monkey_patching!
|
18
|
-
config.profile_examples = 10
|
19
|
-
config.order = :random
|
20
|
-
Kernel.srand config.seed
|
21
|
-
|
22
|
-
config.verbose_retry = true
|
23
|
-
config.display_try_failure_messages = true
|
24
|
-
config.around :each, :js do |ex|
|
25
|
-
ex.run_with_retry retry: 3
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
SimpleCov.start("rails") do
|
30
|
-
add_filter("/lib/")
|
31
|
-
add_filter("/bin/")
|
32
|
-
add_filter("/db/")
|
33
|
-
add_filter("/spec/")
|
34
|
-
end
|
@@ -1,49 +0,0 @@
|
|
1
|
-
module Bscf
|
2
|
-
module Core
|
3
|
-
VALIDATIONS = {
|
4
|
-
presence: "validate_presence_of",
|
5
|
-
uniqueness: "validate_uniqueness_of",
|
6
|
-
numericality: "validate_numericality_of",
|
7
|
-
inclusion: "validate_inclusion_of",
|
8
|
-
belong_to: "belong_to",
|
9
|
-
have_many: "have_many",
|
10
|
-
have_and_belong_to_many: "have_and_belong_to_many",
|
11
|
-
have_one: "have_one",
|
12
|
-
delegate: "delegate_method"
|
13
|
-
}.freeze
|
14
|
-
|
15
|
-
RSpec.shared_examples "model_shared_spec" do |factory, attribs, subj = true|
|
16
|
-
subject { create(factory) } if subj
|
17
|
-
|
18
|
-
it "has a valid factory" do
|
19
|
-
expect(create(factory)).to be_valid
|
20
|
-
end
|
21
|
-
|
22
|
-
attribs.each do |attr|
|
23
|
-
attr.each do |k, v|
|
24
|
-
if v.instance_of?(Array)
|
25
|
-
v.each do |validation|
|
26
|
-
if validation.instance_of?(Hash)
|
27
|
-
method = validation.keys[0]
|
28
|
-
options = validation.values[0]
|
29
|
-
it {
|
30
|
-
expect(subject).to(
|
31
|
-
options.inject(
|
32
|
-
send(VALIDATIONS[method], k)
|
33
|
-
) do |o, p|
|
34
|
-
p[1].nil? ? o.send(p[0]) : o.send(p[0], p[1])
|
35
|
-
end
|
36
|
-
)
|
37
|
-
}
|
38
|
-
else
|
39
|
-
it { is_expected.to(send(VALIDATIONS[validation], k)) }
|
40
|
-
end
|
41
|
-
end
|
42
|
-
else
|
43
|
-
it { is_expected.to(send(VALIDATIONS[v], k)) }
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|