nostalgic 0.1.0 → 0.1.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 (74) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +33 -6
  3. data/app/assets/javascripts/nostalgic/application.js +13 -0
  4. data/app/assets/stylesheets/nostalgic/application.css +15 -0
  5. data/app/controllers/nostalgic/application_controller.rb +5 -0
  6. data/app/helpers/nostalgic/application_helper.rb +4 -0
  7. data/app/models/nostalgic/attr.rb +4 -0
  8. data/app/views/layouts/nostalgic/application.html.erb +14 -0
  9. data/config/routes.rb +2 -0
  10. data/db/migrate/20160807101438_create_nostalgic_attrs.rb +12 -0
  11. data/lib/nostalgic.rb +4 -2
  12. data/lib/nostalgic/engine.rb +5 -0
  13. data/lib/nostalgic/form_builder.rb +22 -0
  14. data/lib/nostalgic/nostalgic_for.rb +57 -0
  15. data/lib/nostalgic/railtie.rb +12 -0
  16. data/lib/nostalgic/version.rb +1 -1
  17. data/lib/tasks/nostalgic_tasks.rake +4 -0
  18. data/test/dummy/README.rdoc +28 -0
  19. data/test/dummy/Rakefile +6 -0
  20. data/test/dummy/app/assets/javascripts/application.js +13 -0
  21. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  22. data/test/dummy/app/controllers/application_controller.rb +5 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/models/user.rb +3 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/bin/bundle +3 -0
  27. data/test/dummy/bin/rails +4 -0
  28. data/test/dummy/bin/rake +4 -0
  29. data/test/dummy/bin/setup +29 -0
  30. data/test/dummy/config.ru +4 -0
  31. data/test/dummy/config/application.rb +26 -0
  32. data/test/dummy/config/boot.rb +5 -0
  33. data/test/dummy/config/database.yml +25 -0
  34. data/test/dummy/config/environment.rb +5 -0
  35. data/test/dummy/config/environments/development.rb +41 -0
  36. data/test/dummy/config/environments/production.rb +79 -0
  37. data/test/dummy/config/environments/test.rb +42 -0
  38. data/test/dummy/config/initializers/assets.rb +11 -0
  39. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  40. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  42. data/test/dummy/config/initializers/inflections.rb +16 -0
  43. data/test/dummy/config/initializers/mime_types.rb +4 -0
  44. data/test/dummy/config/initializers/session_store.rb +3 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/test/dummy/config/locales/en.yml +23 -0
  47. data/test/dummy/config/routes.rb +4 -0
  48. data/test/dummy/config/secrets.yml +22 -0
  49. data/test/dummy/db/development.sqlite3 +0 -0
  50. data/test/dummy/db/migrate/20160807103323_create_users.rb +9 -0
  51. data/test/dummy/db/schema.rb +33 -0
  52. data/test/dummy/db/test.sqlite3 +0 -0
  53. data/test/dummy/log/development.log +486 -0
  54. data/test/dummy/log/test.log +5603 -0
  55. data/test/dummy/public/404.html +67 -0
  56. data/test/dummy/public/422.html +67 -0
  57. data/test/dummy/public/500.html +66 -0
  58. data/test/dummy/public/favicon.ico +0 -0
  59. data/test/dummy/test/models/user_test.rb +44 -0
  60. data/test/fixtures/nostalgic/attrs.yml +21 -0
  61. data/test/fixtures/users.yml +4 -0
  62. data/test/integration/navigation_test.rb +8 -0
  63. data/test/models/nostalgic/attr_test.rb +11 -0
  64. data/test/nostalgic_test.rb +11 -0
  65. data/test/test_helper.rb +21 -0
  66. metadata +153 -18
  67. data/.gitignore +0 -1
  68. data/CODE_OF_CONDUCT.md +0 -49
  69. data/Gemfile +0 -4
  70. data/Gemfile.lock +0 -22
  71. data/LICENSE.txt +0 -21
  72. data/bin/console +0 -14
  73. data/bin/setup +0 -8
  74. data/nostalgic.gemspec +0 -32
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,44 @@
1
+ require 'test_helper'
2
+
3
+ class UserTest < ActiveSupport::TestCase
4
+
5
+ def test_tel
6
+ assert @user = User.first
7
+ assert_equal '222-123-4567', @user.tel
8
+
9
+ assert_raise ArgumentError do
10
+ @user.tel_at(nil)
11
+ end
12
+
13
+ assert_equal '111-123-4567', @user.tel_at(Date.today - 1.day)
14
+ assert_equal '222-123-4567', @user.tel_at(Date.today)
15
+ assert_equal '333-123-4567', @user.tel_at(Date.today + 1.day)
16
+ end
17
+
18
+ def test_save_tel
19
+ today = Date.today
20
+ assert @user = User.first
21
+ assert_not_equal '444-123-4567', @user.tel
22
+ assert_not_equal '444-123-4567', @user.tel_at(today)
23
+
24
+ @user.tel = '444-123-4567'
25
+ @user.tel_effective_at = today
26
+ assert @user.save
27
+ assert_equal '444-123-4567', @user.tel
28
+ assert_equal '444-123-4567', @user.tel_at(today)
29
+
30
+ @user.tel = '555-123-4567'
31
+ @user.tel_effective_at = today + 2.days
32
+ assert @user.save
33
+ assert_equal '555-123-4567', @user.tel
34
+ assert_equal '444-123-4567', @user.tel_at(today)
35
+ assert_equal '333-123-4567', @user.tel_at(today + 1.day)
36
+ assert_equal '555-123-4567', @user.tel_at(today + 2.day)
37
+ end
38
+
39
+ def test_tels
40
+ assert @user = User.first
41
+ assert @user.respond_to?(:tels)
42
+ assert_equal 3, @user.tels.size
43
+ end
44
+ end
@@ -0,0 +1,21 @@
1
+ 1:
2
+ id: 1
3
+ model_type: User
4
+ model_id: 1
5
+ name: tel
6
+ value: '111-123-4567'
7
+ effective_at: <%= Date.today - 1.month %>
8
+ 2:
9
+ id: 2
10
+ model_type: User
11
+ model_id: 1
12
+ name: tel
13
+ value: '222-123-4567'
14
+ effective_at: <%= Date.today %>
15
+ 3:
16
+ id: 3
17
+ model_type: User
18
+ model_id: 1
19
+ name: tel
20
+ value: '333-123-4567'
21
+ effective_at: <%= Date.today + 1.day %>
@@ -0,0 +1,4 @@
1
+ 1:
2
+ id: 1
3
+ email: test1@example.com
4
+ tel: 222-123-4567
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
8
+
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+
3
+ module Nostalgic
4
+ class AttrTest < ActiveSupport::TestCase
5
+
6
+ def test_nostalgic_model
7
+ na = Nostalgic::Attr.new
8
+ end
9
+
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+
3
+ class NostalgicTest < ActiveSupport::TestCase
4
+ def test_that_it_has_a_version_number
5
+ refute_nil ::Nostalgic::VERSION
6
+ end
7
+
8
+ def test_it_does_something_useful
9
+ assert_kind_of Module, Nostalgic
10
+ end
11
+ end
@@ -0,0 +1,21 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
6
+ ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
7
+ require "rails/test_help"
8
+
9
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
10
+ # to be shown.
11
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
12
+
13
+ # Load support files
14
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
15
+
16
+ # Load fixtures from the engine
17
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
18
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
19
+ ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
20
+ ActiveSupport::TestCase.fixtures :all
21
+ end
metadata CHANGED
@@ -1,15 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nostalgic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-07 00:00:00.000000000 Z
11
+ date: 2016-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.2.7
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 5.0.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: 4.2.7
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 5.0.0
13
33
  - !ruby/object:Gem::Dependency
