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.
Files changed (89) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/app/models/bscf/core/address.rb +7 -0
  4. data/app/models/bscf/core/business.rb +15 -0
  5. data/app/models/bscf/core/category.rb +11 -0
  6. data/app/models/bscf/core/order.rb +24 -0
  7. data/app/models/bscf/core/order_item.rb +15 -0
  8. data/app/models/bscf/core/product.rb +29 -0
  9. data/app/models/bscf/core/quotation.rb +29 -0
  10. data/app/models/bscf/core/quotation_item.rb +23 -0
  11. data/app/models/bscf/core/request_for_quotation.rb +13 -0
  12. data/app/models/bscf/core/rfq_item.rb +9 -0
  13. data/app/models/bscf/core/role.rb +10 -0
  14. data/app/models/bscf/core/user.rb +21 -0
  15. data/app/models/bscf/core/user_profile.rb +26 -0
  16. data/app/models/bscf/core/user_role.rb +8 -0
  17. data/app/models/bscf/core/virtual_account.rb +53 -0
  18. data/app/models/bscf/core/virtual_account_transaction.rb +158 -0
  19. data/db/migrate/20250326065606_create_bscf_core_users.rb +18 -0
  20. data/db/migrate/20250326075111_create_bscf_core_roles.rb +9 -0
  21. data/db/migrate/20250326080646_create_bscf_core_user_profiles.rb +19 -0
  22. data/db/migrate/20250326081052_create_bscf_core_addresses.rb +14 -0
  23. data/db/migrate/20250326084233_create_bscf_core_user_roles.rb +10 -0
  24. data/db/migrate/20250326085741_create_bscf_core_virtual_accounts.rb +24 -0
  25. data/db/migrate/20250326103305_create_bscf_core_categories.rb +11 -0
  26. data/db/migrate/20250326105652_create_bscf_core_products.rb +14 -0
  27. data/db/migrate/20250326112449_create_bscf_core_businesses.rb +14 -0
  28. data/db/migrate/20250326115203_create_bscf_core_request_for_quotations.rb +11 -0
  29. data/db/migrate/20250326120613_create_bscf_core_rfq_items.rb +12 -0
  30. data/db/migrate/20250326121246_create_bscf_core_bscf_core_virtual_account_transactions.rb +19 -0
  31. data/db/migrate/20250327041651_create_bscf_core_quotations.rb +15 -0
  32. data/db/migrate/20250327044020_create_bscf_core_quotation_items.rb +15 -0
  33. data/db/migrate/20250327102217_create_bscf_core_orders.rb +14 -0
  34. data/db/migrate/20250327112412_create_bscf_core_order_items.rb +14 -0
  35. data/lib/bscf/core/engine.rb +18 -0
  36. data/lib/bscf/core/version.rb +1 -1
  37. data/lib/tasks/release.rake +42 -0
  38. data/spec/factories/bscf/core/addresses.rb +10 -0
  39. data/spec/factories/bscf/core/businesses.rb +24 -0
  40. data/spec/factories/bscf/core/categories.rb +16 -0
  41. data/spec/factories/bscf/core/order_items.rb +10 -0
  42. data/spec/factories/bscf/core/orders.rb +10 -0
  43. data/spec/factories/bscf/core/products.rb +8 -0
  44. data/spec/factories/bscf/core/quotation_items.rb +11 -0
  45. data/spec/factories/bscf/core/quotations.rb +28 -0
  46. data/spec/factories/bscf/core/request_for_quotations.rb +7 -0
  47. data/spec/factories/bscf/core/rfq_items.rb +8 -0
  48. data/spec/factories/bscf/core/roles.rb +5 -0
  49. data/spec/factories/bscf/core/user_profiles.rb +15 -0
  50. data/spec/factories/bscf/core/user_roles.rb +6 -0
  51. data/spec/factories/bscf/core/users.rb +10 -0
  52. data/spec/factories/bscf/core/virtual_account_transactions.rb +34 -0
  53. data/spec/factories/bscf/core/virtual_accounts.rb +38 -0
  54. metadata +51 -37
  55. data/spec/dummy/Rakefile +0 -6
  56. data/spec/dummy/app/assets/stylesheets/application.css +0 -15
  57. data/spec/dummy/app/controllers/application_controller.rb +0 -2
  58. data/spec/dummy/app/jobs/application_job.rb +0 -7
  59. data/spec/dummy/app/mailers/application_mailer.rb +0 -4
  60. data/spec/dummy/app/models/application_record.rb +0 -3
  61. data/spec/dummy/app/views/layouts/mailer.html.erb +0 -13
  62. data/spec/dummy/app/views/layouts/mailer.text.erb +0 -1
  63. data/spec/dummy/bin/dev +0 -2
  64. data/spec/dummy/bin/rails +0 -4
  65. data/spec/dummy/bin/rake +0 -4
  66. data/spec/dummy/bin/setup +0 -34
  67. data/spec/dummy/config/application.rb +0 -43
  68. data/spec/dummy/config/boot.rb +0 -5
  69. data/spec/dummy/config/cable.yml +0 -10
  70. data/spec/dummy/config/database.yml +0 -17
  71. data/spec/dummy/config/environment.rb +0 -5
  72. data/spec/dummy/config/environments/development.rb +0 -67
  73. data/spec/dummy/config/environments/production.rb +0 -86
  74. data/spec/dummy/config/environments/test.rb +0 -53
  75. data/spec/dummy/config/initializers/cors.rb +0 -16
  76. data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -8
  77. data/spec/dummy/config/initializers/inflections.rb +0 -16
  78. data/spec/dummy/config/locales/en.yml +0 -31
  79. data/spec/dummy/config/puma.rb +0 -38
  80. data/spec/dummy/config/routes.rb +0 -3
  81. data/spec/dummy/config/storage.yml +0 -34
  82. data/spec/dummy/config.ru +0 -6
  83. data/spec/dummy/log/development.log +0 -17
  84. data/spec/dummy/tmp/local_secret.txt +0 -1
  85. data/spec/examples.txt +0 -3
  86. data/spec/rails_helper.rb +0 -46
  87. data/spec/spec_helper.rb +0 -34
  88. data/spec/support/models/shared_examples.rb +0 -49
  89. data/spec/support/requests/shared_requests.rb +0 -126
