rows_controller 2.1.0 → 2.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 (113) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +8 -0
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +22 -0
  6. data/Appraisals +21 -0
  7. data/Gemfile +14 -0
  8. data/Gemfile.lock +169 -0
  9. data/MIT-LICENSE +1 -1
  10. data/NOTES +87 -0
  11. data/README.md +1 -1
  12. data/Rakefile +1 -19
  13. data/app/controllers/.keep +0 -0
  14. data/app/views/.keep +0 -0
  15. data/bin/rails +12 -0
  16. data/gemfiles/rails_4.2.0.gemfile +13 -0
  17. data/gemfiles/rails_4.2.4.gemfile +13 -0
  18. data/gemfiles/rails_5.1.gemfile +17 -0
  19. data/gemfiles/rails_5.2.gemfile +17 -0
  20. data/lib/rows/version.rb +1 -1
  21. data/rows_controller.gemspec +25 -0
  22. data/script/rails +8 -0
  23. data/test/.watchr +61 -0
  24. data/test/controllers/order/items_controller_test.rb +64 -0
  25. data/test/controllers/orders_test.rb +83 -0
  26. data/test/controllers/rows_controller_test.rb +52 -0
  27. data/test/controllers/rows_ext_controller_test.rb +25 -0
  28. data/test/dummy3/Rakefile +6 -0
  29. data/test/dummy3/app/controllers/application_controller.rb +3 -0
  30. data/test/dummy3/app/controllers/order/items_controller.rb +8 -0
  31. data/test/dummy3/app/controllers/orders_controller.rb +8 -0
  32. data/test/dummy3/app/models/order.rb +14 -0
  33. data/test/dummy3/app/models/order/item.rb +4 -0
  34. data/test/dummy3/app/views/layouts/application.html.erb +12 -0
  35. data/test/dummy3/app/views/order/items/_form.html.erb +8 -0
  36. data/test/dummy3/app/views/orders/_form.html.erb +8 -0
  37. data/test/dummy3/config.ru +4 -0
  38. data/test/dummy3/config/application.rb +58 -0
  39. data/test/dummy3/config/boot.rb +10 -0
  40. data/test/dummy3/config/database.yml +25 -0
  41. data/test/dummy3/config/environment.rb +5 -0
  42. data/test/dummy3/config/environments/development.rb +37 -0
  43. data/test/dummy3/config/environments/production.rb +67 -0
  44. data/test/dummy3/config/environments/test.rb +37 -0
  45. data/test/dummy3/config/initializers/secret_token.rb +7 -0
  46. data/test/dummy3/config/initializers/session_store.rb +8 -0
  47. data/test/dummy3/config/initializers/wrap_parameters.rb +14 -0
  48. data/test/dummy3/config/routes.rb +9 -0
  49. data/test/dummy3/db/migrate/001_create_orders.rb +9 -0
  50. data/test/dummy3/db/migrate/002_create_order_items.rb +9 -0
  51. data/test/dummy3/db/schema.rb +28 -0
  52. data/test/dummy3/script/rails +6 -0
  53. data/test/dummy4/Rakefile +6 -0
  54. data/test/dummy4/app/controllers/application_controller.rb +3 -0
  55. data/test/dummy4/app/controllers/order/items_controller.rb +8 -0
  56. data/test/dummy4/app/controllers/orders_controller.rb +8 -0
  57. data/test/dummy4/app/models/order.rb +13 -0
  58. data/test/dummy4/app/models/order/item.rb +2 -0
  59. data/test/dummy4/app/views/layouts/application.html.erb +12 -0
  60. data/test/dummy4/app/views/order/items/_form.html.erb +8 -0
  61. data/test/dummy4/app/views/orders/_form.html.erb +8 -0
  62. data/test/dummy4/bin/bundle +3 -0
  63. data/test/dummy4/bin/rails +4 -0
  64. data/test/dummy4/bin/rake +4 -0
  65. data/test/dummy4/bin/setup +29 -0
  66. data/test/dummy4/config.ru +4 -0
  67. data/test/dummy4/config/application.rb +25 -0
  68. data/test/dummy4/config/boot.rb +5 -0
  69. data/test/dummy4/config/database.yml +25 -0
  70. data/test/dummy4/config/environment.rb +5 -0
  71. data/test/dummy4/config/environments/development.rb +41 -0
  72. data/test/dummy4/config/environments/production.rb +79 -0
  73. data/test/dummy4/config/environments/test.rb +42 -0
  74. data/test/dummy4/config/initializers/cookies_serializer.rb +3 -0
  75. data/test/dummy4/config/initializers/filter_parameter_logging.rb +4 -0
  76. data/test/dummy4/config/initializers/session_store.rb +3 -0
  77. data/test/dummy4/config/initializers/wrap_parameters.rb +14 -0
  78. data/test/dummy4/config/routes.rb +9 -0
  79. data/test/dummy4/config/secrets.yml +22 -0
  80. data/test/dummy4/db/migrate/001_create_orders.rb +9 -0
  81. data/test/dummy4/db/migrate/002_create_order_items.rb +9 -0
  82. data/test/dummy4/db/schema.rb +28 -0
  83. data/test/dummy4/log/.keep +0 -0
  84. data/test/dummy5/Rakefile +6 -0
  85. data/test/dummy5/app/controllers/application_controller.rb +3 -0
  86. data/test/dummy5/app/controllers/order/items_controller.rb +8 -0
  87. data/test/dummy5/app/controllers/orders_controller.rb +8 -0
  88. data/test/dummy5/app/models/application_record.rb +3 -0
  89. data/test/dummy5/app/models/order.rb +12 -0
  90. data/test/dummy5/app/models/order/item.rb +2 -0
  91. data/test/dummy5/app/views/layouts/application.html.erb +12 -0
  92. data/test/dummy5/app/views/order/items/_form.html.erb +8 -0
  93. data/test/dummy5/app/views/orders/_form.html.erb +8 -0
  94. data/test/dummy5/bin/rails +9 -0
  95. data/test/dummy5/config.ru +5 -0
  96. data/test/dummy5/config/application.rb +19 -0
  97. data/test/dummy5/config/boot.rb +6 -0
  98. data/test/dummy5/config/database.yml +25 -0
  99. data/test/dummy5/config/environment.rb +5 -0
  100. data/test/dummy5/config/environments/test.rb +42 -0
  101. data/test/dummy5/config/routes.rb +9 -0
  102. data/test/dummy5/config/secrets.yml +32 -0
  103. data/test/dummy5/config/spring.rb +6 -0
  104. data/test/dummy5/db/migrate/001_create_orders.rb +9 -0
  105. data/test/dummy5/db/migrate/002_create_order_items.rb +9 -0
  106. data/test/dummy5/db/schema.rb +27 -0
  107. data/test/dummy5/log/.keep +0 -0
  108. data/test/fixtures/order/items.yml +5 -0
  109. data/test/fixtures/orders.yml +5 -0
  110. data/test/test_helper.rb +31 -0
  111. metadata +231 -12
  112. data/app/controllers/rows_controller.rb.bak +0 -88
  113. data/lib/rows/resources.rb.bak +0 -80
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
@@ -0,0 +1,12 @@
1
+ class Order < ApplicationRecord
2
+
3
+ before_save :err
4
+
5
+ protected
6
+ def err
7
+ if name == 'error'
8
+ throw :abort
9
+ end
10
+ end
11
+
12
+ end
@@ -0,0 +1,2 @@
1
+ class Order::Item < ApplicationRecord
2
+ end
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= csrf_meta_tags %>
6
+ </head>
7
+ <body>
8
+
9
+ <%= yield %>
10
+
11
+ </body>
12
+ </html>
@@ -0,0 +1,8 @@
1
+ <%
2
+ # This is a typical form
3
+ # Requires f
4
+ %>
5
+ <div class="field">
6
+ <%= f.label :price %><br />
7
+ <%= f.text_field :price %>
8
+ </div>
@@ -0,0 +1,8 @@
1
+ <%
2
+ # This is a typical form
3
+ # Requires f
4
+ %>
5
+ <div class="field">
6
+ <%= f.label :name %><br />
7
+ <%= f.text_field :name %>
8
+ </div>
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
7
+ APP_PATH = File.expand_path('../config/application', __dir__)
8
+ require_relative '../config/boot'
9
+ require 'rails/commands'
@@ -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,19 @@
1
+ require_relative 'boot'
2
+
3
+ require 'rails/all'
4
+
5
+ # Require the gems listed in Gemfile, including any gems
6
+ # you've limited to :test, :development, or :production.
7
+ Bundler.require(*Rails.groups)
8
+ require "rows_controller"
9
+
10
+ module Dummy
11
+ class Application < Rails::Application
12
+ # Initialize configuration defaults for originally generated Rails version.
13
+ config.load_defaults 5.1
14
+
15
+ # Settings in config/environments/* take precedence over those specified here.
16
+ # Application configuration should go into files in config/initializers
17
+ # -- all .rb files in that directory are automatically loaded.
18
+ end
19
+ end
@@ -0,0 +1,6 @@
1
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
2
+ #ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' # Set up gems listed in the Gemfile.
5
+
6
+ #$:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ #
7
+ default: &default
8
+ adapter: sqlite3
9
+ pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
10
+ timeout: 5000
11
+
12
+ development:
13
+ <<: *default
14
+ database: db/development.sqlite3
15
+
16
+ # Warning: The database defined as "test" will be erased and
17
+ # re-generated from your development database when you run "rake".
18
+ # Do not set this db to the same as development or production.
19
+ test:
20
+ <<: *default
21
+ database: db/test.sqlite3
22
+
23
+ production:
24
+ <<: *default
25
+ database: db/production.sqlite3
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require_relative 'application'
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,42 @@
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.seconds.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
+ config.action_mailer.perform_caching = false
31
+
32
+ # Tell Action Mailer not to deliver emails to the real world.
33
+ # The :test delivery method accumulates sent emails in the
34
+ # ActionMailer::Base.deliveries array.
35
+ config.action_mailer.delivery_method = :test
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,9 @@
1
+ Rails.application.routes.draw do
2
+ resources :orders
3
+ namespace :order do
4
+ resources :items
5
+ end
6
+
7
+ put '/rows_ext/:id/copy', to: 'orders#copy'
8
+ delete '/rows_ext/multi_deletion', to: 'orders#multi_deletion'
9
+ end
@@ -0,0 +1,32 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rails secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ # Shared secrets are available across all environments.
14
+
15
+ # shared:
16
+ # api_key: a1B2c3D4e5F6
17
+
18
+ # Environmental secrets are only available for that specific environment.
19
+
20
+ development:
21
+ secret_key_base: f4208f2fad48e3185e5ce2765e41ecdb510140abf8ab0195a1a53c5428134993976e6ff6085f60962fe995e5f3472737b47502631952c857f2edeb79c2b69553
22
+
23
+ test:
24
+ secret_key_base: 7201ce8db0b2adba0baefcb61961112d97da542ae97768c2009db79d6c31643eb0df4425b319d8e095fcce7955b0241d77577223110ee5691829a0d683d3880e
25
+
26
+ # Do not keep production secrets in the unencrypted secrets file.
27
+ # Instead, either read values from the environment.
28
+ # Or, use `bin/rails secrets:setup` to configure encrypted secrets
29
+ # and move the `production:` environment over there.
30
+
31
+ production:
32
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -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,9 @@
1
+ class CreateOrders < ActiveRecord::Migration[5.1]
2
+ def change
3
+ create_table :orders do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreateOrderItems < ActiveRecord::Migration[5.1]
2
+ def change
3
+ create_table :order_items do |t|
4
+ t.string :price
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,27 @@
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: 2) do
14
+
15
+ create_table "order_items", force: :cascade do |t|
16
+ t.string "price"
17
+ t.datetime "created_at", null: false
18
+ t.datetime "updated_at", null: false
19
+ end
20
+
21
+ create_table "orders", force: :cascade do |t|
22
+ t.string "name"
23
+ t.datetime "created_at", null: false
24
+ t.datetime "updated_at", null: false
25
+ end
26
+
27
+ end
File without changes
@@ -0,0 +1,5 @@
1
+ one:
2
+ price: MyString
3
+
4
+ two:
5
+ price: MyString
@@ -0,0 +1,5 @@
1
+ one:
2
+ name: MyString
3
+
4
+ two:
5
+ name: MyString
@@ -0,0 +1,31 @@
1
+ #require 'simplecov'
2
+ #SimpleCov.start do
3
+ # add_filter 'test'
4
+ # command_name 'Minitest'
5
+ #end
6
+
7
+ # Configure Rails Environment
8
+ ENV["RAILS_ENV"] = "test"
9
+
10
+
11
+ rails_version = `rails -v`.strip
12
+ aster = '#' * 20
13
+ puts "#{aster} Testing Ruby #{RUBY_VERSION}; #{rails_version} #{aster}"
14
+
15
+ rails_version =~ /Rails (\d*)\./
16
+ dir = "dummy#{$1}"
17
+
18
+
19
+ require File.expand_path("../#{dir}/config/environment.rb", __FILE__)
20
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/#{dir}/db/migrate", __FILE__)]
21
+ require 'rails/test_help'
22
+
23
+ # Load support files
24
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
25
+
26
+ # Load fixtures from the engine
27
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
28
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
29
+ ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
30
+ ActiveSupport::TestCase.fixtures :all
31
+ end
metadata CHANGED
@@ -1,29 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rows_controller
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-13 00:00:00.000000000 Z
11
+ date: 2018-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: sqlite3
14
+ name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '1'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: appraisal
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2'
27
55
  description: YourController < RowsController ( < ApplicationController).
