active_model_serializers_binary 0.2.1 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +10 -8
  3. data/Gemfile +5 -20
  4. data/Gemfile.lock +33 -140
  5. data/MIT-LICENSE +1 -1
  6. data/Rakefile +2 -31
  7. data/active_model_serializers_binary.gemspec +2 -17
  8. data/bin/test +5 -0
  9. data/lib/active_model_serializers_binary/active_model_serializers_binary.rb +41 -14
  10. data/lib/active_model_serializers_binary/base_type.rb +0 -0
  11. data/lib/active_model_serializers_binary/data_types.rb +17 -6
  12. data/lib/active_model_serializers_binary/railtie.rb +4 -0
  13. data/lib/active_model_serializers_binary/version.rb +1 -1
  14. data/test/active_model_serializers_binary_test.rb +3 -3
  15. data/test/dummy/Rakefile +1 -1
  16. data/test/dummy/app/assets/stylesheets/application.css +1 -15
  17. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  18. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  19. data/test/dummy/app/controllers/application_controller.rb +0 -3
  20. data/test/dummy/app/jobs/application_job.rb +7 -0
  21. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  22. data/test/dummy/app/models/application_record.rb +3 -0
  23. data/test/dummy/app/models/product.rb +2 -1
  24. data/test/dummy/app/models/silo.rb +6 -0
  25. data/test/dummy/app/models/type.rb +0 -0
  26. data/test/dummy/app/views/layouts/application.html.erb +10 -9
  27. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  28. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  29. data/test/dummy/bin/rails +3 -3
  30. data/test/dummy/bin/rake +2 -2
  31. data/test/dummy/bin/setup +33 -0
  32. data/test/dummy/config/application.rb +12 -13
  33. data/test/dummy/config/boot.rb +3 -3
  34. data/test/dummy/config/cable.yml +10 -0
  35. data/test/dummy/config/database.yml +3 -3
  36. data/test/dummy/config/environment.rb +1 -1
  37. data/test/dummy/config/environments/development.rb +46 -15
  38. data/test/dummy/config/environments/production.rb +38 -33
  39. data/test/dummy/config/environments/test.rb +34 -13
  40. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +6 -2
  42. data/test/dummy/config/initializers/inflections.rb +4 -4
  43. data/test/dummy/config/initializers/permissions_policy.rb +11 -0
  44. data/test/dummy/config/locales/en.yml +13 -3
  45. data/test/dummy/config/puma.rb +43 -0
  46. data/test/dummy/config/routes.rb +3 -53
  47. data/test/dummy/config/storage.yml +34 -0
  48. data/test/dummy/config.ru +3 -1
  49. data/test/dummy/db/migrate/20170830125642_create_silos.rb +10 -0
  50. data/test/dummy/db/schema.rb +35 -0
  51. data/test/dummy/lib/test_parser.rb +2 -2
  52. data/test/dummy/public/404.html +6 -6
  53. data/test/dummy/public/422.html +6 -6
  54. data/test/dummy/public/500.html +6 -6
  55. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  56. data/test/dummy/public/apple-touch-icon.png +0 -0
  57. data/test/dummy/test/fixtures/silos.yml +9 -0
  58. data/test/dummy/test/models/silo_test.rb +7 -0
  59. data/test/test_helper.rb +7 -8
  60. metadata +50 -64
data/test/dummy/config.ru CHANGED
@@ -1,4 +1,6 @@
1
1
  # This file is used by Rack-based servers to start the application.
2
2
 
3
- require ::File.expand_path('../config/environment', __FILE__)
3
+ require_relative "config/environment"
4
+
4
5
  run Rails.application
6
+ Rails.application.load_server
@@ -0,0 +1,10 @@
1
+ class CreateSilos < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :silos do |t|
4
+ t.string :name
5
+ t.integer :product_id
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,35 @@
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: 20170830125642) do
14
+
15
+ create_table "productos", force: :cascade do |t|
16
+ t.integer "uid"
17
+ t.integer "silo"
18
+ t.string "nombre"
19
+ t.integer "total_acumulado"
20
+ t.boolean "bits1"
21
+ t.boolean "bits2"
22
+ t.float "ffloat"
23
+ t.string "variable"
24
+ t.datetime "created_at"
25
+ t.datetime "updated_at"
26
+ end
27
+
28
+ create_table "silos", force: :cascade do |t|
29
+ t.string "name"
30
+ t.integer "product_id"
31
+ t.datetime "created_at", null: false
32
+ t.datetime "updated_at", null: false
33
+ end
34
+
35
+ end
@@ -26,9 +26,9 @@ orig.uint32be = 1;
26
26
  orig.bitfield = 1;