@@ -0,0 +1,19 @@
1
+ class CreateBscfCoreBscfCoreVirtualAccountTransactions < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_virtual_account_transactions do |t|
4
+ t.references :from_account, null: false, foreign_key: { to_table: :bscf_core_virtual_accounts }
5
+ t.references :to_account, null: false, foreign_key: { to_table: :bscf_core_virtual_accounts }
6
+ t.decimal :amount, null: false
7
+ t.integer :transaction_type, null: false
8
+ t.integer :status, null: false, default: 0
9
+ t.string :reference_number, null: false
10
+ t.text :description
11
+
12
+ t.timestamps
13
+ end
14
+
15
+ add_index :bscf_core_virtual_account_transactions, :reference_number, unique: true
16
+ add_index :bscf_core_virtual_account_transactions, [ :from_account_id, :reference_number ]
17
+ add_index :bscf_core_virtual_account_transactions, [ :to_account_id, :reference_number ]
18
+ end
19
+ end
@@ -0,0 +1,15 @@
1
+ class CreateBscfCoreQuotations < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_quotations do |t|
4
+ t.references :request_for_quotation, null: false, foreign_key: { to_table: :bscf_core_request_for_quotations }
5
+ t.references :business, null: false, foreign_key: { to_table: :bscf_core_businesses }
6
+ t.decimal :price, null: false
7
+ t.date :delivery_date, null: false
8
+ t.datetime :valid_until, null: false
9
+ t.integer :status, null: false, default: 0
10
+ t.text :notes
11
+
12
+ t.timestamps
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ class CreateBscfCoreQuotationItems < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_quotation_items do |t|
4
+ t.references :quotation, null: false, foreign_key: { to_table: :bscf_core_quotations }
5
+ t.references :rfq_item, null: false, foreign_key: { to_table: :bscf_core_rfq_items }
6
+ t.references :product, null: false, foreign_key: { to_table: :bscf_core_products }
7
+ t.integer :quantity, null: false
8
+ t.decimal :unit_price, null: false
9
+ t.integer :unit, null: false
10
+ t.decimal :subtotal, null: false
11
+
12
+ t.timestamps
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,14 @@
1
+ class CreateBscfCoreOrders < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_orders do |t|
4
+ t.references :ordered_by, null: true, foreign_key: { to_table: :bscf_core_users }
5
+ t.references :ordered_to, null: true, foreign_key: { to_table: :bscf_core_users }
6
+ t.references :quotation, null: true, foreign_key: { to_table: :bscf_core_quotations }
7
+ t.integer :order_type, null: false, default: 0
8
+ t.integer :status, null: false, default: 0
9
+ t.float :total_amount, precision: 10, scale: 2
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ class CreateBscfCoreOrderItems < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_order_items do |t|
4
+ t.references :order, null: false, foreign_key: { to_table: :bscf_core_orders }
5
+ t.references :product, null: false, foreign_key: { to_table: :bscf_core_products }
6
+ t.references :quotation_item, null: true, foreign_key: { to_table: :bscf_core_quotation_items }
7
+ t.float :quantity, null: false
8
+ t.float :unit_price, null: false
9
+ t.float :subtotal, null: false
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -3,6 +3,24 @@ module Bscf
3
3
  class Engine < ::Rails::Engine
