junctions 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/lib/junctions/brand_methods.rb +35 -0
  3. data/lib/junctions/engine.rb +127 -0
  4. data/lib/junctions/version.rb +3 -0
  5. data/lib/junctions.rb +1 -0
  6. data/test/dummy/README.rdoc +28 -0
  7. data/test/dummy/Rakefile +6 -0
  8. data/test/dummy/app/assets/javascripts/application.js +13 -0
  9. data/test/dummy/app/assets/javascripts/easy_checks.js +2 -0
  10. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  11. data/test/dummy/app/assets/stylesheets/easy_checks.css +4 -0
  12. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  13. data/test/dummy/app/controllers/application_controller.rb +5 -0
  14. data/test/dummy/app/controllers/easy_checks_controller.rb +58 -0
  15. data/test/dummy/app/helpers/application_helper.rb +2 -0
  16. data/test/dummy/app/helpers/easy_checks_helper.rb +2 -0
  17. data/test/dummy/app/models/easy_check.rb +2 -0
  18. data/test/dummy/app/views/easy_checks/_form.html.erb +17 -0
  19. data/test/dummy/app/views/easy_checks/edit.html.erb +6 -0
  20. data/test/dummy/app/views/easy_checks/index.html.erb +25 -0
  21. data/test/dummy/app/views/easy_checks/new.html.erb +5 -0
  22. data/test/dummy/app/views/easy_checks/show.html.erb +4 -0
  23. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  24. data/test/dummy/bin/bundle +3 -0
  25. data/test/dummy/bin/rails +4 -0
  26. data/test/dummy/bin/rake +4 -0
  27. data/test/dummy/bin/setup +29 -0
  28. data/test/dummy/config/application.rb +26 -0
  29. data/test/dummy/config/boot.rb +5 -0
  30. data/test/dummy/config/brands/databases/core/database.yml +50 -0
  31. data/test/dummy/config/brands/databases/dumdeedee/database.yml +50 -0
  32. data/test/dummy/config/brands/environments/core/development.rb +13 -0
  33. data/test/dummy/config/brands/environments/core/production.rb +77 -0
  34. data/test/dummy/config/brands/environments/core/test.rb +42 -0
  35. data/test/dummy/config/brands/environments/dumdeedee/development.rb +4 -0
  36. data/test/dummy/config/brands/environments/dumdeedee/production.rb +77 -0
  37. data/test/dummy/config/brands/environments/dumdeedee/test.rb +42 -0
  38. data/test/dummy/config/database.yml +50 -0
  39. data/test/dummy/config/environment.rb +5 -0
  40. data/test/dummy/config/environments/development.rb +41 -0
  41. data/test/dummy/config/environments/production.rb +77 -0
  42. data/test/dummy/config/environments/test.rb +42 -0
  43. data/test/dummy/config/initializers/assets.rb +11 -0
  44. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  46. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  47. data/test/dummy/config/initializers/inflections.rb +16 -0
  48. data/test/dummy/config/initializers/mime_types.rb +4 -0
  49. data/test/dummy/config/initializers/session_store.rb +3 -0
  50. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/dummy/config/locales/en.yml +23 -0
  52. data/test/dummy/config/routes.rb +7 -0
  53. data/test/dummy/config/secrets.yml +22 -0
  54. data/test/dummy/config.ru +4 -0
  55. data/test/dummy/db/migrate/20141118121139_create_easy_checks.rb +8 -0
  56. data/test/dummy/db/schema.rb +36 -0
  57. data/test/dummy/lib/brands/app/views/dumdeedee/easy_checks/index.html.erb +25 -0
  58. data/test/dummy/public/404.html +67 -0
  59. data/test/dummy/public/422.html +67 -0
  60. data/test/dummy/public/500.html +66 -0
  61. data/test/dummy/test/controllers/easy_checks_controller_test.rb +49 -0
  62. data/test/dummy/test/fixtures/easy_checks.yml +11 -0
  63. data/test/dummy/test/models/easy_check_test.rb +7 -0
  64. data/test/integration/navigation_test.rb +10 -0
  65. data/test/junctions_test.rb +7 -0
  66. data/test/lib/generators/junctions/model_generator_test.rb +36 -0
  67. data/test/test_helper.rb +17 -0
  68. metadata +200 -0
