spud_inquiries 0.3.4 → 0.8.0

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 (51) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.markdown +3 -3
  3. data/Rakefile +40 -0
  4. data/app/views/contacts/show.html.erb +26 -23
  5. data/app/views/spud/admin/inquiries/index.html.erb +2 -2
  6. data/app/views/spud/admin/inquiry_forms/_form.html.erb +34 -22
  7. data/app/views/spud/admin/inquiry_forms/_spud_inquiry_form_field_fields.html.erb +40 -30
  8. data/app/views/spud/admin/inquiry_forms/edit.html.erb +4 -11
  9. data/app/views/spud/admin/inquiry_forms/index.html.erb +3 -3
  10. data/app/views/spud/admin/inquiry_forms/new.html.erb +5 -9
  11. data/db/migrate/20120117133405_create_spud_inquiries.rb +8 -0
  12. data/db/migrate/20120117133412_create_spud_inquiry_fields.rb +13 -0
  13. data/db/migrate/20120121194439_create_spud_inquiry_forms.rb +9 -0
  14. data/db/migrate/20120121194447_create_spud_inquiry_form_fields.rb +12 -0
  15. data/db/migrate/20120122173829_add_field_order_to_spud_inquiry_form_fields.rb +7 -0
  16. data/db/migrate/20120126132407_add_spud_inquiry_form_id_to_spud_inquiries.rb +11 -0
  17. data/db/migrate/20120126132522_add_recipients_to_spud_inquiry_forms.rb +6 -0
  18. data/db/migrate/20120127023335_add_url_name_to_spud_inquiry_forms.rb +6 -0
  19. data/lib/spud_inquiries/version.rb +5 -0
  20. data/lib/tasks/spud_inquiries_tasks.rake +4 -0
  21. data/test/dummy/README.rdoc +261 -0
  22. data/test/dummy/Rakefile +7 -0
  23. data/test/dummy/app/assets/javascripts/application.js +15 -0
  24. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  25. data/test/dummy/app/controllers/application_controller.rb +3 -0
  26. data/test/dummy/app/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/{config → test/dummy/config}/application.rb +15 -7
  29. data/test/dummy/config/boot.rb +10 -0
  30. data/test/dummy/config/database.yml +37 -0
  31. data/test/dummy/config/environment.rb +5 -0
  32. data/test/dummy/config/environments/development.rb +37 -0
  33. data/test/dummy/config/environments/production.rb +67 -0
  34. data/test/dummy/config/environments/test.rb +37 -0
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/test/dummy/config/initializers/inflections.rb +15 -0
  37. data/test/dummy/config/initializers/mime_types.rb +5 -0
  38. data/test/dummy/config/initializers/secret_token.rb +7 -0
  39. data/test/dummy/config/initializers/session_store.rb +8 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +5 -0
  42. data/test/dummy/config/routes.rb +4 -0
  43. data/test/dummy/config.ru +4 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +25 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/test_helper.rb +10 -0
  50. metadata +170 -15
  51. data/config/boot.rb +0 -6
@@ -0,0 +1,67 @@
1
+ Dummy::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
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to Rails.root.join("public/assets")
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::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
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ 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,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
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
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'fb76a222309e016baa1ff022aff3bebaef7dae55732221586c26774728ebe664624f5a72d7a74c89902c8d4762456c676fd45d1fb1745e3bcd22552e7da0187e'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -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
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount SpudInquiries::Engine => "/spud_inquiries"
4
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,10 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spud_inquiries
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.8.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,25 +9,106 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-02-29 00:00:00.000000000 Z
12
+ date: 2012-03-27 00:00:00.000000000 Z
13
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &70218063772000 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70218063772000
14
25
  - !ruby/object:Gem::Dependency
15
26
  name: spud_core
16
- requirement: &70192938617000 !ruby/object:Gem::Requirement
27
+ requirement: &70218063771480 !ruby/object:Gem::Requirement
17
28
  none: false
18
29
  requirements:
19
30
  - - ! '>='
20
31
  - !ruby/object:Gem::Version