4
4
  isolate_namespace Bscf::Core
5
5
  config.generators.api_only = true
6
+
7
+ config.generators do |g|
8
+ g.test_framework :rspec, routing_specs: false
9
+ g.fixture_replacement :factory_bot
10
+ g.factory_bot dir: "spec/factories"
11
+ end
12
+
13
+ initializer "bscf_core.factories", after: "factory_bot.set_factory_paths" do
14
+ FactoryBot.definition_file_paths << File.expand_path("../../../spec/factories", __dir__) if defined?(FactoryBot)
15
+ end
16
+
17
+ initializer :append_migrations do |app|
18
+ unless app.root.to_s.match(root.to_s + File::SEPARATOR)
19
+ app.config.paths["db/migrate"].concat(config.paths["db/migrate"].expanded)
20
+ end
21
+ end
22
+
23
+ require "active_storage/engine"
6
24
  end
7
25
  end
8
26
  end
@@ -1,5 +1,5 @@
1
1
  module Bscf
2
2
  module Core
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
@@ -0,0 +1,42 @@
1
+ namespace :version do
2
+ task :bump, [ :type ] do |t, args|
3
+ args.with_defaults(type: "patch")
4
+ version_file = "lib/bscf/core/version.rb"
5
+ content = File.read(version_file)
6
+ current = content.match(/VERSION = "(.*)"/)[1].split(".").map(&:to_i)
7
+
8
+ case args[:type]
9
+ when "major" then current = [ current[0] + 1, 0, 0 ]
10
+ when "minor" then current = [ current[0], current[1] + 1, 0 ]
11
+ when "patch" then current = [ current[0], current[1], current[2] + 1 ]
12
+ end
13
+
14
+ new_version = current.join(".")
15
+ new_content = content.gsub(/VERSION = ".*"/, "VERSION = \"#{new_version}\"")
16
+ File.write(version_file, new_content)
17
+
18
+ puts "Bumped to version #{new_version}"
19
+ end
20
+
21
+ task :commit do
22
+ version_file = "lib/bscf/core/version.rb"
23
+ version = File.read(version_file).match(/VERSION = "(.*?)"/)[1]
24
+ sh "git add #{version_file}"
25
+ sh "git commit -m 'Bump version to #{version}'"
26
+ end
27
+
28
+ task :tag do
29
+ version = File.read("lib/bscf/core/version.rb").match(/VERSION = "(.*?)"/)[1]
30
+ sh "git tag v#{version}"
31
+ end
32
+
33
+ task :push do
34
+ sh "git push origin main"
35
+ sh "git push origin --tags"
36
+ end
37
+
38
+ task release: [ :bump, :commit, :tag, :push ] do
39
+ version = File.read("lib/bscf/core/version.rb").match(/VERSION = "(.*?)"/)[1]
40
+ puts "Released version #{version}"
41
+ end
42
+ end
@@ -0,0 +1,10 @@
1
+ FactoryBot.define do
2
+ factory :address, class: "Bscf::Core::Address" do
3
+ city { Faker::Address.city }
4
+ sub_city { Faker::Name.name }
5
+ woreda { Faker::Name.name }
6
+ latitude { Faker::Address.latitude }
7
+ longitude { Faker::Address.longitude }
8
+ house_number { Faker::Address.building_number }
9
+ end
10
+ end
@@ -0,0 +1,24 @@
1
+ FactoryBot.define do
2
+ factory :business, class: 'Bscf::Core::Business' do
3
+ user
4
+ business_name { Faker::Company.name }
5
+ tin_number { Faker::Number.unique.number(digits: 10).to_s }
6
+ business_type { :retailer }
7
+ verification_status { :pending }
8
+ verified_at { nil }
9
+
10
+ trait :wholesaler do
11
+ business_type { :wholesaler }
12
+ end
13
+
14
+ trait :approved do
15
+ verification_status { :approved }
16
+ verified_at { Time.current }
17
+ end
18
+
19
+ trait :rejected do
20
+ verification_status { :rejected }
21
+ verified_at { Time.current }
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,16 @@
1
+ FactoryBot.define do
2
+ factory :category, class: 'Bscf::Core::Category' do
3
+ name { Faker::Commerce.department }
4
+ description { Faker::Lorem.sentence }
5
+
6
+ trait :with_parent do
7
+ association :parent, factory: :category
8
+ end
9
+
10
+ trait :with_children do
11
+ after(:create) do |category|
12
+ create_list(:category, 2, parent: category)
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,10 @@
1
+ FactoryBot.define do
2
+ factory :order_item, class: "Bscf::Core::OrderItem" do
3
+ order
4
+ product
5
+ quotation_item
6
+ quantity { Faker::Number.between(from: 1, to: 15) }
7
+ unit_price { Faker::Number.between(from: 10, to: 100) }
8
+ subtotal { Faker::Number.between(from: 200, to: 15000) }
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ FactoryBot.define do
2
+ factory :order, class: "Bscf::Core::Order" do
3
+ ordered_by { create(:user) }
4
+ ordered_to { create(:user) }
5
+ quotation { create(:quotation) }
6
+ order_type { :order_from_quote }
7
+ status { :draft }
8
+ total_amount { Faker::Number.between(from: 100, to: 1000) }
9
+ end
10
+ end
@@ -0,0 +1,8 @@
1
+ FactoryBot.define do
2
+ factory :product, class: 'Bscf::Core::Product' do
3
+ name { Faker::Commerce.product_name }
4
+ description { Faker::Lorem.paragraph }
5
+ association :category, factory: :category
6
+ base_price { Faker::Commerce.price(range: 0..1000.0) }
7
+ end
8
+ end
@@ -0,0 +1,11 @@
1
+ FactoryBot.define do
2
+ factory :quotation_item, class: 'Bscf::Core::QuotationItem' do
3
+ association :quotation
4
+ association :rfq_item
5
+ association :product
6
+ quantity { rand(1..10) }
7
+ unit_price { rand(10.0..100.0).round(2) }
8
+ unit { 1 }
9
+ subtotal { quantity * unit_price }
10
+ end
11
+ end
@@ -0,0 +1,28 @@
1
+ FactoryBot.define do
2
+ factory :quotation, class: 'Bscf::Core::Quotation' do
3
+ association :request_for_quotation
4
+ association :business
5
+ price { Faker::Commerce.price }
6
+ delivery_date { Faker::Date.forward(days: 30) }
7
+ valid_until { Faker::Time.forward(days: 30) }
8
+ status { :draft }
9
+ notes { Faker::Lorem.paragraph }
10
+
11
+ trait :submitted do
12
+ status { :submitted }
13
+ end
14
+
15
+ trait :accepted do
16
+ status { :accepted }
17
+ end
18
+
19
+ trait :rejected do
20
+ status { :rejected }
21
+ end
22
+
23
+ trait :expired do
24
+ status { :expired }
25
+ valid_until { 1.day.ago }
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,7 @@
1
+ FactoryBot.define do
2
+ factory :request_for_quotation, class: "Bscf::Core::RequestForQuotation" do
3
+ user
4
+ status { 0 }
5
+ notes { Faker::Lorem.sentence }
6
+ end
7
+ end
@@ -0,0 +1,8 @@
1
+ FactoryBot.define do
2
+ factory :rfq_item, class: "Bscf::Core::RfqItem" do
3
+ request_for_quotation
4
+ product
5
+ quantity { Faker::Number.between(from: 1, to: 20) }
6
+ notes { Faker::Lorem.sentence }
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ FactoryBot.define do
2
+ factory :role, class: "Bscf::Core::Role" do
3
+ name { Faker::Name.name }
4
+ end
5
+ end
@@ -0,0 +1,15 @@
1
+ FactoryBot.define do
2
+ factory :user_profile, class: "Bscf::Core::UserProfile" do
3
+ user
4
+ date_of_birth { Date.today }
5
+ nationality { Faker::Address.country }
6
+ occupation { Faker::Job.title }
7
+ source_of_funds { Faker::Lorem.word }
8
+ kyc_status { 1 }
9
+ gender { 1 }
10
+ verified_at { DateTime.now }
11
+ verified_by { nil }
12
+ address
13
+ fayda_id { Faker::Alphanumeric.alpha(number: 10) }
14
+ end
15
+ end
@@ -0,0 +1,6 @@
1
+ FactoryBot.define do
2
+ factory :user_role, class: "Bscf::Core::UserRole" do
3
+ user
4
+ role
5
+ end
6
+ end
@@ -0,0 +1,10 @@
1
+ FactoryBot.define do
2
+ factory :user, class: "Bscf::Core::User" do
3
+ first_name { Faker::Name.first_name }
4
+ middle_name { Faker::Name.middle_name }
5
+ last_name { Faker::Name.last_name }
6
+ password { Faker::Internet.password }
7
+ email { Faker::Internet.email }
8
+ phone_number { Faker::Alphanumeric.alpha(number: 10) }
9
+ end
10
+ end
@@ -0,0 +1,34 @@
1
+ FactoryBot.define do
2
+ factory :virtual_account_transaction, class: 'Bscf::Core::VirtualAccountTransaction' do
3
+ association :from_account, factory: :virtual_account, status: :active, balance: 10000
4
+ association :to_account, factory: :virtual_account, status: :active, balance: 5000
5
+ amount { 100.0 }
6
+ transaction_type { :transfer }
7
+ status { :pending }
8
+ description { Faker::Lorem.sentence }
9
+
10
+ trait :completed do
11
+ status { :completed }
12
+ end
13
+
14
+ trait :failed do
15
+ status { :failed }
16
+ end
17
+
18
+ trait :cancelled do
19
+ status { :cancelled }
20
+ end
21
+
22
+ trait :deposit do
23
+ transaction_type { :deposit }
24
+ end
25
+
26
+ trait :withdrawal do
27
+ transaction_type { :withdrawal }
28
+ end
29
+
30
+ trait :with_large_amount do
31
+ amount { 5000.0 }
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,38 @@
1
+ FactoryBot.define do
2
+ factory :virtual_account, class: 'Bscf::Core::VirtualAccount' do
3
+ association :user, factory: :user
4
+
5
+ sequence(:cbs_account_number) { |n| "CBS#{n.to_s.rjust(8, '0')}" }
6
+ branch_code { "BR001" }
7
+ product_scheme { "SAVINGS" }
8
+ voucher_type { "REGULAR" }
9
+ balance { 0.0 }
10
+ interest_rate { 2.5 }
11
+ interest_type { :simple }
12
+ active { true }
13
+ status { :pending }
14
+
15
+ trait :active_status do
16
+ status { :active }
17
+ end
18
+
19
+ trait :with_balance do
20
+ balance { Faker::Number.decimal(l_digits: 4, r_digits: 2) }
21
+ end
22
+
23
+ trait :compound_interest do
24
+ interest_type { :compound }
25
+ interest_rate { 5.0 }
26
+ end
27
+
28
+ trait :current_account do
29
+ product_scheme { "CURRENT" }
30
+ interest_rate { 0.0 }
31
+ end
32
+
33
+ trait :loan_account do
34
+ product_scheme { "LOAN" }
35
+ interest_rate { 12.5 }
36
+ end
37
+ end
38
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bscf-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Asrat
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-24 00:00:00.000000000 Z
10
+ date: 2025-03-28 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: active_model_serializers
@@ -286,48 +286,62 @@ files:
286
286
  - app/controllers/bscf/core/application_controller.rb
