flash_messenger 0.0.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 (85) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +23 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +46 -0
  5. data/Gemfile +14 -0
  6. data/LICENSE.txt +20 -0
  7. data/README.rdoc +3 -0
  8. data/Rakefile +26 -0
  9. data/app/assets/images/flash_messenger/.keep +0 -0
  10. data/app/assets/stylesheets/flash_messenger/.keep +0 -0
  11. data/app/controllers/application_controller.rb +39 -0
  12. data/app/helpers/.keep +0 -0
  13. data/app/mailers/.keep +0 -0
  14. data/app/models/.keep +0 -0
  15. data/app/views/.keep +0 -0
  16. data/bin/rails +12 -0
  17. data/config/locales/en-US.yml +28 -0
  18. data/config/routes.rb +3 -0
  19. data/flash_messenger.gemspec +32 -0
  20. data/lib/flash_messenger.rb +9 -0
  21. data/lib/flash_messenger/controller_injection.rb +45 -0
  22. data/lib/flash_messenger/engine.rb +14 -0
  23. data/lib/flash_messenger/messages/base.rb +174 -0
  24. data/lib/flash_messenger/messages/nonpersistent.rb +9 -0
  25. data/lib/flash_messenger/messages/persistent.rb +9 -0
  26. data/lib/flash_messenger/messenger.rb +25 -0
  27. data/lib/flash_messenger/storage.rb +141 -0
  28. data/lib/flash_messenger/version.rb +3 -0
  29. data/lib/tasks/flash_messenger_tasks.rake +4 -0
  30. data/spec/dummy/README.rdoc +28 -0
  31. data/spec/dummy/Rakefile +6 -0
  32. data/spec/dummy/app/assets/images/.keep +0 -0
  33. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  34. data/spec/dummy/app/assets/javascripts/index.js +2 -0
  35. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  36. data/spec/dummy/app/assets/stylesheets/index.css +4 -0
  37. data/spec/dummy/app/controllers/application_controller.rb +7 -0
  38. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  39. data/spec/dummy/app/controllers/index_controller.rb +6 -0
  40. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  41. data/spec/dummy/app/helpers/index_helper.rb +2 -0
  42. data/spec/dummy/app/mailers/.keep +0 -0
  43. data/spec/dummy/app/models/.keep +0 -0
  44. data/spec/dummy/app/models/concerns/.keep +0 -0
  45. data/spec/dummy/app/views/index/index.html.erb +5 -0
  46. data/spec/dummy/app/views/layouts/application.html.erb +13 -0
  47. data/spec/dummy/bin/bundle +3 -0
  48. data/spec/dummy/bin/rails +4 -0
  49. data/spec/dummy/bin/rake +4 -0
  50. data/spec/dummy/config.ru +4 -0
  51. data/spec/dummy/config/application.rb +22 -0
  52. data/spec/dummy/config/boot.rb +5 -0
  53. data/spec/dummy/config/database.yml +25 -0
  54. data/spec/dummy/config/environment.rb +5 -0
  55. data/spec/dummy/config/environments/development.rb +37 -0
  56. data/spec/dummy/config/environments/production.rb +78 -0
  57. data/spec/dummy/config/environments/test.rb +39 -0
  58. data/spec/dummy/config/initializers/assets.rb +8 -0
  59. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  60. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  61. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  62. data/spec/dummy/config/initializers/inflections.rb +16 -0
  63. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  64. data/spec/dummy/config/initializers/session_store.rb +3 -0
  65. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  66. data/spec/dummy/config/locales/en.yml +23 -0
  67. data/spec/dummy/config/routes.rb +56 -0
  68. data/spec/dummy/config/secrets.yml +22 -0
  69. data/spec/dummy/lib/assets/.keep +0 -0
  70. data/spec/dummy/public/404.html +67 -0
  71. data/spec/dummy/public/422.html +67 -0
  72. data/spec/dummy/public/500.html +66 -0
  73. data/spec/dummy/public/favicon.ico +0 -0
  74. data/spec/dummy/spec/controllers/index_controller_spec.rb +5 -0
  75. data/spec/dummy/spec/helpers/index_helper_spec.rb +15 -0
  76. data/spec/examples/shared_examples.rb +27 -0
  77. data/spec/features/messages/base_spec.rb +102 -0
  78. data/spec/features/messages/nonpersistent_spec.rb +46 -0
  79. data/spec/features/messages/persistent_spec.rb +46 -0
  80. data/spec/features/messenger_spec.rb +96 -0
  81. data/spec/features/storage_spec.rb +152 -0
  82. data/spec/rails_helper.rb +50 -0
  83. data/spec/spec_helper.rb +92 -0
  84. data/spec/support/shared_examples.rb +26 -0
  85. metadata +309 -0
