yamls 0.1.1 → 0.1.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 (73) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +26 -1
  3. data/Gemfile +2 -0
  4. data/README.md +2 -0
  5. data/example/rails5/.gitignore +28 -0
  6. data/example/rails5/.ruby-version +1 -0
  7. data/example/rails5/Gemfile +47 -0
  8. data/example/rails5/README.md +24 -0
  9. data/example/rails5/Rakefile +6 -0
  10. data/example/rails5/app/channels/application_cable/channel.rb +4 -0
  11. data/example/rails5/app/channels/application_cable/connection.rb +4 -0
  12. data/example/rails5/app/controllers/application_controller.rb +2 -0
  13. data/example/rails5/app/controllers/books_controller.rb +55 -0
  14. data/example/rails5/app/controllers/concerns/.keep +0 -0
  15. data/example/rails5/app/controllers/people_controller.rb +55 -0
  16. data/example/rails5/app/jobs/application_job.rb +2 -0
  17. data/example/rails5/app/mailers/application_mailer.rb +4 -0
  18. data/example/rails5/app/models/application_record.rb +3 -0
  19. data/example/rails5/app/models/book.rb +2 -0
  20. data/example/rails5/app/models/concerns/.keep +0 -0
  21. data/example/rails5/app/models/person.rb +2 -0
  22. data/example/rails5/app/parameters/column.yml +11 -0
  23. data/example/rails5/app/views/layouts/mailer.html.erb +13 -0
  24. data/example/rails5/app/views/layouts/mailer.text.erb +1 -0
  25. data/example/rails5/bin/bundle +3 -0
  26. data/example/rails5/bin/rails +9 -0
  27. data/example/rails5/bin/rake +9 -0
  28. data/example/rails5/bin/setup +33 -0
  29. data/example/rails5/bin/spring +17 -0
  30. data/example/rails5/bin/update +28 -0
  31. data/example/rails5/config/application.rb +35 -0
  32. data/example/rails5/config/boot.rb +4 -0
  33. data/example/rails5/config/cable.yml +10 -0
  34. data/example/rails5/config/credentials.yml.enc +1 -0
  35. data/example/rails5/config/database.yml +25 -0
  36. data/example/rails5/config/environment.rb +5 -0
  37. data/example/rails5/config/environments/development.rb +54 -0
  38. data/example/rails5/config/environments/production.rb +85 -0
  39. data/example/rails5/config/environments/test.rb +46 -0
  40. data/example/rails5/config/initializers/application_controller_renderer.rb +8 -0
  41. data/example/rails5/config/initializers/backtrace_silencers.rb +7 -0
  42. data/example/rails5/config/initializers/cors.rb +16 -0
  43. data/example/rails5/config/initializers/filter_parameter_logging.rb +4 -0
  44. data/example/rails5/config/initializers/inflections.rb +16 -0
  45. data/example/rails5/config/initializers/mime_types.rb +4 -0
  46. data/example/rails5/config/initializers/wrap_parameters.rb +14 -0
  47. data/example/rails5/config/locales/en.yml +33 -0
  48. data/example/rails5/config/puma.rb +37 -0
  49. data/example/rails5/config/routes.rb +5 -0
  50. data/example/rails5/config/spring.rb +6 -0
  51. data/example/rails5/config/storage.yml +34 -0
  52. data/example/rails5/config.ru +5 -0
  53. data/example/rails5/db/migrate/20211031043641_create_people.rb +11 -0
  54. data/example/rails5/db/migrate/20211031052741_create_books.rb +11 -0
  55. data/example/rails5/db/schema.rb +31 -0
  56. data/example/rails5/db/seeds.rb +7 -0
  57. data/example/rails5/lib/tasks/.keep +0 -0
  58. data/example/rails5/log/.keep +0 -0
  59. data/example/rails5/public/robots.txt +1 -0
  60. data/example/rails5/storage/.keep +0 -0
  61. data/example/rails5/test/controllers/.keep +0 -0
  62. data/example/rails5/test/controllers/books_controller_test.rb +50 -0
  63. data/example/rails5/test/controllers/people_controller_test.rb +50 -0
  64. data/example/rails5/test/fixtures/.keep +0 -0
  65. data/example/rails5/test/fixtures/books.yml +10 -0
  66. data/example/rails5/test/fixtures/files/.keep +0 -0
  67. data/example/rails5/test/fixtures/people.yml +10 -0
  68. data/example/rails5/test/integration/.keep +0 -0
  69. data/example/rails5/test/test_helper.rb +10 -0
  70. data/example/rails5/tmp/.keep +0 -0
  71. data/lib/support/parameters.rb +19 -0
  72. data/lib/yamls/version.rb +1 -1
  73. metadata +68 -1
