solidus_drip 0.0.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 +7 -0
- data/LICENSE +26 -0
- data/README.md +55 -0
- data/Rakefile +32 -0
- data/app/assets/javascripts/spree/frontend/solidus_drip.js.erb +11 -0
- data/app/decorators/models/solidus_drip/spree/order_decorator.rb +47 -0
- data/app/decorators/models/solidus_drip/spree/variant_decorator.rb +25 -0
- data/config/initializers/default_host.rb +9 -0
- data/config/initializers/update_hooks.rb +3 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +5 -0
- data/lib/generators/solidus_drip/install/install_generator.rb +28 -0
- data/lib/solidus_drip.rb +9 -0
- data/lib/solidus_drip/base.rb +31 -0
- data/lib/solidus_drip/engine.rb +22 -0
- data/lib/solidus_drip/factories.rb +8 -0
- data/lib/solidus_drip/shopper_activity.rb +6 -0
- data/lib/solidus_drip/shopper_activity/order.rb +138 -0
- data/lib/solidus_drip/shopper_activity/product.rb +54 -0
- data/lib/solidus_drip/version.rb +5 -0
- data/spec/dummy/README.md +24 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +2 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/javascript/channels/consumer.js +6 -0
- data/spec/dummy/app/javascript/channels/index.js +5 -0
- data/spec/dummy/app/javascript/packs/application.js +17 -0
- data/spec/dummy/app/jobs/application_job.rb +7 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +15 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +36 -0
- data/spec/dummy/bin/yarn +11 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/config/application.rb +59 -0
- data/spec/dummy/config/boot.rb +6 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/credentials.yml.enc +1 -0
- data/spec/dummy/config/database.yml +12 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +62 -0
- data/spec/dummy/config/environments/production.rb +112 -0
- data/spec/dummy/config/environments/test.rb +33 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +14 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +30 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/spree.rb +71 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/master.key +1 -0
- data/spec/dummy/config/routes.rb +9 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/migrate/20191101230305_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20191101230306_create_action_mailbox_tables.action_mailbox.rb +14 -0
- data/spec/dummy/db/migrate/20191101230307_create_action_text_tables.action_text.rb +14 -0
- data/spec/dummy/db/migrate/20191101230308_solidus_one_four.spree.rb +1103 -0
- data/spec/dummy/db/migrate/20191101230309_create_spree_wallet_payment_sources.spree.rb +28 -0
- data/spec/dummy/db/migrate/20191101230310_migrate_credit_cards_to_wallet_payment_sources.spree.rb +30 -0
- data/spec/dummy/db/migrate/20191101230311_remove_is_default_from_prices.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230312_remove_currency_from_line_items.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230313_add_available_to_columns_and_remove_display_on_from_payment_methods.spree.rb +31 -0
- data/spec/dummy/db/migrate/20191101230314_create_spree_promotion_code_batch.spree.rb +39 -0
- data/spec/dummy/db/migrate/20191101230315_add_available_to_users_and_remove_display_on_from_shipping_methods.spree.rb +23 -0
- data/spec/dummy/db/migrate/20191101230316_add_index_to_spree_payments_number.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230317_remove_spree_store_credits_column.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230318_add_lft_and_rgt_indexes_to_taxons.spree.rb +9 -0
- data/spec/dummy/db/migrate/20191101230319_remove_order_id_from_inventory_units.spree.rb +31 -0
- data/spec/dummy/db/migrate/20191101230320_transform_tax_rate_category_relation.spree.rb +51 -0
- data/spec/dummy/db/migrate/20191101230321_add_roles_unique_constraints.spree.rb +9 -0
- data/spec/dummy/db/migrate/20191101230322_add_time_range_to_tax_rate.spree.rb +9 -0
- data/spec/dummy/db/migrate/20191101230323_rename_bogus_gateways.spree.rb +19 -0
- data/spec/dummy/db/migrate/20191101230324_remove_default_tax_from_spree_zones.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230325_create_promotion_rule_stores.spree.rb +13 -0
- data/spec/dummy/db/migrate/20191101230326_create_store_shipping_methods.spree.rb +13 -0
- data/spec/dummy/db/migrate/20191101230327_add_available_locales_to_stores.spree.rb +10 -0
- data/spec/dummy/db/migrate/20191101230328_add_amount_remaining_to_store_credit_events.spree.rb +62 -0
- data/spec/dummy/db/migrate/20191101230329_add_join_characters_to_promotion_code_batch.spree.rb +12 -0
- data/spec/dummy/db/migrate/20191101230330_create_spree_store_credit_reasons_table.spree.rb +56 -0
- data/spec/dummy/db/migrate/20191101230331_remove_code_from_spree_promotions.spree.rb +43 -0
- data/spec/dummy/db/migrate/20191101230332_drop_spree_store_credit_update_reasons.spree.rb +20 -0
- data/spec/dummy/db/migrate/20191101230333_add_api_key_to_spree_users.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20191101230334_resize_api_key_field.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20191101230335_rename_api_key_to_spree_api_key.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20191101230336_add_index_to_user_spree_api_key.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20191101230337_create_users.solidus_auth.rb +32 -0
- data/spec/dummy/db/migrate/20191101230338_rename_columns_for_devise.solidus_auth.rb +40 -0
- data/spec/dummy/db/migrate/20191101230339_convert_user_remember_field.solidus_auth.rb +14 -0
- data/spec/dummy/db/migrate/20191101230340_add_reset_password_sent_at_to_spree_users.solidus_auth.rb +11 -0
- data/spec/dummy/db/migrate/20191101230341_make_users_email_index_unique.solidus_auth.rb +12 -0
- data/spec/dummy/db/migrate/20191101230342_add_deleted_at_to_users.solidus_auth.rb +9 -0
- data/spec/dummy/db/migrate/20191101230343_add_confirmable_to_users.solidus_auth.rb +10 -0
- data/spec/dummy/db/migrate/20191101230344_add_reset_password_token_index_to_spree_users.solidus_auth.rb +35 -0
- data/spec/dummy/db/schema.rb +1211 -0
- data/spec/dummy/db/seeds.rb +10 -0
- data/spec/dummy/db/solidus_test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +12695 -0
- data/spec/dummy/package.json +11 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/dummy/vendor/assets/javascripts/spree/backend/all.js +11 -0
- data/spec/dummy/vendor/assets/javascripts/spree/frontend/all.js +11 -0
- data/spec/dummy/vendor/assets/stylesheets/spree/backend/all.css +10 -0
- data/spec/dummy/vendor/assets/stylesheets/spree/frontend/all.css +10 -0
- data/spec/models/order_spec.rb +45 -0
- data/spec/models/variant_spec.rb +27 -0
- data/spec/spec_helper.rb +34 -0
- data/spec/support/stub_drip_responses.rb +13 -0
- metadata +495 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
Rails.application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
|
3
|
+
|
|
4
|
+
# Code is not reloaded between requests.
|
|
5
|
+
config.cache_classes = true
|
|
6
|
+
|
|
7
|
+
# Eager load code on boot. This eager loads most of Rails and
|
|
8
|
+
# your application in memory, allowing both threaded web servers
|
|
9
|
+
# and those relying on copy on write to perform better.
|
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
|
11
|
+
config.eager_load = true
|
|
12
|
+
|
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
|
14
|
+
config.consider_all_requests_local = false
|
|
15
|
+
config.action_controller.perform_caching = true
|
|
16
|
+
|
|
17
|
+
# Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
|
|
18
|
+
# or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
|
|
19
|
+
# config.require_master_key = true
|
|
20
|
+
|
|
21
|
+
# Disable serving static files from the `/public` folder by default since
|
|
22
|
+
# Apache or NGINX already handles this.
|
|
23
|
+
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
|
24
|
+
|
|
25
|
+
# Compress CSS using a preprocessor.
|
|
26
|
+
# config.assets.css_compressor = :sass
|
|
27
|
+
|
|
28
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
|
29
|
+
config.assets.compile = false
|
|
30
|
+
|
|
31
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
|
32
|
+
# config.action_controller.asset_host = 'http://assets.example.com'
|
|
33
|
+
|
|
34
|
+
# Specifies the header that your server uses for sending files.
|
|
35
|
+
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
|
36
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
|
37
|
+
|
|
38
|
+
# Store uploaded files on the local file system (see config/storage.yml for options).
|
|
39
|
+
config.active_storage.service = :local
|
|
40
|
+
|
|
41
|
+
# Mount Action Cable outside main process or domain.
|
|
42
|
+
# config.action_cable.mount_path = nil
|
|
43
|
+
# config.action_cable.url = 'wss://example.com/cable'
|
|
44
|
+
# config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
|
|
45
|
+
|
|
46
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
|
47
|
+
# config.force_ssl = true
|
|
48
|
+
|
|
49
|
+
# Use the lowest log level to ensure availability of diagnostic information
|
|
50
|
+
# when problems arise.
|
|
51
|
+
config.log_level = :debug
|
|
52
|
+
|
|
53
|
+
# Prepend all log lines with the following tags.
|
|
54
|
+
config.log_tags = [ :request_id ]
|
|
55
|
+
|
|
56
|
+
# Use a different cache store in production.
|
|
57
|
+
# config.cache_store = :mem_cache_store
|
|
58
|
+
|
|
59
|
+
# Use a real queuing backend for Active Job (and separate queues per environment).
|
|
60
|
+
# config.active_job.queue_adapter = :resque
|
|
61
|
+
# config.active_job.queue_name_prefix = "dummy_production"
|
|
62
|
+
|
|
63
|
+
config.action_mailer.perform_caching = false
|
|
64
|
+
|
|
65
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
|
66
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
|
67
|
+
# config.action_mailer.raise_delivery_errors = false
|
|
68
|
+
|
|
69
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
70
|
+
# the I18n.default_locale when a translation cannot be found).
|
|
71
|
+
config.i18n.fallbacks = true
|
|
72
|
+
|
|
73
|
+
# Send deprecation notices to registered listeners.
|
|
74
|
+
config.active_support.deprecation = :notify
|
|
75
|
+
|
|
76
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
|
77
|
+
config.log_formatter = ::Logger::Formatter.new
|
|
78
|
+
|
|
79
|
+
# Use a different logger for distributed setups.
|
|
80
|
+
# require 'syslog/logger'
|
|
81
|
+
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
|
82
|
+
|
|
83
|
+
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
|
84
|
+
logger = ActiveSupport::Logger.new(STDOUT)
|
|
85
|
+
logger.formatter = config.log_formatter
|
|
86
|
+
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
# Do not dump schema after migrations.
|
|
90
|
+
config.active_record.dump_schema_after_migration = false
|
|
91
|
+
|
|
92
|
+
# Inserts middleware to perform automatic connection switching.
|
|
93
|
+
# The `database_selector` hash is used to pass options to the DatabaseSelector
|
|
94
|
+
# middleware. The `delay` is used to determine how long to wait after a write
|
|
95
|
+
# to send a subsequent read to the primary.
|
|
96
|
+
#
|
|
97
|
+
# The `database_resolver` class is used by the middleware to determine which
|
|
98
|
+
# database is appropriate to use based on the time delay.
|
|
99
|
+
#
|
|
100
|
+
# The `database_resolver_context` class is used by the middleware to set
|
|
101
|
+
# timestamps for the last write to the primary. The resolver uses the context
|
|
102
|
+
# class timestamps to determine how long to wait before reading from the
|
|
103
|
+
# replica.
|
|
104
|
+
#
|
|
105
|
+
# By default Rails will store a last write timestamp in the session. The
|
|
106
|
+
# DatabaseSelector middleware is designed as such you can define your own
|
|
107
|
+
# strategy for connection switching and pass that into the middleware through
|
|
108
|
+
# these configuration options.
|
|
109
|
+
# config.active_record.database_selector = { delay: 2.seconds }
|
|
110
|
+
# config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver
|
|
111
|
+
# config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session
|
|
112
|
+
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# The test environment is used exclusively to run your application's
|
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
|
8
|
+
config.cache_classes = true
|
|
9
|
+
|
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
|
11
|
+
config.public_file_server.enabled = true
|
|
12
|
+
config.public_file_server.headers = { 'Cache-Control' => "public, max-age=3600" }
|
|
13
|
+
|
|
14
|
+
# Show full error reports and disable caching
|
|
15
|
+
config.consider_all_requests_local = true
|
|
16
|
+
config.action_controller.perform_caching = false
|
|
17
|
+
|
|
18
|
+
config.eager_load = false
|
|
19
|
+
|
|
20
|
+
# Raise exceptions instead of rendering exception templates
|
|
21
|
+
config.action_dispatch.show_exceptions = false
|
|
22
|
+
|
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
|
25
|
+
# ActionMailer::Base.deliveries array.
|
|
26
|
+
config.action_mailer.delivery_method = :test
|
|
27
|
+
ActionMailer::Base.default from: "spree@example.com"
|
|
28
|
+
|
|
29
|
+
# Raise on deprecation warnings
|
|
30
|
+
if ENV['SOLIDUS_RAISE_DEPRECATIONS'].present?
|
|
31
|
+
Spree::Deprecation.behavior = :raise
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Version of your assets, change this if you want to expire all your assets.
|
|
4
|
+
Rails.application.config.assets.version = '1.0'
|
|
5
|
+
|
|
6
|
+
# Add additional assets to the asset load path.
|
|
7
|
+
# Rails.application.config.assets.paths << Emoji.images_path
|
|
8
|
+
# Add Yarn node_modules folder to the asset load path.
|
|
9
|
+
Rails.application.config.assets.paths << Rails.root.join('node_modules')
|
|
10
|
+
|
|
11
|
+
# Precompile additional assets.
|
|
12
|
+
# application.js, application.css, and all non-JS/CSS in the app/assets
|
|
13
|
+
# folder are already added.
|
|
14
|
+
# Rails.application.config.assets.precompile += %w( admin.js admin.css )
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
|
5
|
+
|
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Define an application-wide content security policy
|
|
4
|
+
# For further information see the following documentation
|
|
5
|
+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
|
|
6
|
+
|
|
7
|
+
# Rails.application.config.content_security_policy do |policy|
|
|
8
|
+
# policy.default_src :self, :https
|
|
9
|
+
# policy.font_src :self, :https, :data
|
|
10
|
+
# policy.img_src :self, :https, :data
|
|
11
|
+
# policy.object_src :none
|
|
12
|
+
# policy.script_src :self, :https
|
|
13
|
+
# policy.style_src :self, :https
|
|
14
|
+
# # If you are using webpack-dev-server then specify webpack-dev-server host
|
|
15
|
+
# policy.connect_src :self, :https, "http://localhost:3035", "ws://localhost:3035" if Rails.env.development?
|
|
16
|
+
|
|
17
|
+
# # Specify URI for violation reports
|
|
18
|
+
# # policy.report_uri "/csp-violation-report-endpoint"
|
|
19
|
+
# end
|
|
20
|
+
|
|
21
|
+
# If you are using UJS then enable automatic nonce generation
|
|
22
|
+
# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
|
|
23
|
+
|
|
24
|
+
# Set the nonce only to specific directives
|
|
25
|
+
# Rails.application.config.content_security_policy_nonce_directives = %w(script-src)
|
|
26
|
+
|
|
27
|
+
# Report CSP violations to a specified URI
|
|
28
|
+
# For further information see the following documentation:
|
|
29
|
+
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
|
|
30
|
+
# Rails.application.config.content_security_policy_report_only = true
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Configure Solidus Preferences
|
|
2
|
+
# See http://docs.solidus.io/Spree/AppConfiguration.html for details
|
|
3
|
+
|
|
4
|
+
Spree.config do |config|
|
|
5
|
+
# Core:
|
|
6
|
+
|
|
7
|
+
# Default currency for new sites
|
|
8
|
+
config.currency = "USD"
|
|
9
|
+
|
|
10
|
+
# from address for transactional emails
|
|
11
|
+
config.mails_from = "store@example.com"
|
|
12
|
+
|
|
13
|
+
# Uncomment to stop tracking inventory levels in the application
|
|
14
|
+
# config.track_inventory_levels = false
|
|
15
|
+
|
|
16
|
+
# When set, product caches are only invalidated when they fall below or rise
|
|
17
|
+
# above the inventory_cache_threshold that is set. Default is to invalidate cache on
|
|
18
|
+
# any inventory changes.
|
|
19
|
+
# config.inventory_cache_threshold = 3
|
|
20
|
+
|
|
21
|
+
# Enable Paperclip adapter for attachments on images and taxons
|
|
22
|
+
config.image_attachment_module = 'Spree::Image::PaperclipAttachment'
|
|
23
|
+
config.taxon_attachment_module = 'Spree::Taxon::PaperclipAttachment'
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# Permission Sets:
|
|
27
|
+
|
|
28
|
+
# Uncomment and customize the following line to add custom permission sets
|
|
29
|
+
# to a custom users role:
|
|
30
|
+
# config.roles.assign_permissions :role_name, ['Spree::PermissionSets::CustomPermissionSet']
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# Frontend:
|
|
34
|
+
|
|
35
|
+
# Custom logo for the frontend
|
|
36
|
+
# config.logo = "logo/solidus.svg"
|
|
37
|
+
|
|
38
|
+
# Template to use when rendering layout
|
|
39
|
+
# config.layout = "spree/layouts/spree_application"
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
# Admin:
|
|
43
|
+
|
|
44
|
+
# Custom logo for the admin
|
|
45
|
+
# config.admin_interface_logo = "logo/solidus.svg"
|
|
46
|
+
|
|
47
|
+
# Gateway credentials can be configured statically here and referenced from
|
|
48
|
+
# the admin. They can also be fully configured from the admin.
|
|
49
|
+
#
|
|
50
|
+
# Please note that you need to use the solidus_stripe gem to have
|
|
51
|
+
# Stripe working: https://github.com/solidusio-contrib/solidus_stripe
|
|
52
|
+
#
|
|
53
|
+
# config.static_model_preferences.add(
|
|
54
|
+
# Spree::PaymentMethod::StripeCreditCard,
|
|
55
|
+
# 'stripe_env_credentials',
|
|
56
|
+
# secret_key: ENV['STRIPE_SECRET_KEY'],
|
|
57
|
+
# publishable_key: ENV['STRIPE_PUBLISHABLE_KEY'],
|
|
58
|
+
# server: Rails.env.production? ? 'production' : 'test',
|
|
59
|
+
# test_mode: !Rails.env.production?
|
|
60
|
+
# )
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
Spree.user_class = "Spree::LegacyUser"
|
|
67
|
+
|
|
68
|
+
# If you want to add a field to the whitelisted ransackable attributes,
|
|
69
|
+
# just uncomment the following code and change it as you need.
|
|
70
|
+
#
|
|
71
|
+
# Spree::Model.whitelisted_ransackable_attributes << 'field'
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
|
4
|
+
# is enabled by default.
|
|
5
|
+
|
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
|
8
|
+
wrap_parameters format: [:json]
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
|
13
|
+
# self.include_root_in_json = true
|
|
14
|
+
# end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
|
3
|
+
# than 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
|
+
# The following keys must be escaped otherwise they will not be retrieved by
|
|
20
|
+
# the default I18n backend:
|
|
21
|
+
#
|
|
22
|
+
# true, false, on, off, yes, no
|
|
23
|
+
#
|
|
24
|
+
# Instead, surround them with single quotes.
|
|
25
|
+
#
|
|
26
|
+
# en:
|
|
27
|
+
# 'true': 'foo'
|
|
28
|
+
#
|
|
29
|
+
# To learn more, please read the Rails Internationalization guide
|
|
30
|
+
# available at https://guides.rubyonrails.org/i18n.html.
|
|
31
|
+
|
|
32
|
+
en:
|
|
33
|
+
hello: "Hello world"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
11ec0ee9c38faa7ec41ff76e9ac32659
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Rails.application.routes.draw do
|
|
2
|
+
# This line mounts Solidus's routes at the root of your application.
|
|
3
|
+
# This means, any requests to URLs such as /products, will go to Spree::ProductsController.
|
|
4
|
+
# If you would like to change where this engine is mounted, simply change the :at option to something different.
|
|
5
|
+
#
|
|
6
|
+
# We ask that you don't use the :as option here, as Solidus relies on it being the default of "spree"
|
|
7
|
+
mount Spree::Core::Engine, at: '/'
|
|
8
|
+
|
|
9
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
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 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
|
|
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
|
|
23
|
+
|
|
24
|
+
# Use 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
|
|
30
|
+
|
|
31
|
+
# mirror:
|
|
32
|
+
# service: Mirror
|
|
33
|
+
# primary: local
|
|
34
|
+
# mirrors: [ amazon, google, microsoft ]
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This migration comes from active_storage (originally 20170806125915)
|
|
2
|
+
class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
|
|
3
|
+
def change
|
|
4
|
+
create_table :active_storage_blobs do |t|
|
|
5
|
+
t.string :key, null: false
|
|
6
|
+
t.string :filename, null: false
|
|
7
|
+
t.string :content_type
|
|
8
|
+
t.text :metadata
|
|
9
|
+
t.bigint :byte_size, null: false
|
|
10
|
+
t.string :checksum, null: false
|
|
11
|
+
t.datetime :created_at, null: false
|
|
12
|
+
|
|
13
|
+
t.index [ :key ], unique: true
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
create_table :active_storage_attachments do |t|
|
|
17
|
+
t.string :name, null: false
|
|
18
|
+
t.references :record, null: false, polymorphic: true, index: false
|
|
19
|
+
t.references :blob, null: false
|
|
20
|
+
|
|
21
|
+
t.datetime :created_at, null: false
|
|
22
|
+
|
|
23
|
+
t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
|
|
24
|
+
t.foreign_key :active_storage_blobs, column: :blob_id
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|