@@ -0,0 +1,25 @@
1
+ <p id="notice"><%= notice %></p>
2
+
3
+ <h1>Listing Branded Easy Checks</h1>
4
+
5
+ <table>
6
+ <thead>
7
+ <tr>
8
+ <th colspan="3"></th>
9
+ </tr>
10
+ </thead>
11
+
12
+ <tbody>
13
+ <% @easy_checks.each do |easy_check| %>
14
+ <tr>
15
+ <td><%= link_to 'Show', easy_check %></td>
16
+ <td><%= link_to 'Edit', edit_easy_check_path(easy_check) %></td>
17
+ <td><%= link_to 'Destroy', easy_check, method: :delete, data: { confirm: 'Are you sure?' } %></td>
18
+ </tr>
19
+ <% end %>
20
+ </tbody>
21
+ </table>
22
+
23
+ <br>
24
+
25
+ <%= link_to 'New Easy check', new_easy_check_path %>
@@ -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>
@@ -0,0 +1,49 @@
1
+ require 'test_helper'
2
+
3
+ class EasyChecksControllerTest < ActionController::TestCase
4
+ setup do
5
+ @easy_check = easy_checks(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get :index
10
+ assert_response :success
11
+ assert_not_nil assigns(:easy_checks)
12
+ end
13
+
14
+ test "should get new" do
15
+ get :new
16
+ assert_response :success
17
+ end
18
+
19
+ test "should create easy_check" do
20
+ assert_difference('EasyCheck.count') do
21
+ post :create, easy_check: { }
22
+ end
23
+
24
+ assert_redirected_to easy_check_path(assigns(:easy_check))
25
+ end
26
+
27
+ test "should show easy_check" do
28
+ get :show, id: @easy_check
29
+ assert_response :success
30
+ end
31
+
32
+ test "should get edit" do
33
+ get :edit, id: @easy_check
34
+ assert_response :success
35
+ end
36
+
37
+ test "should update easy_check" do
38
+ patch :update, id: @easy_check, easy_check: { }
39
+ assert_redirected_to easy_check_path(assigns(:easy_check))
40
+ end
41
+
42
+ test "should destroy easy_check" do
43
+ assert_difference('EasyCheck.count', -1) do
44
+ delete :destroy, id: @easy_check
45
+ end
46
+
47
+ assert_redirected_to easy_checks_path
48
+ end
49
+ end
@@ -0,0 +1,11 @@
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
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class EasyCheckTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class JunctionsTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Junctions
6
+ end
7
+ end
@@ -0,0 +1,36 @@
1
+ require 'test_helper'
2
+ require 'generators/junctions/model/model_generator'
3
+
4
+ module Junctions
5
+ class ModelGeneratorTest < Rails::Generators::TestCase
6
+ tests ModelGenerator
7
+ destination Rails.root.join('tmp/generators')
8
+ setup :prepare_destination
9
+
10
+ test 'it creates a model file' do
11
+ run_generator ['test']
12
+
13
+ assert_file 'app/models/test.rb', /class Test/
14
+ assert_file 'app/models/test.rb', /include Core::TestExtensions/
15
+ end
16
+
17
+ test 'it creates a model extension file in core folder' do
18
+ run_generator ['test']
19
+
20
+ assert_file 'app/models/core/test_extensions.rb', /module Core/
21
+ assert_file 'app/models/core/test_extensions.rb', /module TestExtensions/
22
+ end
23
+
24
+ test 'it creates a model extension folder' do
25
+ run_generator ['test']
26
+
27
+ assert_directory 'app/models/core/test/'
28
+ end
29
+
30
+ test 'it correctly camel cases the name' do
31
+ run_generator ['my_model']
32
+
33
+ assert_file 'app/models/my_model.rb', /class MyModel/
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,17 @@
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
+ Rails.backtrace_cleaner.remove_silencers!
10
+
11
+ # Load support files
12
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
13
+
14
+ # Load fixtures from the engine
15
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
16
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
17
+ end
metadata ADDED
@@ -0,0 +1,200 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: junctions
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Paul McKibbin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-04-18 00:00:00.000000000 Z
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: '5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Description of Junctions.
42
+ email:
43
+ - pmckibbin@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - lib/junctions.rb
49
+ - lib/junctions/brand_methods.rb
50
+ - lib/junctions/engine.rb
51
+ - lib/junctions/version.rb
52
+ - test/dummy/README.rdoc
53
+ - test/dummy/Rakefile
54
+ - test/dummy/app/assets/javascripts/application.js
55
+ - test/dummy/app/assets/javascripts/easy_checks.js
56
+ - test/dummy/app/assets/stylesheets/application.css
57
+ - test/dummy/app/assets/stylesheets/easy_checks.css
58
+ - test/dummy/app/assets/stylesheets/scaffold.css
59
+ - test/dummy/app/controllers/application_controller.rb
60
+ - test/dummy/app/controllers/easy_checks_controller.rb
61
+ - test/dummy/app/helpers/application_helper.rb
62
+ - test/dummy/app/helpers/easy_checks_helper.rb
63
+ - test/dummy/app/models/easy_check.rb
64
+ - test/dummy/app/views/easy_checks/_form.html.erb
65
+ - test/dummy/app/views/easy_checks/edit.html.erb
66
+ - test/dummy/app/views/easy_checks/index.html.erb
67
+ - test/dummy/app/views/easy_checks/new.html.erb
68
+ - test/dummy/app/views/easy_checks/show.html.erb
69
+ - test/dummy/app/views/layouts/application.html.erb
70
+ - test/dummy/bin/bundle
71
+ - test/dummy/bin/rails
72
+ - test/dummy/bin/rake
73
+ - test/dummy/bin/setup
74
+ - test/dummy/config.ru
75
+ - test/dummy/config/application.rb
76
+ - test/dummy/config/boot.rb
77
+ - test/dummy/config/brands/databases/core/database.yml
78
+ - test/dummy/config/brands/databases/dumdeedee/database.yml
79
+ - test/dummy/config/brands/environments/core/development.rb
80
+ - test/dummy/config/brands/environments/core/production.rb
81
+ - test/dummy/config/brands/environments/core/test.rb
82
+ - test/dummy/config/brands/environments/dumdeedee/development.rb
83
+ - test/dummy/config/brands/environments/dumdeedee/production.rb
84
+ - test/dummy/config/brands/environments/dumdeedee/test.rb
85
+ - test/dummy/config/database.yml
86
+ - test/dummy/config/environment.rb
87
+ - test/dummy/config/environments/development.rb
88
+ - test/dummy/config/environments/production.rb
89
+ - test/dummy/config/environments/test.rb
90
+ - test/dummy/config/initializers/assets.rb
91
+ - test/dummy/config/initializers/backtrace_silencers.rb
92
+ - test/dummy/config/initializers/cookies_serializer.rb
93
+ - test/dummy/config/initializers/filter_parameter_logging.rb
94
+ - test/dummy/config/initializers/inflections.rb
95
+ - test/dummy/config/initializers/mime_types.rb
96
+ - test/dummy/config/initializers/session_store.rb
97
+ - test/dummy/config/initializers/wrap_parameters.rb
98
+ - test/dummy/config/locales/en.yml
99
+ - test/dummy/config/routes.rb
100
+ - test/dummy/config/secrets.yml
101
+ - test/dummy/db/migrate/20141118121139_create_easy_checks.rb
102
+ - test/dummy/db/schema.rb
103
+ - test/dummy/lib/brands/app/views/dumdeedee/easy_checks/index.html.erb
104
+ - test/dummy/public/404.html
105
+ - test/dummy/public/422.html
106
+ - test/dummy/public/500.html
107
+ - test/dummy/test/controllers/easy_checks_controller_test.rb
108
+ - test/dummy/test/fixtures/easy_checks.yml
109
+ - test/dummy/test/models/easy_check_test.rb
110
+ - test/integration/navigation_test.rb
111
+ - test/junctions_test.rb
112
+ - test/lib/generators/junctions/model_generator_test.rb
113
+ - test/test_helper.rb
114
+ homepage: http://blackrat.org
115
+ licenses:
116
+ - MIT
117
+ metadata: {}
118
+ post_install_message:
119
+ rdoc_options: []
120
+ require_paths:
121
+ - lib
122
+ required_ruby_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ required_rubygems_version: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ requirements: []
133
+ rubyforge_project:
134
+ rubygems_version: 2.7.6
135
+ signing_key:
136
+ specification_version: 4
137
+ summary: Summary of Junctions.
138
+ test_files:
139
+ - test/dummy/app/assets/javascripts/application.js
140
+ - test/dummy/app/assets/javascripts/easy_checks.js
141
+ - test/dummy/app/assets/stylesheets/application.css
142
+ - test/dummy/app/assets/stylesheets/easy_checks.css
143
+ - test/dummy/app/assets/stylesheets/scaffold.css
144
+ - test/dummy/app/controllers/application_controller.rb
145
+ - test/dummy/app/controllers/easy_checks_controller.rb
146
+ - test/dummy/app/helpers/application_helper.rb
147
+ - test/dummy/app/helpers/easy_checks_helper.rb
148
+ - test/dummy/app/models/easy_check.rb
149
+ - test/dummy/app/views/easy_checks/_form.html.erb
150
+ - test/dummy/app/views/easy_checks/edit.html.erb
151
+ - test/dummy/app/views/easy_checks/index.html.erb
152
+ - test/dummy/app/views/easy_checks/new.html.erb
153
+ - test/dummy/app/views/easy_checks/show.html.erb
154
+ - test/dummy/app/views/layouts/application.html.erb
155
+ - test/dummy/bin/bundle
156
+ - test/dummy/bin/rails
157
+ - test/dummy/bin/rake
158
+ - test/dummy/bin/setup
159
+ - test/dummy/config/application.rb
160
+ - test/dummy/config/boot.rb
161
+ - test/dummy/config/brands/databases/core/database.yml
162
+ - test/dummy/config/brands/databases/dumdeedee/database.yml
163
+ - test/dummy/config/brands/environments/core/development.rb
164
+ - test/dummy/config/brands/environments/core/production.rb
165
+ - test/dummy/config/brands/environments/core/test.rb
166
+ - test/dummy/config/brands/environments/dumdeedee/development.rb
167
+ - test/dummy/config/brands/environments/dumdeedee/production.rb
168
+ - test/dummy/config/brands/environments/dumdeedee/test.rb
169
+ - test/dummy/config/database.yml
170
+ - test/dummy/config/environment.rb
171
+ - test/dummy/config/environments/development.rb
172
+ - test/dummy/config/environments/production.rb
173
+ - test/dummy/config/environments/test.rb
174
+ - test/dummy/config/initializers/assets.rb
175
+ - test/dummy/config/initializers/backtrace_silencers.rb
176
+ - test/dummy/config/initializers/cookies_serializer.rb
177
+ - test/dummy/config/initializers/filter_parameter_logging.rb
178
+ - test/dummy/config/initializers/inflections.rb
179
+ - test/dummy/config/initializers/mime_types.rb
180
+ - test/dummy/config/initializers/session_store.rb
181
+ - test/dummy/config/initializers/wrap_parameters.rb
182
+ - test/dummy/config/locales/en.yml
183
+ - test/dummy/config/routes.rb
184
+ - test/dummy/config/secrets.yml
185
+ - test/dummy/config.ru
186
+ - test/dummy/db/migrate/20141118121139_create_easy_checks.rb
187
+ - test/dummy/db/schema.rb
188
+ - test/dummy/lib/brands/app/views/dumdeedee/easy_checks/index.html.erb
189
+ - test/dummy/public/404.html
190
+ - test/dummy/public/422.html
191
+ - test/dummy/public/500.html
192
+ - test/dummy/Rakefile
193
+ - test/dummy/README.rdoc
194
+ - test/dummy/test/controllers/easy_checks_controller_test.rb
195
+ - test/dummy/test/fixtures/easy_checks.yml
196
+ - test/dummy/test/models/easy_check_test.rb
197
+ - test/integration/navigation_test.rb
198
+ - test/junctions_test.rb
199
+ - test/lib/generators/junctions/model_generator_test.rb
200
+ - test/test_helper.rb