287
287
  - app/jobs/bscf/core/application_job.rb
288
288
  - app/mailers/bscf/core/application_mailer.rb
289
+ - app/models/bscf/core/address.rb
289
290
  - app/models/bscf/core/application_record.rb
291
+ - app/models/bscf/core/business.rb
292
+ - app/models/bscf/core/category.rb
293
+ - app/models/bscf/core/order.rb
294
+ - app/models/bscf/core/order_item.rb
295
+ - app/models/bscf/core/product.rb
296
+ - app/models/bscf/core/quotation.rb
297
+ - app/models/bscf/core/quotation_item.rb
298
+ - app/models/bscf/core/request_for_quotation.rb
299
+ - app/models/bscf/core/rfq_item.rb
300
+ - app/models/bscf/core/role.rb
301
+ - app/models/bscf/core/user.rb
302
+ - app/models/bscf/core/user_profile.rb
303
+ - app/models/bscf/core/user_role.rb
304
+ - app/models/bscf/core/virtual_account.rb
305
+ - app/models/bscf/core/virtual_account_transaction.rb
290
306
  - config/database.yml
291
307
  - config/routes.rb
308
+ - db/migrate/20250326065606_create_bscf_core_users.rb
309
+ - db/migrate/20250326075111_create_bscf_core_roles.rb
310
+ - db/migrate/20250326080646_create_bscf_core_user_profiles.rb
311
+ - db/migrate/20250326081052_create_bscf_core_addresses.rb
312
+ - db/migrate/20250326084233_create_bscf_core_user_roles.rb
313
+ - db/migrate/20250326085741_create_bscf_core_virtual_accounts.rb
314
+ - db/migrate/20250326103305_create_bscf_core_categories.rb
315
+ - db/migrate/20250326105652_create_bscf_core_products.rb
316
+ - db/migrate/20250326112449_create_bscf_core_businesses.rb
317
+ - db/migrate/20250326115203_create_bscf_core_request_for_quotations.rb
318
+ - db/migrate/20250326120613_create_bscf_core_rfq_items.rb
319
+ - db/migrate/20250326121246_create_bscf_core_bscf_core_virtual_account_transactions.rb
320
+ - db/migrate/20250327041651_create_bscf_core_quotations.rb
321
+ - db/migrate/20250327044020_create_bscf_core_quotation_items.rb
322
+ - db/migrate/20250327102217_create_bscf_core_orders.rb
323
+ - db/migrate/20250327112412_create_bscf_core_order_items.rb
292
324
  - lib/bscf/core.rb