27
27
  orig.float32 = 1;
28
28
  orig.float64 = 1;
29
- orig.char = "A";
29
+ orig.char = "Ñ";
30
30
  orig.bool = 1;
31
- orig.type = Type.new({product_id: 1, name: "ABCDEFGHIJKLMNOPQRST"})
31
+ #orig.type = Type.new({product_id: 1, name: "ABCDEFGHIJKLMNOPQRST"})
32
32
 
33
33
  puts 'Datos originales...'
34
34
  puts orig.inspect.green
@@ -4,7 +4,7 @@
4
4
  <title>The page you were looking for doesn't exist (404)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- body {
7
+ .rails-default-error-page {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- div.dialog {
15
+ .rails-default-error-page div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- div.dialog > div {
21
+ .rails-default-error-page div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- h1 {
34
+ .rails-default-error-page h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- div.dialog > p {
40
+ .rails-default-error-page div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body>
57
+ <body class="rails-default-error-page">
58
58
  <!-- This file lives in public/404.html -->
59
59
  <div class="dialog">
60
60
  <div>
@@ -4,7 +4,7 @@
4
4
  <title>The change you wanted was rejected (422)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- body {
7
+ .rails-default-error-page {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- div.dialog {
15
+ .rails-default-error-page div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- div.dialog > div {
21
+ .rails-default-error-page div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- h1 {
34
+ .rails-default-error-page h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- div.dialog > p {
40
+ .rails-default-error-page div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body>
57
+ <body class="rails-default-error-page">
58
58
  <!-- This file lives in public/422.html -->
59
59
  <div class="dialog">
60
60
  <div>
@@ -4,7 +4,7 @@
4
4
  <title>We're sorry, but something went wrong (500)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- body {
7
+ .rails-default-error-page {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- div.dialog {
15
+ .rails-default-error-page div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- div.dialog > div {
21
+ .rails-default-error-page div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- h1 {
34
+ .rails-default-error-page h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- div.dialog > p {
40
+ .rails-default-error-page div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body>
57
+ <body class="rails-default-error-page">
58
58
  <!-- This file lives in public/500.html -->
59
59
  <div class="dialog">
60
60
  <div>
File without changes
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ name: MyString
5
+ product_id:
6
+
7
+ two:
8
+ name: MyString
9
+ product_id:
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class SiloTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
data/test/test_helper.rb CHANGED
@@ -1,15 +1,14 @@
1
1
  # Configure Rails Environment
2
2
  ENV["RAILS_ENV"] = "test"
3
3
 
4
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
4
+ require_relative "../test/dummy/config/environment"
5
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../test/dummy/db/migrate", __dir__)]
5
6
  require "rails/test_help"
6
7
 
7
- Rails.backtrace_cleaner.remove_silencers!
8
-
9
- # Load support files
10
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
-
12
8
  # Load fixtures from the engine
13
- if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
- ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
9
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
10
+ ActiveSupport::TestCase.fixture_path = File.expand_path("fixtures", __dir__)
11
+ ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
12
+ ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
13
+ ActiveSupport::TestCase.fixtures :all
15
14
  end
metadata CHANGED
@@ -1,45 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_model_serializers_binary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ByS Sistemas de Control
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-18 00:00:00.000000000 Z
11
+ date: 2025-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.6'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.6'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '10.3'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '10.3'
41
- - !ruby/object:Gem::Dependency
42
- name: sqlite3
14
+ name: colorize
43
15
  requirement: !ruby/object:Gem::Requirement
44
16
  requirements:
45
17
  - - ">="
@@ -52,53 +24,26 @@ dependencies:
52
24
  - - ">="
53
25
  - !ruby/object:Gem::Version
54
26
  version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: rails
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '5.0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '5.0'
69
- - !ruby/object:Gem::Dependency
70
- name: colorize
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: '0.7'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: '0.7'
83
27
  - !ruby/object:Gem::Dependency
84
28
  name: activemodel
85
29
  requirement: !ruby/object:Gem::Requirement
86
30
  requirements:
87
- - - "~>"
31
+ - - ">="
88
32
  - !ruby/object:Gem::Version
89
33
  version: '5.0'
90
34
  type: :runtime
91
35
  prerelease: false
92
36
  version_requirements: !ruby/object:Gem::Requirement
93
37
  requirements:
94
- - - "~>"
38
+ - - ">="
95
39
  - !ruby/object:Gem::Version
96
40
  version: '5.0'
97
41
  description: active_model_serializers_binary is a declarative way to serialize/deserialize
98
42
  ActiveModel classes for raw data exchange.
99
43
  email:
100
44
  - info@bys-control.com.ar
101
- executables: []
45
+ executables:
46
+ - test
102
47
  extensions: []
103
48
  extra_rdoc_files: []
104
49
  files:
@@ -110,10 +55,12 @@ files:
110
55
  - README.rdoc
111
56
  - Rakefile
112
57
  - active_model_serializers_binary.gemspec
58
+ - bin/test
113
59
  - lib/active_model_serializers_binary.rb
114
60
  - lib/active_model_serializers_binary/active_model_serializers_binary.rb
115
61
  - lib/active_model_serializers_binary/base_type.rb
116
62
  - lib/active_model_serializers_binary/data_types.rb
63
+ - lib/active_model_serializers_binary/railtie.rb
117
64
  - lib/active_model_serializers_binary/version.rb
118
65
  - lib/tasks/active_model_serializers_binary_tasks.rake
119
66
  - test/active_model_serializers_binary_test.rb
@@ -122,21 +69,31 @@ files:
122
69
  - test/dummy/app/assets/images/.keep
123
70
  - test/dummy/app/assets/javascripts/application.js
124
71
  - test/dummy/app/assets/stylesheets/application.css
72
+ - test/dummy/app/channels/application_cable/channel.rb
73
+ - test/dummy/app/channels/application_cable/connection.rb
125
74
  - test/dummy/app/controllers/application_controller.rb
126
75
  - test/dummy/app/controllers/concerns/.keep
127
76
  - test/dummy/app/helpers/application_helper.rb
77
+ - test/dummy/app/jobs/application_job.rb
128
78
  - test/dummy/app/mailers/.keep
79
+ - test/dummy/app/mailers/application_mailer.rb
129
80
  - test/dummy/app/models/.keep
81
+ - test/dummy/app/models/application_record.rb
130
82
  - test/dummy/app/models/concerns/.keep
131
83
  - test/dummy/app/models/product.rb
84
+ - test/dummy/app/models/silo.rb
132
85
  - test/dummy/app/models/type.rb
133
86
  - test/dummy/app/views/layouts/application.html.erb
87
+ - test/dummy/app/views/layouts/mailer.html.erb
88
+ - test/dummy/app/views/layouts/mailer.text.erb
134
89
  - test/dummy/bin/bundle
135
90
  - test/dummy/bin/rails
136
91
  - test/dummy/bin/rake
92
+ - test/dummy/bin/setup
137
93
  - test/dummy/config.ru
138
94
  - test/dummy/config/application.rb
139
95
  - test/dummy/config/boot.rb
96
+ - test/dummy/config/cable.yml
140
97
  - test/dummy/config/database.yml
141
98
  - test/dummy/config/environment.rb
142
99
  - test/dummy/config/environments/development.rb
@@ -144,25 +101,35 @@ files:
144
101
  - test/dummy/config/environments/test.rb
145
102
  - test/dummy/config/initializers/assets.rb
146
103
  - test/dummy/config/initializers/backtrace_silencers.rb
104
+ - test/dummy/config/initializers/content_security_policy.rb
147
105
  - test/dummy/config/initializers/cookies_serializer.rb
148
106
  - test/dummy/config/initializers/filter_parameter_logging.rb
149
107
  - test/dummy/config/initializers/inflections.rb
150
108
  - test/dummy/config/initializers/mime_types.rb
109
+ - test/dummy/config/initializers/permissions_policy.rb
151
110
  - test/dummy/config/initializers/session_store.rb
152
111
  - test/dummy/config/initializers/wrap_parameters.rb
153
112
  - test/dummy/config/locales/en.yml
113
+ - test/dummy/config/puma.rb
154
114
  - test/dummy/config/routes.rb
155
115
  - test/dummy/config/secrets.yml
116
+ - test/dummy/config/storage.yml
117
+ - test/dummy/db/migrate/20170830125642_create_silos.rb
118
+ - test/dummy/db/schema.rb
156
119
  - test/dummy/lib/assets/.keep
157
120
  - test/dummy/lib/test_parser.rb
158
121
  - test/dummy/log/.keep
159
122
  - test/dummy/public/404.html
160
123
  - test/dummy/public/422.html
161
124
  - test/dummy/public/500.html
125
+ - test/dummy/public/apple-touch-icon-precomposed.png
126
+ - test/dummy/public/apple-touch-icon.png
162
127
  - test/dummy/public/favicon.ico
163
128
  - test/dummy/test/fixtures/productos.yml
129
+ - test/dummy/test/fixtures/silos.yml
164
130
  - test/dummy/test/fixtures/tipos.yml
165
131
  - test/dummy/test/models/producto_test.rb
132
+ - test/dummy/test/models/silo_test.rb
166
133
  - test/dummy/test/models/tipo_test.rb
167
134
  - test/test_helper.rb
168
135
  homepage: https://github.com/bys-control/active_model_serializers_binary
@@ -184,8 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
151
  - !ruby/object:Gem::Version
185
152
  version: '0'
186
153
  requirements: []
187
- rubyforge_project:
188
- rubygems_version: 2.4.8
154
+ rubygems_version: 3.3.7
189
155
  signing_key:
190
156
  specification_version: 4
191
157
  summary: Serialize models to/from binary format for raw data exchange
@@ -196,21 +162,31 @@ test_files:
196
162
  - test/dummy/app/assets/images/.keep
197
163
  - test/dummy/app/assets/javascripts/application.js
198
164
  - test/dummy/app/assets/stylesheets/application.css
165
+ - test/dummy/app/channels/application_cable/channel.rb
166
+ - test/dummy/app/channels/application_cable/connection.rb
199
167
  - test/dummy/app/controllers/application_controller.rb
200
168
  - test/dummy/app/controllers/concerns/.keep
201
169
  - test/dummy/app/helpers/application_helper.rb
170
+ - test/dummy/app/jobs/application_job.rb
202
171
  - test/dummy/app/mailers/.keep
172
+ - test/dummy/app/mailers/application_mailer.rb
203
173
  - test/dummy/app/models/.keep
174
+ - test/dummy/app/models/application_record.rb
204
175
  - test/dummy/app/models/concerns/.keep
205
176
  - test/dummy/app/models/product.rb
177
+ - test/dummy/app/models/silo.rb
206
178
  - test/dummy/app/models/type.rb
207
179
  - test/dummy/app/views/layouts/application.html.erb
180
+ - test/dummy/app/views/layouts/mailer.html.erb
181
+ - test/dummy/app/views/layouts/mailer.text.erb
208
182
  - test/dummy/bin/bundle
209
183
  - test/dummy/bin/rails
210
184
  - test/dummy/bin/rake
185
+ - test/dummy/bin/setup
211
186
  - test/dummy/config.ru
212
187
  - test/dummy/config/application.rb
213
188
  - test/dummy/config/boot.rb
189
+ - test/dummy/config/cable.yml
214
190
  - test/dummy/config/database.yml
215
191
  - test/dummy/config/environment.rb
216
192
  - test/dummy/config/environments/development.rb
@@ -218,24 +194,34 @@ test_files:
218
194
  - test/dummy/config/environments/test.rb
219
195
  - test/dummy/config/initializers/assets.rb
220
196
  - test/dummy/config/initializers/backtrace_silencers.rb
197
+ - test/dummy/config/initializers/content_security_policy.rb
221
198
  - test/dummy/config/initializers/cookies_serializer.rb
222
199
  - test/dummy/config/initializers/filter_parameter_logging.rb
223
200
  - test/dummy/config/initializers/inflections.rb
224
201
  - test/dummy/config/initializers/mime_types.rb
202
+ - test/dummy/config/initializers/permissions_policy.rb
225
203
  - test/dummy/config/initializers/session_store.rb
226
204
  - test/dummy/config/initializers/wrap_parameters.rb
227
205
  - test/dummy/config/locales/en.yml
206
+ - test/dummy/config/puma.rb
228
207
  - test/dummy/config/routes.rb
229
208
  - test/dummy/config/secrets.yml
209
+ - test/dummy/config/storage.yml
210
+ - test/dummy/db/migrate/20170830125642_create_silos.rb
211
+ - test/dummy/db/schema.rb
230
212
  - test/dummy/lib/assets/.keep
231
213
  - test/dummy/lib/test_parser.rb
232
214
  - test/dummy/log/.keep
233
215
  - test/dummy/public/404.html
234
216
  - test/dummy/public/422.html
235
217
  - test/dummy/public/500.html
218
+ - test/dummy/public/apple-touch-icon-precomposed.png
219
+ - test/dummy/public/apple-touch-icon.png
236
220
  - test/dummy/public/favicon.ico
237
221
  - test/dummy/test/fixtures/productos.yml
222
+ - test/dummy/test/fixtures/silos.yml
238
223
  - test/dummy/test/fixtures/tipos.yml
239
224
  - test/dummy/test/models/producto_test.rb
225
+ - test/dummy/test/models/silo_test.rb
240
226
  - test/dummy/test/models/tipo_test.rb
241
227
  - test/test_helper.rb