yamls 0.2.1 → 0.2.2

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 (69) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +25 -0
  3. data/README.md +22 -1
  4. data/example/rails-demo/.gitignore +33 -0
  5. data/example/rails-demo/.ruby-version +1 -0
  6. data/example/rails-demo/Gemfile +43 -0
  7. data/example/rails-demo/README.md +24 -0
  8. data/example/rails-demo/Rakefile +6 -0
  9. data/example/rails-demo/app/channels/application_cable/channel.rb +4 -0
  10. data/example/rails-demo/app/channels/application_cable/connection.rb +4 -0
  11. data/example/rails-demo/app/controllers/application_controller.rb +2 -0
  12. data/example/rails-demo/app/controllers/books_controller.rb +48 -0
  13. data/example/rails-demo/app/controllers/concerns/.keep +0 -0
  14. data/example/rails-demo/app/jobs/application_job.rb +7 -0
  15. data/example/rails-demo/app/mailers/application_mailer.rb +4 -0
  16. data/example/rails-demo/app/models/application_record.rb +3 -0
  17. data/example/rails-demo/app/models/book.rb +2 -0
  18. data/example/rails-demo/app/models/concerns/.keep +0 -0
  19. data/example/rails-demo/app/parameters/column.yml +5 -0
  20. data/example/rails-demo/app/views/layouts/mailer.html.erb +13 -0
  21. data/example/rails-demo/app/views/layouts/mailer.text.erb +1 -0
  22. data/example/rails-demo/bin/bundle +114 -0
  23. data/example/rails-demo/bin/rails +9 -0
  24. data/example/rails-demo/bin/rake +9 -0
  25. data/example/rails-demo/bin/setup +33 -0
  26. data/example/rails-demo/bin/spring +17 -0
  27. data/example/rails-demo/config/application.rb +37 -0
  28. data/example/rails-demo/config/boot.rb +4 -0
  29. data/example/rails-demo/config/cable.yml +10 -0
  30. data/example/rails-demo/config/credentials.yml.enc +1 -0
  31. data/example/rails-demo/config/database.yml +25 -0
  32. data/example/rails-demo/config/environment.rb +5 -0
  33. data/example/rails-demo/config/environments/development.rb +52 -0
  34. data/example/rails-demo/config/environments/production.rb +105 -0
  35. data/example/rails-demo/config/environments/test.rb +49 -0
  36. data/example/rails-demo/config/initializers/application_controller_renderer.rb +8 -0
  37. data/example/rails-demo/config/initializers/backtrace_silencers.rb +7 -0
  38. data/example/rails-demo/config/initializers/cors.rb +16 -0
  39. data/example/rails-demo/config/initializers/filter_parameter_logging.rb +4 -0
  40. data/example/rails-demo/config/initializers/inflections.rb +16 -0
  41. data/example/rails-demo/config/initializers/mime_types.rb +4 -0
  42. data/example/rails-demo/config/initializers/wrap_parameters.rb +14 -0
  43. data/example/rails-demo/config/locales/en.yml +33 -0
  44. data/example/rails-demo/config/puma.rb +38 -0
  45. data/example/rails-demo/config/routes.rb +5 -0
  46. data/example/rails-demo/config/spring.rb +6 -0
  47. data/example/rails-demo/config/storage.yml +34 -0
  48. data/example/rails-demo/config.ru +5 -0
  49. data/example/rails-demo/db/migrate/20211101020803_create_books.rb +11 -0
  50. data/example/rails-demo/db/schema.rb +31 -0
  51. data/example/rails-demo/db/seeds.rb +7 -0
  52. data/example/rails-demo/lib/tasks/.keep +0 -0
  53. data/example/rails-demo/log/.keep +0 -0
  54. data/example/rails-demo/public/robots.txt +1 -0
  55. data/example/rails-demo/storage/.keep +0 -0
  56. data/example/rails-demo/test/channels/application_cable/connection_test.rb +11 -0
  57. data/example/rails-demo/test/controllers/.keep +0 -0
  58. data/example/rails-demo/test/controllers/books_controller_test.rb +38 -0
  59. data/example/rails-demo/test/fixtures/.keep +0 -0
  60. data/example/rails-demo/test/fixtures/books.yml +11 -0
  61. data/example/rails-demo/test/fixtures/files/.keep +0 -0
  62. data/example/rails-demo/test/models/.keep +0 -0
  63. data/example/rails-demo/test/models/book_test.rb +7 -0
  64. data/example/rails-demo/test/test_helper.rb +13 -0
  65. data/example/rails-demo/tmp/.keep +0 -0
  66. data/example/rails-demo/tmp/pids/.keep +0 -0
  67. data/lib/yamls/support/parameters.rb +12 -0
  68. data/lib/yamls/version.rb +1 -1
  69. metadata +64 -1