14
34
  name: bundler
15
35
  requirement: !ruby/object:Gem::Requirement
@@ -24,6 +44,20 @@ dependencies:
24
44
  - - "~>"
25
45
  - !ruby/object:Gem::Version
26
46
  version: '1.12'
47
+ - !ruby/object:Gem::Dependency
48
+ name: minitest
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '5.0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '5.0'
27
61
  - !ruby/object:Gem::Dependency
28
62
  name: rake
29
63
  requirement: !ruby/object:Gem::Requirement
@@ -39,19 +73,19 @@ dependencies:
39
73
  - !ruby/object:Gem::Version
40
74
  version: '10.0'
41
75
  - !ruby/object:Gem::Dependency
42
- name: minitest
76
+ name: sqlite3
43
77
  requirement: !ruby/object:Gem::Requirement
44
78
  requirements:
45
- - - "~>"
79
+ - - ">="
46
80
  - !ruby/object:Gem::Version
47
- version: '5.0'
81
+ version: '0'
48
82
  type: :development
49
83
  prerelease: false
50
84
  version_requirements: !ruby/object:Gem::Requirement
51
85
  requirements:
52
- - - "~>"
86
+ - - ">="
53
87
  - !ruby/object:Gem::Version
54
- version: '5.0'
88
+ version: '0'
55
89
  description: column versioning utility
