bscf-core 0.1.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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/app/controllers/bscf/core/application_controller.rb +6 -0
- data/app/jobs/bscf/core/application_job.rb +6 -0
- data/app/mailers/bscf/core/application_mailer.rb +8 -0
- data/app/models/bscf/core/application_record.rb +7 -0
- data/config/database.yml +17 -0
- data/config/routes.rb +2 -0
- data/lib/bscf/core/engine.rb +8 -0
- data/lib/bscf/core/version.rb +5 -0
- data/lib/bscf/core.rb +8 -0
- data/lib/tasks/bscf/core_tasks.rake +4 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -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/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/dev +2 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +34 -0
- data/spec/dummy/config/application.rb +43 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +17 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +67 -0
- data/spec/dummy/config/environments/production.rb +86 -0
- data/spec/dummy/config/environments/test.rb +53 -0
- data/spec/dummy/config/initializers/cors.rb +16 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +8 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/locales/en.yml +31 -0
- data/spec/dummy/config/puma.rb +38 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/config.ru +6 -0
- data/spec/dummy/log/development.log +17 -0
- data/spec/dummy/tmp/local_secret.txt +1 -0
- data/spec/examples.txt +3 -0
- data/spec/rails_helper.rb +46 -0
- data/spec/spec_helper.rb +34 -0
- data/spec/support/models/shared_examples.rb +49 -0
- data/spec/support/requests/shared_requests.rb +126 -0
- metadata +355 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e3809381078c320ca29b8e18319a28a57f3ef7536a4db3beab9006d9e697b0a1
|
4
|
+
data.tar.gz: 413847ec12888e616845d0928fd21eb0391456a0ea0c3de2b695a53bb782b14b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7bcd4a81d4536899afec6b26c4cbbe35e3454787e061b42930437284f2a0a5895bb7a4f13a3419f47fe517be670ea56157a9dd1bd53dc571d2669a4917c0625a
|
7
|
+
data.tar.gz: c1a1571b6f13b3cf1659870257e79ba378ac456f95e9db00b05db3d3c22e426ccc36e6e69e45a6298a91d4d79fba8d7093717a6a9b848f365bffd32320dfdee1
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright Asrat
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# Bscf::Core
|
2
|
+
Short description and motivation.
|
3
|
+
|
4
|
+
## Usage
|
5
|
+
How to use my plugin.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem "bscf-core"
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
```bash
|
21
|
+
$ gem install bscf-core
|
22
|
+
```
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
Contribution directions go here.
|
26
|
+
|
27
|
+
## License
|
28
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/config/database.yml
ADDED
@@ -0,0 +1,17 @@
|
|
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
|
data/config/routes.rb
ADDED
data/lib/bscf/core.rb
ADDED
data/spec/dummy/Rakefile
ADDED
@@ -0,0 +1,15 @@
|
|
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
|
+
*/
|
@@ -0,0 +1,7 @@
|
|
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
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= yield %>
|
data/spec/dummy/bin/dev
ADDED
data/spec/dummy/bin/rake
ADDED
@@ -0,0 +1,34 @@
|
|
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
|
@@ -0,0 +1,43 @@
|
|
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
|
@@ -0,0 +1,17 @@
|
|
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
|
@@ -0,0 +1,67 @@
|
|
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
|
@@ -0,0 +1,86 @@
|
|
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
|
@@ -0,0 +1,53 @@
|
|
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
|
@@ -0,0 +1,16 @@
|
|
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
|
@@ -0,0 +1,8 @@
|
|
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
|
+
]
|
@@ -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,31 @@
|
|
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"
|