21
- version: 0.5.3
32
+ version: 0.8.0
33
+ - - <
34
+ - !ruby/object:Gem::Version
35
+ version: 0.9.0
22
36
  type: :runtime
23
37
  prerelease: false
24
- version_requirements: *70192938617000
25
- description:
26
- email: destes@redwindsw.com
38
+ version_requirements: *70218063771480
39
+ - !ruby/object:Gem::Dependency
40
+ name: mysql2
41
+ requirement: &70218063770840 !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: *70218063770840
50
+ - !ruby/object:Gem::Dependency
51
+ name: rspec
52
+ requirement: &70218063770380 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ type: :development
59
+ prerelease: false
60
+ version_requirements: *70218063770380
61
+ - !ruby/object:Gem::Dependency
62
+ name: rspec-rails
63
+ requirement: &70218063769960 !ruby/object:Gem::Requirement
64
+ none: false
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ type: :development
70
+ prerelease: false
71
+ version_requirements: *70218063769960
72
+ - !ruby/object:Gem::Dependency
73
+ name: factory_girl
74
+ requirement: &70218063769460 !ruby/object:Gem::Requirement
75
+ none: false
76
+ requirements:
77
+ - - =
78
+ - !ruby/object:Gem::Version
79
+ version: 2.5.0
80
+ type: :development
81
+ prerelease: false
82
+ version_requirements: *70218063769460
83
+ - !ruby/object:Gem::Dependency
84
+ name: mocha
85
+ requirement: &70218063768960 !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - =
89
+ - !ruby/object:Gem::Version
90
+ version: 0.10.3
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: *70218063768960
94
+ - !ruby/object:Gem::Dependency
95
+ name: database_cleaner
96
+ requirement: &70218063768500 !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - =
100
+ - !ruby/object:Gem::Version
101
+ version: 0.7.1
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: *70218063768500
105
+ description: This gem allows you to build forms for user submission and can send email
106
+ notifications when a form is filled out.
107
+ email:
108
+ - destes@redwindsw.com
27
109
  executables: []
28
110
  extensions: []
29
- extra_rdoc_files:
30
- - README.markdown
111
+ extra_rdoc_files: []
31
112
  files:
32
113
  - app/assets/images/spud/admin/contacts_thumb.png
33
114
  - app/assets/javascripts/spud/admin/inquiries.js
@@ -56,14 +137,53 @@ files:
56
137
  - app/views/spud/inquiries/sitemaps/show.xml.builder
57
138
  - app/views/spud/inquiry_mailer/inquiry_notification.html.erb
58
139
  - app/views/spud/inquiry_mailer/inquiry_notification.text.erb
59
- - config/application.rb
60
- - config/boot.rb
61
140
  - config/routes.rb
62
- - lib/spud_inquiries.rb
141
+ - db/migrate/20120117133405_create_spud_inquiries.rb
142
+ - db/migrate/20120117133412_create_spud_inquiry_fields.rb
143
+ - db/migrate/20120121194439_create_spud_inquiry_forms.rb
144
+ - db/migrate/20120121194447_create_spud_inquiry_form_fields.rb
145
+ - db/migrate/20120122173829_add_field_order_to_spud_inquiry_form_fields.rb
146
+ - db/migrate/20120126132407_add_spud_inquiry_form_id_to_spud_inquiries.rb
147
+ - db/migrate/20120126132522_add_recipients_to_spud_inquiry_forms.rb
148
+ - db/migrate/20120127023335_add_url_name_to_spud_inquiry_forms.rb
63
149
  - lib/spud_inquiries/configuration.rb
64
150
  - lib/spud_inquiries/engine.rb
151
+ - lib/spud_inquiries/version.rb
152
+ - lib/spud_inquiries.rb
153
+ - lib/tasks/spud_inquiries_tasks.rake
154
+ - MIT-LICENSE
155
+ - Rakefile
65
156
  - README.markdown