28
56
  email:
29
57
  - dittmar.krall@matique.de
@@ -31,12 +59,21 @@ executables: []
31
59
  extensions: []
32
60
  extra_rdoc_files: []
33
61
  files:
62
+ - ".gitignore"
63
+ - ".ruby-gemset"
64
+ - ".ruby-version"
65
+ - ".travis.yml"
66
+ - Appraisals
67
+ - Gemfile
68
+ - Gemfile.lock
34
69
  - MIT-LICENSE
70
+ - NOTES
35
71
  - README.md
36
72
  - Rakefile
73
+ - app/controllers/.keep
37
74
  - app/controllers/rows_controller.rb
38
- - app/controllers/rows_controller.rb.bak
39
75
  - app/controllers/rows_ext_controller.rb
76
+ - app/views/.keep
40
77
  - app/views/rows/_form.slim
41
78
  - app/views/rows/_list.slim
42
79
  - app/views/rows/_list_footer.slim
@@ -52,16 +89,110 @@ files:
52
89
  - app/views/rows/show.slim
53
90
  - app/views/shared/_error_explanation.slim
54
91
  - app/views/shared/_show_flash.slim
92
+ - bin/rails
93
+ - gemfiles/rails_4.2.0.gemfile
94
+ - gemfiles/rails_4.2.4.gemfile
95
+ - gemfiles/rails_5.1.gemfile
96
+ - gemfiles/rails_5.2.gemfile
55
97
  - lib/rows/engine.rb