56
90
  email:
57
91
  - ichylinux@gmail.com
@@ -59,18 +93,71 @@ executables: []
59
93
  extensions: []
60
94
  extra_rdoc_files: []
61
95
  files:
62
- - ".gitignore"
63
- - CODE_OF_CONDUCT.md
64
- - Gemfile
65
- - Gemfile.lock
66
- - LICENSE.txt
67
96
  - README.md
68
97
  - Rakefile
69
- - bin/console
70
- - bin/setup
98
+ - app/assets/javascripts/nostalgic/application.js
99
+ - app/assets/stylesheets/nostalgic/application.css
100
+ - app/controllers/nostalgic/application_controller.rb
101
+ - app/helpers/nostalgic/application_helper.rb
102
+ - app/models/nostalgic/attr.rb
103
+ - app/views/layouts/nostalgic/application.html.erb
104
+ - config/routes.rb
105
+ - db/migrate/20160807101438_create_nostalgic_attrs.rb
71
106
  - lib/nostalgic.rb
107
+ - lib/nostalgic/engine.rb
108
+ - lib/nostalgic/form_builder.rb
109
+ - lib/nostalgic/nostalgic_for.rb
110
+ - lib/nostalgic/railtie.rb
72
111
  - lib/nostalgic/version.rb
73
- - nostalgic.gemspec
112
+ - lib/tasks/nostalgic_tasks.rake
113
+ - test/dummy/README.rdoc
114
+ - test/dummy/Rakefile
115
+ - test/dummy/app/assets/javascripts/application.js
116
+ - test/dummy/app/assets/stylesheets/application.css
117
+ - test/dummy/app/controllers/application_controller.rb
118
+ - test/dummy/app/helpers/application_helper.rb
119
+ - test/dummy/app/models/user.rb
120
+ - test/dummy/app/views/layouts/application.html.erb
121
+ - test/dummy/bin/bundle
122
+ - test/dummy/bin/rails
123
+ - test/dummy/bin/rake
124
+ - test/dummy/bin/setup
125
+ - test/dummy/config.ru
126
+ - test/dummy/config/application.rb
127
+ - test/dummy/config/boot.rb
128
+ - test/dummy/config/database.yml
129
+ - test/dummy/config/environment.rb
130
+ - test/dummy/config/environments/development.rb
131
+ - test/dummy/config/environments/production.rb
132
+ - test/dummy/config/environments/test.rb
133
+ - test/dummy/config/initializers/assets.rb
134
+ - test/dummy/config/initializers/backtrace_silencers.rb
135
+ - test/dummy/config/initializers/cookies_serializer.rb
136
+ - test/dummy/config/initializers/filter_parameter_logging.rb
137
+ - test/dummy/config/initializers/inflections.rb
138
+ - test/dummy/config/initializers/mime_types.rb
139
+ - test/dummy/config/initializers/session_store.rb
140
+ - test/dummy/config/initializers/wrap_parameters.rb
141
+ - test/dummy/config/locales/en.yml
142
+ - test/dummy/config/routes.rb
143
+ - test/dummy/config/secrets.yml
144
+ - test/dummy/db/development.sqlite3
145
+ - test/dummy/db/migrate/20160807103323_create_users.rb
146
+ - test/dummy/db/schema.rb
147
+ - test/dummy/db/test.sqlite3
148
+ - test/dummy/log/development.log
149
+ - test/dummy/log/test.log
150
+ - test/dummy/public/404.html
151
+ - test/dummy/public/422.html
152
+ - test/dummy/public/500.html
153
+ - test/dummy/public/favicon.ico
154
+ - test/dummy/test/models/user_test.rb
155
+ - test/fixtures/nostalgic/attrs.yml
156
+ - test/fixtures/users.yml
157
+ - test/integration/navigation_test.rb
158
+ - test/models/nostalgic/attr_test.rb
159
+ - test/nostalgic_test.rb
160
+ - test/test_helper.rb
74
161
  homepage: https://github.com/ichylinux/nostalgic