@@ -0,0 +1,50 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV["RAILS_ENV"] ||= 'test'
3
+ require 'spec_helper'
4
+ require File.expand_path("../dummy/config/environment", __FILE__)
5
+ require 'rspec/rails'
6
+ # Add additional requires below this line. Rails is not loaded until this point!
7
+
8
+ # Requires supporting ruby files with custom matchers and macros, etc, in
9
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
10
+ # run as spec files by default. This means that files in spec/support that end
11
+ # in _spec.rb will both be required and run as specs, causing the specs to be
12
+ # run twice. It is recommended that you do not name files matching this glob to
13
+ # end with _spec.rb. You can configure this pattern with the --pattern
14
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
15
+ #
16
+ # The following line is provided for convenience purposes. It has the downside
17
+ # of increasing the boot-up time by auto-requiring all files in the support
18
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
19
+ # require only the support files necessary.
20
+ #
21
+ # Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
22
+
23
+ # Checks for pending migrations before tests are run.
24
+ # If you are not using ActiveRecord, you can remove this line.
25
+ ActiveRecord::Migration.maintain_test_schema!
26
+
27
+ RSpec.configure do |config|
28
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
29
+ config.fixture_path = "#{::Rails.root}/spec/fixtures"
30
+
31
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
32
+ # examples within a transaction, remove the following line or assign false
33
+ # instead of true.
34
+ config.use_transactional_fixtures = true
35
+
36
+ # RSpec Rails can automatically mix in different behaviours to your tests
37
+ # based on their file location, for example enabling you to call `get` and
38
+ # `post` in specs under `spec/controllers`.
39
+ #
40
+ # You can disable this behaviour by removing the line below, and instead
41
+ # explicitly tag your specs with their type, e.g.:
42
+ #
43
+ # RSpec.describe UsersController, :type => :controller do
44
+ # # ...
45
+ # end
46
+ #
47
+ # The different available types are documented in the features, such as in
48
+ # https://relishapp.com/rspec/rspec-rails/docs
49
+ config.infer_spec_type_from_file_location!
50
+ end
@@ -0,0 +1,92 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause this
4
+ # file to always be loaded, without a need to explicitly require it in any files.
5
+ #
6
+ # Given that it is always loaded, you are encouraged to keep this file as
7
+ # light-weight as possible. Requiring heavyweight dependencies from this file
8
+ # will add to the boot time of your test suite on EVERY test run, even for an
9
+ # individual file that may not need all of that loaded. Instead, consider making
10
+ # a separate helper file that requires the additional dependencies and performs
11
+ # the additional setup, and require it from the spec files that actually need it.
12
+ #
13
+ # The `.rspec` file also contains a few flags that are not defaults but that
14
+ # users commonly want.
15
+ #
16
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
17
+
18
+ Dir[File.expand_path('../../spec/support/**/*.rb', __FILE__)].each { |f| require f }
19
+
20
+ require 'i18n'
21
+ I18n.load_path = Dir['config/locales/**/*.yml']
22
+ I18n.default_locale = :'en-US'
23
+
24
+ RSpec.configure do |config|
25
+ # rspec-expectations config goes here. You can use an alternate
26
+ # assertion/expectation library such as wrong or the stdlib/minitest
27
+ # assertions if you prefer.
28
+ config.expect_with :rspec do |expectations|
29
+ # This option will default to `true` in RSpec 4. It makes the `description`
30
+ # and `failure_message` of custom matchers include text for helper methods
31
+ # defined using `chain`, e.g.:
32
+ # be_bigger_than(2).and_smaller_than(4).description
33
+ # # => "be bigger than 2 and smaller than 4"
34
+ # ...rather than:
35
+ # # => "be bigger than 2"
36
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
37
+ end
38
+
39
+ # rspec-mocks config goes here. You can use an alternate test double
40
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
41
+ config.mock_with :rspec do |mocks|
42
+ # Prevents you from mocking or stubbing a method that does not exist on
43
+ # a real object. This is generally recommended, and will default to
44
+ # `true` in RSpec 4.
45
+ mocks.verify_partial_doubles = true
46
+ end
47
+
48
+ # The settings below are suggested to provide a good initial experience
49
+ # with RSpec, but feel free to customize to your heart's content.
50
+ =begin
51
+ # These two settings work together to allow you to limit a spec run
52
+ # to individual examples or groups you care about by tagging them with
53
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
54
+ # get run.
55
+ config.filter_run :focus
56
+ config.run_all_when_everything_filtered = true
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is recommended.
59
+ # For more details, see:
60
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
61
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
63
+ config.disable_monkey_patching!
64
+
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
73
+ end
74
+
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
92
+ end
@@ -0,0 +1,26 @@
1
+ # These shared example test that a subject's accessor method is:
2
+ #
3
+ # A) Publicly exposed
4
+ # B) Not nil
5
+ # c) Result "equal" to the `let` with the same name in context
6
+ #
7
+ # @param [Symbol] Method name as symbol
8
+ # @param [*args] Arbitrary arguments to pass to the `send` call
9
+ #
10
+ RSpec.shared_examples 'a public accessor method' do |target, *args|
11
+ let(:result) do
12
+ subject.public_send(target, *(args.map { |i| public_send(i) }))
13
+ end
14
+
15
+ let(:expected) do
16
+ public_send(target)
17
+ end
18
+
19
+ it "publicly exposes ##{target}" do
20
+ expect(result).not_to be_nil
21
+ end
22
+
23
+ it 'has expected values' do
24
+ expect(result).to eq(expected)
25
+ end
26
+ end
metadata ADDED
@@ -0,0 +1,309 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: flash_messenger
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Adam Eberlin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-01-26 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: '4.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: activesupport
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '4.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '4.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: factory_girl
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: fivemat
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: sqlite3
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: pry
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: Persistent flash messenger.
140
+ email:
141
+ - ae@adameberlin.com
142
+ executables:
143
+ - rails
144
+ extensions: []
145
+ extra_rdoc_files: []
146
+ files:
147
+ - ".gitignore"
148
+ - ".rspec"
149
+ - ".rubocop.yml"
150
+ - Gemfile
151
+ - LICENSE.txt
152
+ - README.rdoc
153
+ - Rakefile
154
+ - app/assets/images/flash_messenger/.keep
155
+ - app/assets/stylesheets/flash_messenger/.keep
156
+ - app/controllers/application_controller.rb
157
+ - app/helpers/.keep
158
+ - app/mailers/.keep
159
+ - app/models/.keep
160
+ - app/views/.keep
161
+ - bin/rails
162
+ - config/locales/en-US.yml
163
+ - config/routes.rb
164
+ - flash_messenger.gemspec
165
+ - lib/flash_messenger.rb
166
+ - lib/flash_messenger/controller_injection.rb
167
+ - lib/flash_messenger/engine.rb
168
+ - lib/flash_messenger/messages/base.rb
169
+ - lib/flash_messenger/messages/nonpersistent.rb
170
+ - lib/flash_messenger/messages/persistent.rb
171
+ - lib/flash_messenger/messenger.rb
172
+ - lib/flash_messenger/storage.rb
173
+ - lib/flash_messenger/version.rb
174
+ - lib/tasks/flash_messenger_tasks.rake
175
+ - spec/dummy/README.rdoc
176
+ - spec/dummy/Rakefile
177
+ - spec/dummy/app/assets/images/.keep
178
+ - spec/dummy/app/assets/javascripts/application.js
179
+ - spec/dummy/app/assets/javascripts/index.js
180
+ - spec/dummy/app/assets/stylesheets/application.css
181
+ - spec/dummy/app/assets/stylesheets/index.css
182
+ - spec/dummy/app/controllers/application_controller.rb
183
+ - spec/dummy/app/controllers/concerns/.keep
184
+ - spec/dummy/app/controllers/index_controller.rb
185
+ - spec/dummy/app/helpers/application_helper.rb
186
+ - spec/dummy/app/helpers/index_helper.rb
187
+ - spec/dummy/app/mailers/.keep
188
+ - spec/dummy/app/models/.keep
189
+ - spec/dummy/app/models/concerns/.keep
190
+ - spec/dummy/app/views/index/index.html.erb
191
+ - spec/dummy/app/views/layouts/application.html.erb
192
+ - spec/dummy/bin/bundle
193
+ - spec/dummy/bin/rails
194
+ - spec/dummy/bin/rake
195
+ - spec/dummy/config.ru
196
+ - spec/dummy/config/application.rb
197
+ - spec/dummy/config/boot.rb
198
+ - spec/dummy/config/database.yml
199
+ - spec/dummy/config/environment.rb
200
+ - spec/dummy/config/environments/development.rb
201
+ - spec/dummy/config/environments/production.rb
202
+ - spec/dummy/config/environments/test.rb
203
+ - spec/dummy/config/initializers/assets.rb
204
+ - spec/dummy/config/initializers/backtrace_silencers.rb
205
+ - spec/dummy/config/initializers/cookies_serializer.rb
206
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
207
+ - spec/dummy/config/initializers/inflections.rb
208
+ - spec/dummy/config/initializers/mime_types.rb
209
+ - spec/dummy/config/initializers/session_store.rb
210
+ - spec/dummy/config/initializers/wrap_parameters.rb
211
+ - spec/dummy/config/locales/en.yml
212
+ - spec/dummy/config/routes.rb
213
+ - spec/dummy/config/secrets.yml
214
+ - spec/dummy/lib/assets/.keep
215
+ - spec/dummy/public/404.html
216
+ - spec/dummy/public/422.html
217
+ - spec/dummy/public/500.html
218
+ - spec/dummy/public/favicon.ico
219
+ - spec/dummy/spec/controllers/index_controller_spec.rb
220
+ - spec/dummy/spec/helpers/index_helper_spec.rb
221
+ - spec/examples/shared_examples.rb
222
+ - spec/features/messages/base_spec.rb
223
+ - spec/features/messages/nonpersistent_spec.rb
224
+ - spec/features/messages/persistent_spec.rb
225
+ - spec/features/messenger_spec.rb
226
+ - spec/features/storage_spec.rb
227
+ - spec/rails_helper.rb
228
+ - spec/spec_helper.rb
229
+ - spec/support/shared_examples.rb
230
+ homepage: https://github.com/arkbot/flash_messenger
231
+ licenses:
232
+ - MIT
233
+ metadata: {}
234
+ post_install_message:
235
+ rdoc_options: []
236
+ require_paths:
237
+ - lib
238
+ required_ruby_version: !ruby/object:Gem::Requirement
239
+ requirements:
240
+ - - ">="
241
+ - !ruby/object:Gem::Version
242
+ version: 2.0.0
243
+ required_rubygems_version: !ruby/object:Gem::Requirement
244
+ requirements:
245
+ - - ">="
246
+ - !ruby/object:Gem::Version
247
+ version: '0'
248
+ requirements: []
249
+ rubyforge_project:
250
+ rubygems_version: 2.4.5.1
251
+ signing_key:
252
+ specification_version: 4
253
+ summary: Persistent flash messenger.
254
+ test_files:
255
+ - spec/dummy/README.rdoc
256
+ - spec/dummy/Rakefile
257
+ - spec/dummy/app/assets/images/.keep
258
+ - spec/dummy/app/assets/javascripts/application.js
259
+ - spec/dummy/app/assets/javascripts/index.js
260
+ - spec/dummy/app/assets/stylesheets/application.css
261
+ - spec/dummy/app/assets/stylesheets/index.css
262
+ - spec/dummy/app/controllers/application_controller.rb
263
+ - spec/dummy/app/controllers/concerns/.keep
264
+ - spec/dummy/app/controllers/index_controller.rb
265
+ - spec/dummy/app/helpers/application_helper.rb
266
+ - spec/dummy/app/helpers/index_helper.rb
267
+ - spec/dummy/app/mailers/.keep
268
+ - spec/dummy/app/models/.keep
269
+ - spec/dummy/app/models/concerns/.keep
270
+ - spec/dummy/app/views/index/index.html.erb
271
+ - spec/dummy/app/views/layouts/application.html.erb
272
+ - spec/dummy/bin/bundle
273
+ - spec/dummy/bin/rails
274
+ - spec/dummy/bin/rake
275
+ - spec/dummy/config.ru
276
+ - spec/dummy/config/application.rb
277
+ - spec/dummy/config/boot.rb
278
+ - spec/dummy/config/database.yml
279
+ - spec/dummy/config/environment.rb
280
+ - spec/dummy/config/environments/development.rb
281
+ - spec/dummy/config/environments/production.rb
282
+ - spec/dummy/config/environments/test.rb
283
+ - spec/dummy/config/initializers/assets.rb
284
+ - spec/dummy/config/initializers/backtrace_silencers.rb
285
+ - spec/dummy/config/initializers/cookies_serializer.rb
286
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
287
+ - spec/dummy/config/initializers/inflections.rb
288
+ - spec/dummy/config/initializers/mime_types.rb
289
+ - spec/dummy/config/initializers/session_store.rb
290
+ - spec/dummy/config/initializers/wrap_parameters.rb
291
+ - spec/dummy/config/locales/en.yml
292
+ - spec/dummy/config/routes.rb
293
+ - spec/dummy/config/secrets.yml
294
+ - spec/dummy/lib/assets/.keep
295
+ - spec/dummy/public/404.html
296
+ - spec/dummy/public/422.html
297
+ - spec/dummy/public/500.html
298
+ - spec/dummy/public/favicon.ico
299
+ - spec/dummy/spec/controllers/index_controller_spec.rb
300
+ - spec/dummy/spec/helpers/index_helper_spec.rb
301
+ - spec/examples/shared_examples.rb
302
+ - spec/features/messages/base_spec.rb
303
+ - spec/features/messages/nonpersistent_spec.rb
304
+ - spec/features/messages/persistent_spec.rb
305
+ - spec/features/messenger_spec.rb
306
+ - spec/features/storage_spec.rb
307
+ - spec/rails_helper.rb
308
+ - spec/spec_helper.rb
309
+ - spec/support/shared_examples.rb