56
98
  - lib/rows/locales/de.yml
57
99
  - lib/rows/locales/en.yml
58
100
  - lib/rows/model.rb
59
101
  - lib/rows/resources.rb
60
- - lib/rows/resources.rb.bak
61
102
  - lib/rows/utils.rb
62
103
  - lib/rows/version.rb
63
104
  - lib/rows_controller.rb
64
- homepage: https://github.com/matique/rows_controller
105
+ - rows_controller.gemspec
106
+ - script/rails
107
+ - test/.watchr
108
+ - test/controllers/order/items_controller_test.rb
109
+ - test/controllers/orders_test.rb
110
+ - test/controllers/rows_controller_test.rb
111
+ - test/controllers/rows_ext_controller_test.rb
112
+ - test/dummy3/Rakefile
113
+ - test/dummy3/app/controllers/application_controller.rb
114
+ - test/dummy3/app/controllers/order/items_controller.rb
115
+ - test/dummy3/app/controllers/orders_controller.rb
116
+ - test/dummy3/app/models/order.rb
117
+ - test/dummy3/app/models/order/item.rb
118
+ - test/dummy3/app/views/layouts/application.html.erb
119
+ - test/dummy3/app/views/order/items/_form.html.erb
120
+ - test/dummy3/app/views/orders/_form.html.erb
121
+ - test/dummy3/config.ru
122
+ - test/dummy3/config/application.rb
123
+ - test/dummy3/config/boot.rb
124
+ - test/dummy3/config/database.yml
125
+ - test/dummy3/config/environment.rb
126
+ - test/dummy3/config/environments/development.rb
127
+ - test/dummy3/config/environments/production.rb
128
+ - test/dummy3/config/environments/test.rb
129
+ - test/dummy3/config/initializers/secret_token.rb
130
+ - test/dummy3/config/initializers/session_store.rb
131
+ - test/dummy3/config/initializers/wrap_parameters.rb
132
+ - test/dummy3/config/routes.rb
133
+ - test/dummy3/db/migrate/001_create_orders.rb
134
+ - test/dummy3/db/migrate/002_create_order_items.rb
135
+ - test/dummy3/db/schema.rb
136
+ - test/dummy3/script/rails
137
+ - test/dummy4/Rakefile
138
+ - test/dummy4/app/controllers/application_controller.rb
139
+ - test/dummy4/app/controllers/order/items_controller.rb
140
+ - test/dummy4/app/controllers/orders_controller.rb
141
+ - test/dummy4/app/models/order.rb
142
+ - test/dummy4/app/models/order/item.rb
143
+ - test/dummy4/app/views/layouts/application.html.erb
144
+ - test/dummy4/app/views/order/items/_form.html.erb
145
+ - test/dummy4/app/views/orders/_form.html.erb
146
+ - test/dummy4/bin/bundle
147
+ - test/dummy4/bin/rails
148
+ - test/dummy4/bin/rake
149
+ - test/dummy4/bin/setup
150
+ - test/dummy4/config.ru
151
+ - test/dummy4/config/application.rb
152
+ - test/dummy4/config/boot.rb
153
+ - test/dummy4/config/database.yml
154
+ - test/dummy4/config/environment.rb
155
+ - test/dummy4/config/environments/development.rb
156
+ - test/dummy4/config/environments/production.rb
157
+ - test/dummy4/config/environments/test.rb
158
+ - test/dummy4/config/initializers/cookies_serializer.rb
159
+ - test/dummy4/config/initializers/filter_parameter_logging.rb
160
+ - test/dummy4/config/initializers/session_store.rb
161
+ - test/dummy4/config/initializers/wrap_parameters.rb
162
+ - test/dummy4/config/routes.rb
163
+ - test/dummy4/config/secrets.yml
164
+ - test/dummy4/db/migrate/001_create_orders.rb
165
+ - test/dummy4/db/migrate/002_create_order_items.rb
166
+ - test/dummy4/db/schema.rb
167
+ - test/dummy4/log/.keep
168
+ - test/dummy5/Rakefile
169
+ - test/dummy5/app/controllers/application_controller.rb
170
+ - test/dummy5/app/controllers/order/items_controller.rb
171
+ - test/dummy5/app/controllers/orders_controller.rb
172
+ - test/dummy5/app/models/application_record.rb
173
+ - test/dummy5/app/models/order.rb
174
+ - test/dummy5/app/models/order/item.rb
175
+ - test/dummy5/app/views/layouts/application.html.erb
176
+ - test/dummy5/app/views/order/items/_form.html.erb
177
+ - test/dummy5/app/views/orders/_form.html.erb
178
+ - test/dummy5/bin/rails
179
+ - test/dummy5/config.ru
180
+ - test/dummy5/config/application.rb
181
+ - test/dummy5/config/boot.rb
182
+ - test/dummy5/config/database.yml
183
+ - test/dummy5/config/environment.rb
184
+ - test/dummy5/config/environments/test.rb
185
+ - test/dummy5/config/routes.rb
186
+ - test/dummy5/config/secrets.yml
187
+ - test/dummy5/config/spring.rb
188
+ - test/dummy5/db/migrate/001_create_orders.rb
189
+ - test/dummy5/db/migrate/002_create_order_items.rb
190
+ - test/dummy5/db/schema.rb
191
+ - test/dummy5/log/.keep
192
+ - test/fixtures/order/items.yml
193
+ - test/fixtures/orders.yml
194
+ - test/test_helper.rb
195
+ homepage: http://matique.de
65
196
  licenses:
66
197
  - MIT
67
198
  metadata: {}
@@ -81,8 +212,96 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
212
  version: '0'
82
213
  requirements: []
83
214
  rubyforge_project:
84
- rubygems_version: 2.6.12
215
+ rubygems_version: 2.7.6
85
216
  signing_key:
86
217
  specification_version: 4
87
218
  summary: RowsController DRYs your controllers.
88
- test_files: []
219
+ test_files:
220
+ - test/.watchr
221
+ - test/controllers/order/items_controller_test.rb
222
+ - test/controllers/orders_test.rb
223
+ - test/controllers/rows_controller_test.rb
224
+ - test/controllers/rows_ext_controller_test.rb
225
+ - test/dummy3/Rakefile
226
+ - test/dummy3/app/controllers/application_controller.rb
227
+ - test/dummy3/app/controllers/order/items_controller.rb
228
+ - test/dummy3/app/controllers/orders_controller.rb
229
+ - test/dummy3/app/models/order.rb
230
+ - test/dummy3/app/models/order/item.rb
231
+ - test/dummy3/app/views/layouts/application.html.erb
232
+ - test/dummy3/app/views/order/items/_form.html.erb
233
+ - test/dummy3/app/views/orders/_form.html.erb
234
+ - test/dummy3/config.ru
235
+ - test/dummy3/config/application.rb
236
+ - test/dummy3/config/boot.rb
237
+ - test/dummy3/config/database.yml
238
+ - test/dummy3/config/environment.rb
239
+ - test/dummy3/config/environments/development.rb
240
+ - test/dummy3/config/environments/production.rb
241
+ - test/dummy3/config/environments/test.rb
242
+ - test/dummy3/config/initializers/secret_token.rb
243
+ - test/dummy3/config/initializers/session_store.rb
244
+ - test/dummy3/config/initializers/wrap_parameters.rb
245
+ - test/dummy3/config/routes.rb
246
+ - test/dummy3/db/migrate/001_create_orders.rb
247
+ - test/dummy3/db/migrate/002_create_order_items.rb
248
+ - test/dummy3/db/schema.rb
249
+ - test/dummy3/script/rails
250
+ - test/dummy4/Rakefile
251
+ - test/dummy4/app/controllers/application_controller.rb
252
+ - test/dummy4/app/controllers/order/items_controller.rb
253
+ - test/dummy4/app/controllers/orders_controller.rb
254
+ - test/dummy4/app/models/order.rb
255
+ - test/dummy4/app/models/order/item.rb
256
+ - test/dummy4/app/views/layouts/application.html.erb
257
+ - test/dummy4/app/views/order/items/_form.html.erb
258
+ - test/dummy4/app/views/orders/_form.html.erb
259
+ - test/dummy4/bin/bundle
260
+ - test/dummy4/bin/rails
261
+ - test/dummy4/bin/rake
262
+ - test/dummy4/bin/setup
263
+ - test/dummy4/config.ru
264
+ - test/dummy4/config/application.rb
265
+ - test/dummy4/config/boot.rb
266
+ - test/dummy4/config/database.yml
267
+ - test/dummy4/config/environment.rb
268
+ - test/dummy4/config/environments/development.rb
269
+ - test/dummy4/config/environments/production.rb
270
+ - test/dummy4/config/environments/test.rb
271
+ - test/dummy4/config/initializers/cookies_serializer.rb
272
+ - test/dummy4/config/initializers/filter_parameter_logging.rb
273
+ - test/dummy4/config/initializers/session_store.rb
274
+ - test/dummy4/config/initializers/wrap_parameters.rb
275
+ - test/dummy4/config/routes.rb
276
+ - test/dummy4/config/secrets.yml
277
+ - test/dummy4/db/migrate/001_create_orders.rb
278
+ - test/dummy4/db/migrate/002_create_order_items.rb
279
+ - test/dummy4/db/schema.rb
280
+ - test/dummy4/log/.keep
281
+ - test/dummy5/Rakefile
282
+ - test/dummy5/app/controllers/application_controller.rb
283
+ - test/dummy5/app/controllers/order/items_controller.rb
284
+ - test/dummy5/app/controllers/orders_controller.rb
285
+ - test/dummy5/app/models/application_record.rb
286
+ - test/dummy5/app/models/order.rb
287
+ - test/dummy5/app/models/order/item.rb
288
+ - test/dummy5/app/views/layouts/application.html.erb
289
+ - test/dummy5/app/views/order/items/_form.html.erb
290
+ - test/dummy5/app/views/orders/_form.html.erb
291
+ - test/dummy5/bin/rails
292
+ - test/dummy5/config.ru
293
+ - test/dummy5/config/application.rb
294
+ - test/dummy5/config/boot.rb
295
+ - test/dummy5/config/database.yml
296
+ - test/dummy5/config/environment.rb
297
+ - test/dummy5/config/environments/test.rb
298
+ - test/dummy5/config/routes.rb
299
+ - test/dummy5/config/secrets.yml
300
+ - test/dummy5/config/spring.rb
301
+ - test/dummy5/db/migrate/001_create_orders.rb
302
+ - test/dummy5/db/migrate/002_create_order_items.rb
303
+ - test/dummy5/db/schema.rb
304
+ - test/dummy5/log/.keep
305
+ - test/fixtures/order/items.yml
306
+ - test/fixtures/orders.yml
307
+ - test/test_helper.rb