66
- homepage:
157
+ - test/dummy/app/assets/javascripts/application.js
158
+ - test/dummy/app/assets/stylesheets/application.css
159
+ - test/dummy/app/controllers/application_controller.rb
160
+ - test/dummy/app/helpers/application_helper.rb
161
+ - test/dummy/app/views/layouts/application.html.erb
162
+ - test/dummy/config/application.rb
163
+ - test/dummy/config/boot.rb
164
+ - test/dummy/config/database.yml
165
+ - test/dummy/config/environment.rb
166
+ - test/dummy/config/environments/development.rb
167
+ - test/dummy/config/environments/production.rb
168
+ - test/dummy/config/environments/test.rb
169
+ - test/dummy/config/initializers/backtrace_silencers.rb
170
+ - test/dummy/config/initializers/inflections.rb
171
+ - test/dummy/config/initializers/mime_types.rb
172
+ - test/dummy/config/initializers/secret_token.rb
173
+ - test/dummy/config/initializers/session_store.rb
174
+ - test/dummy/config/initializers/wrap_parameters.rb
175
+ - test/dummy/config/locales/en.yml
176
+ - test/dummy/config/routes.rb
177
+ - test/dummy/config.ru
178
+ - test/dummy/public/404.html
179
+ - test/dummy/public/422.html
180
+ - test/dummy/public/500.html
181
+ - test/dummy/public/favicon.ico
182
+ - test/dummy/Rakefile
183
+ - test/dummy/README.rdoc
184
+ - test/dummy/script/rails
185
+ - test/test_helper.rb
186
+ homepage: http://www.github.com/davydotcom/spud_inquiries
67
187
  licenses: []
68
188
  post_install_message:
69
189
  rdoc_options: []
@@ -75,16 +195,51 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
195
  - - ! '>='
76
196
  - !ruby/object:Gem::Version
77
197
  version: '0'
198
+ segments:
199
+ - 0
200
+ hash: -1985453994625785520
78
201
  required_rubygems_version: !ruby/object:Gem::Requirement
79
202
  none: false
80
203
  requirements:
81
204
  - - ! '>='
82
205
  - !ruby/object:Gem::Version
83
206
  version: '0'
207
+ segments:
208
+ - 0
209
+ hash: -1985453994625785520
84
210
  requirements: []
85
211
  rubyforge_project:
86
212
  rubygems_version: 1.8.15
87
213
  signing_key:
88
214
  specification_version: 3
89
- summary: Spud Inquiry/Contact Form Engine
90
- test_files: []
215
+ summary: Inquiry form builder and mailer for spud (Useful for Contact Forms).
216
+ test_files:
217
+ - test/dummy/app/assets/javascripts/application.js
218
+ - test/dummy/app/assets/stylesheets/application.css
219
+ - test/dummy/app/controllers/application_controller.rb
220
+ - test/dummy/app/helpers/application_helper.rb
221
+ - test/dummy/app/views/layouts/application.html.erb
222
+ - test/dummy/config/application.rb
223
+ - test/dummy/config/boot.rb
224
+ - test/dummy/config/database.yml
225
+ - test/dummy/config/environment.rb
226
+ - test/dummy/config/environments/development.rb
227
+ - test/dummy/config/environments/production.rb
228
+ - test/dummy/config/environments/test.rb
229
+ - test/dummy/config/initializers/backtrace_silencers.rb
230
+ - test/dummy/config/initializers/inflections.rb
231
+ - test/dummy/config/initializers/mime_types.rb
232
+ - test/dummy/config/initializers/secret_token.rb
233
+ - test/dummy/config/initializers/session_store.rb
234
+ - test/dummy/config/initializers/wrap_parameters.rb
235
+ - test/dummy/config/locales/en.yml
236
+ - test/dummy/config/routes.rb
237
+ - test/dummy/config.ru
238
+ - test/dummy/public/404.html
239
+ - test/dummy/public/422.html
240
+ - test/dummy/public/500.html
241
+ - test/dummy/public/favicon.ico
242
+ - test/dummy/Rakefile
243
+ - test/dummy/README.rdoc
244
+ - test/dummy/script/rails
245
+ - test/test_helper.rb