293
325
  - lib/bscf/core/engine.rb
294
326
  - lib/bscf/core/version.rb
295
327
  - lib/tasks/bscf/core_tasks.rake
296
- - spec/dummy/Rakefile
297
- - spec/dummy/app/assets/stylesheets/application.css
298
- - spec/dummy/app/controllers/application_controller.rb
299
- - spec/dummy/app/jobs/application_job.rb
300
- - spec/dummy/app/mailers/application_mailer.rb
301
- - spec/dummy/app/models/application_record.rb
302
- - spec/dummy/app/views/layouts/mailer.html.erb
303
- - spec/dummy/app/views/layouts/mailer.text.erb
304
- - spec/dummy/bin/dev
305
- - spec/dummy/bin/rails
306
- - spec/dummy/bin/rake
307
- - spec/dummy/bin/setup
308
- - spec/dummy/config.ru
309
- - spec/dummy/config/application.rb
310
- - spec/dummy/config/boot.rb
311
- - spec/dummy/config/cable.yml
312
- - spec/dummy/config/database.yml
313
- - spec/dummy/config/environment.rb
314
- - spec/dummy/config/environments/development.rb
315
- - spec/dummy/config/environments/production.rb
316
- - spec/dummy/config/environments/test.rb
317
- - spec/dummy/config/initializers/cors.rb
318
- - spec/dummy/config/initializers/filter_parameter_logging.rb
319
- - spec/dummy/config/initializers/inflections.rb
320
- - spec/dummy/config/locales/en.yml
321
- - spec/dummy/config/puma.rb
322
- - spec/dummy/config/routes.rb
323
- - spec/dummy/config/storage.yml
324
- - spec/dummy/log/development.log
325
- - spec/dummy/tmp/local_secret.txt
326
- - spec/examples.txt
327
- - spec/rails_helper.rb
328
- - spec/spec_helper.rb
329
- - spec/support/models/shared_examples.rb
330
- - spec/support/requests/shared_requests.rb
328
+ - lib/tasks/release.rake
329
+ - spec/factories/bscf/core/addresses.rb
330
+ - spec/factories/bscf/core/businesses.rb
331
+ - spec/factories/bscf/core/categories.rb
332
+ - spec/factories/bscf/core/order_items.rb
333
+ - spec/factories/bscf/core/orders.rb
334
+ - spec/factories/bscf/core/products.rb
335
+ - spec/factories/bscf/core/quotation_items.rb
336
+ - spec/factories/bscf/core/quotations.rb
337
+ - spec/factories/bscf/core/request_for_quotations.rb
338
+ - spec/factories/bscf/core/rfq_items.rb
339
+ - spec/factories/bscf/core/roles.rb
340
+ - spec/factories/bscf/core/user_profiles.rb
341
+ - spec/factories/bscf/core/user_roles.rb
342
+ - spec/factories/bscf/core/users.rb
343
+ - spec/factories/bscf/core/virtual_account_transactions.rb
344
+ - spec/factories/bscf/core/virtual_accounts.rb
331
345
  homepage: https://mksaddis.com/