@@ -0,0 +1,85 @@
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
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
26
+ # config.action_controller.asset_host = 'http://assets.example.com'
27
+
28
+ # Specifies the header that your server uses for sending files.
29
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
30
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
31
+
32
+ # Store uploaded files on the local file system (see config/storage.yml for options)
33
+ config.active_storage.service = :local
34
+
35
+ # Mount Action Cable outside main process or domain
36
+ # config.action_cable.mount_path = nil
37
+ # config.action_cable.url = 'wss://example.com/cable'
38
+ # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
39
+
40
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
41
+ # config.force_ssl = true
42
+
43
+ # Use the lowest log level to ensure availability of diagnostic information
44
+ # when problems arise.
45
+ config.log_level = :debug
46
+
47
+ # Prepend all log lines with the following tags.
48
+ config.log_tags = [ :request_id ]
49
+
50
+ # Use a different cache store in production.
51
+ # config.cache_store = :mem_cache_store
52
+
53
+ # Use a real queuing backend for Active Job (and separate queues per environment)
54
+ # config.active_job.queue_adapter = :resque
55
+ # config.active_job.queue_name_prefix = "rails5_#{Rails.env}"
56
+
57
+ config.action_mailer.perform_caching = false
58
+
59
+ # Ignore bad email addresses and do not raise email delivery errors.
60
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
61
+ # config.action_mailer.raise_delivery_errors = false
62
+
63
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
64
+ # the I18n.default_locale when a translation cannot be found).
65
+ config.i18n.fallbacks = true
66
+
67
+ # Send deprecation notices to registered listeners.
68
+ config.active_support.deprecation = :notify
69
+
70
+ # Use default logging formatter so that PID and timestamp are not suppressed.
71
+ config.log_formatter = ::Logger::Formatter.new
72
+
73
+ # Use a different logger for distributed setups.
74
+ # require 'syslog/logger'
75
+ # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
76
+
77
+ if ENV["RAILS_LOG_TO_STDOUT"].present?
78
+ logger = ActiveSupport::Logger.new(STDOUT)
79
+ logger.formatter = config.log_formatter
80
+ config.logger = ActiveSupport::TaggedLogging.new(logger)
81
+ end
82
+
83
+ # Do not dump schema after migrations.
84
+ config.active_record.dump_schema_after_migration = false
85
+ end
@@ -0,0 +1,46 @@
1
+ Rails.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
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure public file server for tests with Cache-Control for performance.
16
+ config.public_file_server.enabled = true
17
+ config.public_file_server.headers = {
18
+ 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
19
+ }
20
+
21
+ # Show full error reports and disable caching.
22
+ config.consider_all_requests_local = true
23
+ config.action_controller.perform_caching = false
24
+
25
+ # Raise exceptions instead of rendering exception templates.
26
+ config.action_dispatch.show_exceptions = false
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
+ config.action_mailer.perform_caching = false
35
+
36
+ # Tell Action Mailer not to deliver emails to the real world.
37
+ # The :test delivery method accumulates sent emails in the
38
+ # ActionMailer::Base.deliveries array.
39
+ config.action_mailer.delivery_method = :test
40
+
41
+ # Print deprecation notices to the stderr.
42
+ config.active_support.deprecation = :stderr
43
+
44
+ # Raises error for missing translations
45
+ # config.action_view.raise_on_missing_translations = true
46
+ 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 http://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,37 @@
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
+ threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ threads threads_count, threads_count
9
+
10
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
11
+ #
12
+ port ENV.fetch("PORT") { 3000 }
13
+
14
+ # Specifies the `environment` that Puma will run in.
15
+ #
16
+ environment ENV.fetch("RAILS_ENV") { "development" }
17
+
18
+ # Specifies the `pidfile` that Puma will use.
19
+ pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
20
+
21
+ # Specifies the number of `workers` to boot in clustered mode.
22
+ # Workers are forked webserver processes. If using threads and workers together
23
+ # the concurrency of the application would be max `threads` * `workers`.
24
+ # Workers do not work on JRuby or Windows (both of which do not support
25
+ # processes).
26
+ #
27
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
28
+
29
+ # Use the `preload_app!` method when specifying a `workers` number.
30
+ # This directive tells Puma to first boot the application and load code
31
+ # before forking the application. This takes advantage of Copy On Write
32
+ # process behavior so workers use less memory.
33
+ #
34
+ # preload_app!
35
+
36
+ # Allow puma to be restarted by `rails restart` command.
37
+ 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 http://guides.rubyonrails.org/routing.html
5
+ end
@@ -0,0 +1,6 @@
1
+ %w[
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ].each { |path| Spring.watch(path) }
@@ -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 CreatePeople < ActiveRecord::Migration[5.2]
2
+ def change
3
+ create_table :people do |t|
4
+ t.string :name
5
+ t.string :age
6
+ t.string :role
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ class CreateBooks < ActiveRecord::Migration[5.2]
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
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 2021_10_31_052741) 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", null: false
20
+ t.datetime "updated_at", null: false
21
+ end
22
+
23
+ create_table "people", force: :cascade do |t|
24
+ t.string "name"
25
+ t.string "age"
26
+ t.string "role"
27
+ t.datetime "created_at", null: false
28
+ t.datetime "updated_at", 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 http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
File without changes
File without changes
@@ -0,0 +1,50 @@
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: {
16
+ book: {
17
+ name: "test-book",
18
+ label: "test-label",
19
+ value: 1500
20
+ }
21
+ }, as: :json
22
+ end
23
+
24
+ assert_response 201
25
+ end
26
+
27
+ test "should show book" do
28
+ get book_url(@book), as: :json
29
+ assert_response :success
30
+ end
31
+
32
+ test "should update book" do
33
+ patch book_url(@book), params: {
34
+ book: {
35
+ name: "test-book",
36
+ label: "test-label",
37
+ value: 1500
38
+ }
39
+ }, as: :json
40
+ assert_response 200
41
+ end
42
+
43
+ test "should destroy book" do
44
+ assert_difference('Book.count', -1) do
45
+ delete book_url(@book), as: :json
46
+ end
47
+
48
+ assert_response 204
49
+ end
50
+ end
@@ -0,0 +1,50 @@
1
+ require 'test_helper'
2
+
3
+ class PeopleControllerTest < ActionDispatch::IntegrationTest
4
+ setup do
5
+ @person = people(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get people_url, as: :json
10
+ assert_response :success
11
+ end
12
+
13
+ test "should create person" do
14
+ assert_difference('Person.count') do
15
+ post people_url, params: {
16
+ people: {
17
+ name: "test01",
18
+ age: 10,
19
+ role: 0
20
+ }
21
+ }, as: :json
22
+ end
23
+
24
+ assert_response 201
25
+ end
26
+
27
+ test "should show person" do
28
+ get person_url(@person), as: :json
29
+ assert_response :success
30
+ end
31
+
32
+ test "should update person" do
33
+ patch person_url(@person), params: {
34
+ people: {
35
+ name: "test01",
36
+ age: 10,
37
+ role: 0
38
+ }
39
+ }, as: :json
40
+ assert_response 200
41
+ end
42
+
43
+ test "should destroy person" do
44
+ assert_difference('Person.count', -1) do
45
+ delete person_url(@person), as: :json
46
+ end
47
+
48
+ assert_response 204
49
+ end
50
+ end
File without changes
@@ -0,0 +1,10 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one:
8
+ name: book1
9
+ label: test-laebl
10
+ value: 1000
File without changes
@@ -0,0 +1,10 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one:
8
+ name: test
9
+ age: 0
10
+ role: 0
File without changes
@@ -0,0 +1,10 @@
1
+ ENV['RAILS_ENV'] ||= 'test'
2
+ require_relative '../config/environment'
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
7
+ fixtures :all
8
+
9
+ # Add more helper methods to be used by all tests here...
10
+ end
File without changes
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "../yamls/parameters"
4
+
5
+ module Yamls
6
+ module Support
7
+ module Parameters
8
+ extend ActiveSupport::Concern
9
+
10
+ def yamls
11
+ Yamls::Parameters.new(
12
+ params,
13
+ model: controller_name.singularize,
14
+ action: action_name,
15
+ ).permit
16
+ end
17
+ end
18
+ end
19
+ 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.1.1"
4
+ VERSION = "0.1.2"
5
5
  end