@@ -0,0 +1,105 @@
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
+
16
+ # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
17
+ # or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
18
+ # config.require_master_key = true
19
+
20
+ # Disable serving static files from the `/public` folder by default since
21
+ # Apache or NGINX already handles this.
22
+ config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
23
+
24
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
25
+ # config.action_controller.asset_host = 'http://assets.example.com'
26
+
27
+ # Specifies the header that your server uses for sending files.
28
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
29
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
30
+
31
+ # Store uploaded files on the local file system (see config/storage.yml for options).
32
+ config.active_storage.service = :local
33
+
34
+ # Mount Action Cable outside main process or domain.
35
+ # config.action_cable.mount_path = nil
36
+ # config.action_cable.url = 'wss://example.com/cable'
37
+ # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
38
+
39
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
40
+ # config.force_ssl = true
41
+
42
+ # Use the lowest log level to ensure availability of diagnostic information
43
+ # when problems arise.
44
+ config.log_level = :debug
45
+
46
+ # Prepend all log lines with the following tags.
47
+ config.log_tags = [ :request_id ]
48
+
49
+ # Use a different cache store in production.
50
+ # config.cache_store = :mem_cache_store
51
+
52
+ # Use a real queuing backend for Active Job (and separate queues per environment).
53
+ # config.active_job.queue_adapter = :resque
54
+ # config.active_job.queue_name_prefix = "rails_support_demo_production"
55
+
56
+ config.action_mailer.perform_caching = false
57
+
58
+ # Ignore bad email addresses and do not raise email delivery errors.
59
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
60
+ # config.action_mailer.raise_delivery_errors = false
61
+
62
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
63
+ # the I18n.default_locale when a translation cannot be found).
64
+ config.i18n.fallbacks = true
65
+
66
+ # Send deprecation notices to registered listeners.
67
+ config.active_support.deprecation = :notify
68
+
69
+ # Use default logging formatter so that PID and timestamp are not suppressed.
70
+ config.log_formatter = ::Logger::Formatter.new
71
+
72
+ # Use a different logger for distributed setups.
73
+ # require 'syslog/logger'
74
+ # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
75
+
76
+ if ENV["RAILS_LOG_TO_STDOUT"].present?
77
+ logger = ActiveSupport::Logger.new(STDOUT)
78
+ logger.formatter = config.log_formatter
79
+ config.logger = ActiveSupport::TaggedLogging.new(logger)
80
+ end
81
+
82
+ # Do not dump schema after migrations.
83
+ config.active_record.dump_schema_after_migration = false
84
+
85
+ # Inserts middleware to perform automatic connection switching.
86
+ # The `database_selector` hash is used to pass options to the DatabaseSelector
87
+ # middleware. The `delay` is used to determine how long to wait after a write
88
+ # to send a subsequent read to the primary.
89
+ #
90
+ # The `database_resolver` class is used by the middleware to determine which
91
+ # database is appropriate to use based on the time delay.
92
+ #
93
+ # The `database_resolver_context` class is used by the middleware to set
94
+ # timestamps for the last write to the primary. The resolver uses the context
95
+ # class timestamps to determine how long to wait before reading from the
96
+ # replica.
97
+ #
98
+ # By default Rails will store a last write timestamp in the session. The
99
+ # DatabaseSelector middleware is designed as such you can define your own
100
+ # strategy for connection switching and pass that into the middleware through
101
+ # these configuration options.
102
+ # config.active_record.database_selector = { delay: 2.seconds }
103
+ # config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver
104
+ # config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session
105
+ end
@@ -0,0 +1,49 @@
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
+ config.cache_classes = false
10
+ config.action_view.cache_template_loading = true
11
+
12
+ # Do not eager load code on boot. This avoids loading your whole application
13
+ # just for the purpose of running a single test. If you are using a tool that
14
+ # preloads Rails for running tests, you may have to set it to true.
15
+ config.eager_load = false
16
+
17
+ # Configure public file server for tests with Cache-Control for performance.
18
+ config.public_file_server.enabled = true
19
+ config.public_file_server.headers = {
20
+ 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
21
+ }
22
+
23
+ # Show full error reports and disable caching.
24
+ config.consider_all_requests_local = true
25
+ config.action_controller.perform_caching = false
26
+ config.cache_store = :null_store
27
+
28
+ # Raise exceptions instead of rendering exception templates.
29
+ config.action_dispatch.show_exceptions = false
30
+
31
+ # Disable request forgery protection in test environment.
32
+ config.action_controller.allow_forgery_protection = false
33
+
34
+ # Store uploaded files on the local file system in a temporary directory.
35
+ config.active_storage.service = :test
36
+
37
+ config.action_mailer.perform_caching = false
38
+
39
+ # Tell Action Mailer not to deliver emails to the real world.
40
+ # The :test delivery method accumulates sent emails in the
41
+ # ActionMailer::Base.deliveries array.
42
+ config.action_mailer.delivery_method = :test
43
+
44
+ # Print deprecation notices to the stderr.
45
+ config.active_support.deprecation = :stderr
46
+
47
+ # Raises error for missing translations.
48
+ # config.action_view.raise_on_missing_translations = true
49
+ end
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # ActiveSupport::Reloader.to_prepare do
4
+ # ApplicationController.renderer.defaults.merge!(
5
+ # http_host: 'example.org',
6
+ # https: false
7
+ # )
8
+ # end
@@ -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,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,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -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,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -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,38 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
9
+ threads min_threads_count, max_threads_count
10
+
11
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
12
+ #
13
+ port ENV.fetch("PORT") { 3000 }
14
+
15
+ # Specifies the `environment` that Puma will run in.
16
+ #
17
+ environment ENV.fetch("RAILS_ENV") { "development" }
18
+
19
+ # Specifies the `pidfile` that Puma will use.
20
+ pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
21
+
22
+ # Specifies the number of `workers` to boot in clustered mode.
23
+ # Workers are forked web server processes. If using threads and workers together
24
+ # the concurrency of the application would be max `threads` * `workers`.
25
+ # Workers do not work on JRuby or Windows (both of which do not support
26
+ # processes).
27
+ #
28
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
29
+
30
+ # Use the `preload_app!` method when specifying a `workers` number.
31
+ # This directive tells Puma to first boot the application and load code
32
+ # before forking the application. This takes advantage of Copy On Write
33
+ # process behavior so workers use less memory.
34
+ #
35
+ # preload_app!
36
+
37
+ # Allow puma to be restarted by `rails restart` command.
38
+ plugin :tmp_restart
@@ -0,0 +1,5 @@
1
+ Rails.application.routes.draw do
2
+ resources :books
3
+ resources :people
4
+ # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
5
+ end
@@ -0,0 +1,6 @@
1
+ Spring.watch(
2
+ ".ruby-version",
3
+ ".rbenv-vars",
4
+ "tmp/restart.txt",
5
+ "tmp/caching-dev.txt"
6
+ )
@@ -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,5 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative 'config/environment'
4
+
5
+ run Rails.application
@@ -0,0 +1,11 @@
1
+ class CreateBooks < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :books do |t|
4
+ t.string :name
5
+ t.string :label
6
+ t.integer :value
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,31 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # This file is the source Rails uses to define your schema when running `rails
6
+ # db:schema:load`. When creating a new database, `rails db:schema:load` tends to
7
+ # be faster and is potentially less error prone than running all of your
8
+ # migrations from scratch. Old migrations may fail to apply correctly if those
9
+ # migrations use external dependencies or application code.
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 2021_11_01_020803) do
14
+
15
+ create_table "books", force: :cascade do |t|
16
+ t.string "name"
17
+ t.string "label"
18
+ t.integer "value"
19
+ t.datetime "created_at", precision: 6, null: false
20
+ t.datetime "updated_at", precision: 6, null: false
21
+ end
22
+
23
+ create_table "people", force: :cascade do |t|
24
+ t.string "name"
25
+ t.integer "age"
26
+ t.integer "role"
27
+ t.datetime "created_at", precision: 6, null: false
28
+ t.datetime "updated_at", precision: 6, null: false
29
+ end
30
+
31
+ end
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
7
+ # Character.create(name: 'Luke', movie: movies.first)
File without changes
File without changes
@@ -0,0 +1 @@
1
+ # See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
File without changes
@@ -0,0 +1,11 @@
1
+ require "test_helper"
2
+
3
+ class ApplicationCable::ConnectionTest < ActionCable::Connection::TestCase
4
+ # test "connects with cookies" do
5
+ # cookies.signed[:user_id] = 42
6
+ #
7
+ # connect
8
+ #
9
+ # assert_equal connection.user_id, "42"
10
+ # end
11
+ end
File without changes
@@ -0,0 +1,38 @@
1
+ require 'test_helper'
2
+
3
+ class BooksControllerTest < ActionDispatch::IntegrationTest
4
+ setup do
5
+ @book = books(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get books_url, as: :json
10
+ assert_response :success
11
+ end
12
+
13
+ test "should create book" do
14
+ assert_difference('Book.count') do
15
+ post books_url, params: { book: { label: @book.label, name: @book.name, value: @book.value } }, as: :json
16
+ end
17
+
18
+ assert_response 201
19
+ end
20
+
21
+ test "should show book" do
22
+ get book_url(@book), as: :json
23
+ assert_response :success
24
+ end
25
+
26
+ test "should update book" do
27
+ patch book_url(@book), params: { book: { label: @book.label, name: @book.name, value: @book.value } }, as: :json
28
+ assert_response 200
29
+ end
30
+
31
+ test "should destroy book" do
32
+ assert_difference('Book.count', -1) do
33
+ delete book_url(@book), as: :json
34
+ end
35
+
36
+ assert_response 204
37
+ end
38
+ end
File without changes
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ name: MyString
5
+ label: MyString
6
+ value: 1
7
+
8
+ two:
9
+ name: MyString
10
+ label: MyString
11
+ value: 1
File without changes
File without changes
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class BookTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,13 @@
1
+ ENV['RAILS_ENV'] ||= 'test'
2
+ require_relative '../config/environment'
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Run tests in parallel with specified workers
7
+ parallelize(workers: :number_of_processors)
8
+
9
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end
File without changes
File without changes
@@ -7,6 +7,12 @@ module Yamls
7
7
  module Parameters
8
8
  extend ActiveSupport::Concern
9
9
 
10
+ included do
11
+ before_action :define_params_method
12
+ end
13
+
14
+ protected
15
+
10
16
  def yamls
11
17
  Yamls::Parameters.new(
12
18
  params,
@@ -14,6 +20,12 @@ module Yamls
14
20
  action: action_name,
15
21
  ).permit
16
22
  end
23
+
24
+ def define_params_method
25
+ method_name = "#{controller_name.singularize}_#{action_name}_params"
26
+
27
+ define_singleton_method(method_name) { yamls }
28
+ end
17
29
  end
18
30
  end
19
31
  end
data/lib/yamls/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Yamls
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yamls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TsuMakoto
@@ -28,6 +28,69 @@ files:
28
28
  - Rakefile
29
29
  - bin/console
30
30
  - bin/setup
31
+ - example/rails-demo/.gitignore
32
+ - example/rails-demo/.ruby-version
33
+ - example/rails-demo/Gemfile
34
+ - example/rails-demo/README.md
35
+ - example/rails-demo/Rakefile
36
+ - example/rails-demo/app/channels/application_cable/channel.rb
37
+ - example/rails-demo/app/channels/application_cable/connection.rb
38
+ - example/rails-demo/app/controllers/application_controller.rb
39
+ - example/rails-demo/app/controllers/books_controller.rb
40
+ - example/rails-demo/app/controllers/concerns/.keep
41
+ - example/rails-demo/app/jobs/application_job.rb
42
+ - example/rails-demo/app/mailers/application_mailer.rb
43
+ - example/rails-demo/app/models/application_record.rb
44
+ - example/rails-demo/app/models/book.rb
45
+ - example/rails-demo/app/models/concerns/.keep
46
+ - example/rails-demo/app/parameters/column.yml
47
+ - example/rails-demo/app/views/layouts/mailer.html.erb
48
+ - example/rails-demo/app/views/layouts/mailer.text.erb
49
+ - example/rails-demo/bin/bundle
50
+ - example/rails-demo/bin/rails
51
+ - example/rails-demo/bin/rake
52
+ - example/rails-demo/bin/setup
53
+ - example/rails-demo/bin/spring
54
+ - example/rails-demo/config.ru
55
+ - example/rails-demo/config/application.rb
56
+ - example/rails-demo/config/boot.rb
57
+ - example/rails-demo/config/cable.yml
58
+ - example/rails-demo/config/credentials.yml.enc
59
+ - example/rails-demo/config/database.yml
60
+ - example/rails-demo/config/environment.rb
61
+ - example/rails-demo/config/environments/development.rb
62
+ - example/rails-demo/config/environments/production.rb
63
+ - example/rails-demo/config/environments/test.rb
64
+ - example/rails-demo/config/initializers/application_controller_renderer.rb
65
+ - example/rails-demo/config/initializers/backtrace_silencers.rb
66
+ - example/rails-demo/config/initializers/cors.rb
67
+ - example/rails-demo/config/initializers/filter_parameter_logging.rb
68
+ - example/rails-demo/config/initializers/inflections.rb
69
+ - example/rails-demo/config/initializers/mime_types.rb
70
+ - example/rails-demo/config/initializers/wrap_parameters.rb
71
+ - example/rails-demo/config/locales/en.yml
72
+ - example/rails-demo/config/puma.rb
73
+ - example/rails-demo/config/routes.rb
74
+ - example/rails-demo/config/spring.rb
75
+ - example/rails-demo/config/storage.yml
76
+ - example/rails-demo/db/migrate/20211101020803_create_books.rb
77
+ - example/rails-demo/db/schema.rb
78
+ - example/rails-demo/db/seeds.rb
79
+ - example/rails-demo/lib/tasks/.keep
80
+ - example/rails-demo/log/.keep
81
+ - example/rails-demo/public/robots.txt
82
+ - example/rails-demo/storage/.keep
83
+ - example/rails-demo/test/channels/application_cable/connection_test.rb
84
+ - example/rails-demo/test/controllers/.keep
85
+ - example/rails-demo/test/controllers/books_controller_test.rb
86
+ - example/rails-demo/test/fixtures/.keep
87
+ - example/rails-demo/test/fixtures/books.yml
88
+ - example/rails-demo/test/fixtures/files/.keep
89
+ - example/rails-demo/test/models/.keep
90
+ - example/rails-demo/test/models/book_test.rb
91
+ - example/rails-demo/test/test_helper.rb
92
+ - example/rails-demo/tmp/.keep
93
+ - example/rails-demo/tmp/pids/.keep
31
94
  - example/rails5/.gitignore
32
95
  - example/rails5/.ruby-version
33
96
  - example/rails5/Gemfile