332
346
  licenses:
333
347
  - MIT
data/spec/dummy/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- # Add your own tasks in files placed in lib/tasks ending in .rake,
2
- # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
-
4
- require_relative "config/application"
5
-
6
- Rails.application.load_tasks
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,2 +0,0 @@
1
- class ApplicationController < ActionController::API
2
- end
@@ -1,7 +0,0 @@
1
- class ApplicationJob < ActiveJob::Base
2
- # Automatically retry jobs that encountered a deadlock
3
- # retry_on ActiveRecord::Deadlocked
4
-
5
- # Most jobs are safe to ignore if the underlying records are no longer available
6
- # discard_on ActiveJob::DeserializationError
7
- end
@@ -1,4 +0,0 @@
1
- class ApplicationMailer < ActionMailer::Base
2
- default from: "from@example.com"
3
- layout "mailer"
4
- end
@@ -1,3 +0,0 @@
1
- class ApplicationRecord < ActiveRecord::Base
2
- primary_abstract_class
3
- end
@@ -1,13 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <style>
6
- /* Email styles need to be inline */
7
- </style>
8
- </head>
9
-
10
- <body>
11
- <%= yield %>
12
- </body>
13
- </html>
@@ -1 +0,0 @@
1
- <%= yield %>
data/spec/dummy/bin/dev DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env ruby
2
- exec "./bin/rails", "server", *ARGV
data/spec/dummy/bin/rails DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
- APP_PATH = File.expand_path("../config/application", __dir__)
3
- require_relative "../config/boot"
4
- require "rails/commands"
data/spec/dummy/bin/rake DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require_relative "../config/boot"
3
- require "rake"
4
- Rake.application.run
data/spec/dummy/bin/setup DELETED
@@ -1,34 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require "fileutils"
3
-
4
- APP_ROOT = File.expand_path("..", __dir__)
5
-
6
- def system!(*args)
7
- system(*args, exception: true)
8
- end
9
-
10
- FileUtils.chdir APP_ROOT do
11
- # This script is a way to set up or update your development environment automatically.
12
- # This script is idempotent, so that you can run it at any time and get an expectable outcome.
13
- # Add necessary setup steps to this file.
14
-
15
- puts "== Installing dependencies =="
16
- system("bundle check") || system!("bundle install")
17
-
18
- # puts "\n== Copying sample files =="
19
- # unless File.exist?("config/database.yml")
20
- # FileUtils.cp "config/database.yml.sample", "config/database.yml"
21
- # end
22
-
23
- puts "\n== Preparing database =="
24
- system! "bin/rails db:prepare"
25
-
26
- puts "\n== Removing old logs and tempfiles =="
27
- system! "bin/rails log:clear tmp:clear"
28
-
29
- unless ARGV.include?("--skip-server")
30
- puts "\n== Starting development server =="
31
- STDOUT.flush # flush the output before exec(2) so that it displays
32
- exec "bin/dev"
33
- end
34
- end