75
162
  licenses:
76
163
  - MIT
@@ -84,7 +171,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
84
171
  requirements:
85
172
  - - ">="
86
173
  - !ruby/object:Gem::Version
87
- version: '0'
174
+ version: 2.1.0
88
175
  required_rubygems_version: !ruby/object:Gem::Requirement
89
176
  requirements:
90
177
  - - ">="
@@ -96,4 +183,52 @@ rubygems_version: 2.6.4
96
183
  signing_key:
97
184
  specification_version: 4
98
185
  summary: column versioning utility
99
- test_files: []
186
+ test_files:
187
+ - test/test_helper.rb
188
+ - test/nostalgic_test.rb
189
+ - test/integration/navigation_test.rb
190
+ - test/dummy/README.rdoc
191
+ - test/dummy/Rakefile
192
+ - test/dummy/config.ru
193
+ - test/dummy/app/assets/javascripts/application.js
194
+ - test/dummy/app/assets/stylesheets/application.css
195
+ - test/dummy/app/controllers/application_controller.rb
196
+ - test/dummy/app/helpers/application_helper.rb
197
+ - test/dummy/app/views/layouts/application.html.erb
198
+ - test/dummy/app/models/user.rb
199
+ - test/dummy/bin/bundle
200
+ - test/dummy/bin/rails
201
+ - test/dummy/bin/rake
202
+ - test/dummy/bin/setup
203
+ - test/dummy/config/routes.rb
204
+ - test/dummy/config/application.rb
205
+ - test/dummy/config/environment.rb
206
+ - test/dummy/config/secrets.yml
207
+ - test/dummy/config/environments/development.rb
208
+ - test/dummy/config/environments/production.rb
209
+ - test/dummy/config/environments/test.rb
210
+ - test/dummy/config/initializers/assets.rb
211
+ - test/dummy/config/initializers/backtrace_silencers.rb
212
+ - test/dummy/config/initializers/cookies_serializer.rb
213
+ - test/dummy/config/initializers/filter_parameter_logging.rb
214
+ - test/dummy/config/initializers/inflections.rb
215
+ - test/dummy/config/initializers/mime_types.rb
216
+ - test/dummy/config/initializers/session_store.rb
217
+ - test/dummy/config/initializers/wrap_parameters.rb
218
+ - test/dummy/config/locales/en.yml
219
+ - test/dummy/config/boot.rb
220
+ - test/dummy/config/database.yml
221
+ - test/dummy/db/migrate/20160807103323_create_users.rb
222
+ - test/dummy/db/schema.rb
223
+ - test/dummy/db/development.sqlite3
224
+ - test/dummy/db/test.sqlite3
225
+ - test/dummy/log/test.log
226
+ - test/dummy/log/development.log
227
+ - test/dummy/public/404.html
228
+ - test/dummy/public/422.html
229
+ - test/dummy/public/500.html
230
+ - test/dummy/public/favicon.ico
231
+ - test/dummy/test/models/user_test.rb
232
+ - test/models/nostalgic/attr_test.rb
233
+ - test/fixtures/nostalgic/attrs.yml
234
+ - test/fixtures/users.yml