glow 0.0.6 → 0.0.7

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 (35) hide show
  1. data/.gitignore +7 -0
  2. data/Gemfile +14 -0
  3. data/Gemfile.lock +97 -0
  4. data/glow.gemspec +29 -0
  5. data/lib/glow/engine.rb +4 -2
  6. data/lib/glow/railtie.rb +4 -2
  7. data/lib/glow/version.rb +1 -1
  8. data/src/glow.coffee +12 -0
  9. data/test/rails3/.rspec +1 -0
  10. data/test/rails3/Gemfile.lock +1 -1
  11. data/test/rails3/log/.gitkeep +0 -0
  12. data/test/rails3/spec/controllers/.flash_controller_spec.rb.swn +0 -0
  13. data/test/rails3/spec/controllers/.flash_controller_spec.rb.swo +0 -0
  14. data/test/rails31/.gitignore +5 -0
  15. data/test/rails31/Gemfile.lock +1 -1
  16. data/test/rails31/log/.gitkeep +0 -0
  17. data/test/rails31/spec/controllers/.flash_controller_spec.rb.swn +0 -0
  18. data/test/rails31/spec/controllers/.flash_controller_spec.rb.swo +0 -0
  19. metadata +49 -60
  20. data/test/rails3/log/development.log +0 -1629
  21. data/test/rails3/log/test.log +0 -1225
  22. data/test/rails31/log/development.log +0 -59
  23. data/test/rails31/log/test.log +0 -289
  24. data/test/rails31/tmp/cache/assets/CC6/400/sprockets%2Ffc6d386e5a58972d13920c9cd2528768 +0 -0
  25. data/test/rails31/tmp/cache/assets/CD8/F20/sprockets%2Fd66a691d6f63c00b6b0025ec732734c9 +0 -0
  26. data/test/rails31/tmp/cache/assets/CF0/DA0/sprockets%2Fd7d5b37686831d37c4dd75e645f5e016 +0 -0
  27. data/test/rails31/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  28. data/test/rails31/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  29. data/test/rails31/tmp/cache/assets/D5F/DC0/sprockets%2F3bdad2a5487de08b16ac12dcd8411538 +0 -0
  30. data/test/rails31/tmp/cache/assets/D61/A80/sprockets%2Fa4b21f72f1e092ec190a2fc0d679c4c3 +0 -0
  31. data/test/rails31/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  32. data/test/rails31/tmp/cache/assets/DA0/D40/sprockets%2Fa7b4ee1a4cf4cc742c0d968b2f40c779 +0 -0
  33. data/test/rails31/tmp/cache/assets/DB8/BB0/sprockets%2Fca4a6e5b550132e2e7e5ebd40dcc55a0 +0 -0
  34. data/test/rails31/tmp/cache/assets/DD8/AF0/sprockets%2F4297f5a02e59cff78bd076afd7b7faa1 +0 -0
  35. data/test/rails31/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
@@ -0,0 +1,7 @@
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ test/*/db/*.sqlite3
5
+ test/*/log/*.log
6
+ test/*/tmp/
7
+ *.swp
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Declare your gem's dependencies in glow.gemspec.
4
+ # Bundler will treat runtime dependencies like base dependencies, and
5
+ # development dependencies will be added by default to the :development group.
6
+ gemspec
7
+
8
+ # Declare any dependencies that are still in development here instead of in
9
+ # your gemspec. These might include edge Rails or gems from your path or
10
+ # Git. Remember to move these dependencies to your gemspec before releasing
11
+ # your gem to rubygems.org.
12
+
13
+ # To use debugger
14
+ # gem 'ruby-debug19', :require => 'ruby-debug'
@@ -0,0 +1,97 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ glow (0.0.7)
5
+ jquery-rails
6
+ rails (>= 3.0.0, < 3.2.0)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionmailer (3.1.0)
12
+ actionpack (= 3.1.0)
13
+ mail (~> 2.3.0)
14
+ actionpack (3.1.0)
15
+ activemodel (= 3.1.0)
16
+ activesupport (= 3.1.0)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ i18n (~> 0.6)
20
+ rack (~> 1.3.2)
21
+ rack-cache (~> 1.0.3)
22
+ rack-mount (~> 0.8.2)
23
+ rack-test (~> 0.6.1)
24
+ sprockets (~> 2.0.0)
25
+ activemodel (3.1.0)
26
+ activesupport (= 3.1.0)
27
+ bcrypt-ruby (~> 3.0.0)
28
+ builder (~> 3.0.0)
29
+ i18n (~> 0.6)
30
+ activerecord (3.1.0)
31
+ activemodel (= 3.1.0)
32
+ activesupport (= 3.1.0)
33
+ arel (~> 2.2.1)
34
+ tzinfo (~> 0.3.29)
35
+ activeresource (3.1.0)
36
+ activemodel (= 3.1.0)
37
+ activesupport (= 3.1.0)
38
+ activesupport (3.1.0)
39
+ multi_json (~> 1.0)
40
+ arel (2.2.1)
41
+ bcrypt-ruby (3.0.0)
42
+ builder (3.0.0)
43
+ erubis (2.7.0)
44
+ hike (1.2.1)
45
+ i18n (0.6.0)
46
+ jquery-rails (1.0.14)
47
+ railties (~> 3.0)
48
+ thor (~> 0.14)
49
+ mail (2.3.0)
50
+ i18n (>= 0.4.0)
51
+ mime-types (~> 1.16)
52
+ treetop (~> 1.4.8)
53
+ mime-types (1.16)
54
+ multi_json (1.0.3)
55
+ polyglot (0.3.2)
56
+ rack (1.3.2)
57
+ rack-cache (1.0.3)
58
+ rack (>= 0.4)
59
+ rack-mount (0.8.3)
60
+ rack (>= 1.0.0)
61
+ rack-ssl (1.3.2)
62
+ rack
63
+ rack-test (0.6.1)
64
+ rack (>= 1.0)
65
+ rails (3.1.0)
66
+ actionmailer (= 3.1.0)
67
+ actionpack (= 3.1.0)
68
+ activerecord (= 3.1.0)
69
+ activeresource (= 3.1.0)
70
+ activesupport (= 3.1.0)
71
+ bundler (~> 1.0)
72
+ railties (= 3.1.0)
73
+ railties (3.1.0)
74
+ actionpack (= 3.1.0)
75
+ activesupport (= 3.1.0)
76
+ rack-ssl (~> 1.3.2)
77
+ rake (>= 0.8.7)
78
+ rdoc (~> 3.4)
79
+ thor (~> 0.14.6)
80
+ rake (0.9.2)
81
+ rdoc (3.9.4)
82
+ sprockets (2.0.0)
83
+ hike (~> 1.2)
84
+ rack (~> 1.0)
85
+ tilt (!= 1.3.0, ~> 1.1)
86
+ thor (0.14.6)
87
+ tilt (1.3.3)
88
+ treetop (1.4.10)
89
+ polyglot
90
+ polyglot (>= 0.3.1)
91
+ tzinfo (0.3.29)
92
+
93
+ PLATFORMS
94
+ ruby
95
+
96
+ DEPENDENCIES
97
+ glow!
@@ -0,0 +1,29 @@
1
+ # encoding: utf-8
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+
4
+ # Maintain your gem's version:
5
+ require "glow/version"
6
+
7
+ # Describe your gem and declare its dependencies:
8
+ Gem::Specification.new do |s|
9
+ s.name = "glow"
10
+ s.version = Glow::VERSION
11
+ s.authors = ["Daniel Kirsch", "Klaus Fleerkötter"]
12
+ s.email = ["daniel.kirsch@zweitag.de"]
13
+ s.homepage = "https://github.com/zweitag/glow"
14
+ s.summary = "Javascript Flash Hash handling for Rails."
15
+ s.description = <<-DESC
16
+ Handles Flash messages in Javascript for Rails xhr-responses. Fires a dom event when flash messages are present.
17
+ DESC
18
+
19
+ s.files = `git ls-files`.split("\n")
20
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
21
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
22
+ s.require_paths = ["lib"]
23
+
24
+ s.rdoc_options = ['--main', 'README.md', '--charset=UTF-8']
25
+ s.extra_rdoc_files = ['README.md', 'MIT-LICENSE']
26
+
27
+ s.add_dependency "rails", ">= 3.0.0", "< 3.2.0"
28
+ s.add_dependency "jquery-rails"
29
+ end
@@ -4,8 +4,10 @@ require 'action_controller'
4
4
 
5
5
  module Glow
6
6
  class Engine < Rails::Engine
7
- config.to_prepare do
8
- ::ActionController::Base.send :include, Glow::Filter
7
+ initializer 'glow' do
8
+ ActiveSupport.on_load :action_controller do
9
+ include Glow::Filter
10
+ end
9
11
  end
10
12
  end
11
13
  end
@@ -4,8 +4,10 @@ require 'action_controller'
4
4
 
5
5
  module Glow
6
6
  class Railtie < Rails::Railtie
7
- config.to_prepare do
8
- ::ActionController::Base.send :include, Glow::Filter
7
+ initializer 'glow' do
8
+ ActiveSupport.on_load :action_controller do
9
+ include Glow::Filter
10
+ end
9
11
  end
10
12
  end
11
13
  end
@@ -1,3 +1,3 @@
1
1
  module Glow
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
@@ -0,0 +1,12 @@
1
+ window.Glow =
2
+ flash: (type, message) -> $(document).trigger 'glow:flash', { type, message }
3
+
4
+ $(document).ajaxComplete (evt, xhr, options) ->
5
+ Glow.flash type, message if type = xhr.getResponseHeader('X-Message-Type') and message = xhr.getResponseHeader('X-Message')
6
+
7
+ window.Flash =
8
+ fire: Glow.flash
9
+ # convenience methods
10
+ success: (message) -> Glow.flash 'success', message
11
+ notice: (message) -> Glow.flash 'notice', message
12
+ error: (message) -> Glow.flash 'error', message
@@ -0,0 +1 @@
1
+ --colour
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- glow (0.0.4)
4
+ glow (0.0.7)
5
5
  jquery-rails
6
6
  rails (>= 3.0.0, < 3.2.0)
7
7
 
File without changes
@@ -0,0 +1,5 @@
1
+ .bundle
2
+ db/*.sqlite3
3
+ log/*.log
4
+ tmp/
5
+ .sass-cache/
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- glow (0.0.4)
4
+ glow (0.0.7)
5
5
  jquery-rails
6
6
  rails (>= 3.0.0, < 3.2.0)
7
7
 
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -14,7 +14,7 @@ date: 2011-09-26 00:00:00.000000000Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
17
- requirement: &70163950694700 !ruby/object:Gem::Requirement
17
+ requirement: &70111017969500 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ! '>='
@@ -25,10 +25,10 @@ dependencies:
25
25
  version: 3.2.0
26
26
  type: :runtime
27
27
  prerelease: false
28
- version_requirements: *70163950694700
28
+ version_requirements: *70111017969500
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: jquery-rails
31
- requirement: &70163950693680 !ruby/object:Gem::Requirement
31
+ requirement: &70111017968460 !ruby/object:Gem::Requirement
32
32
  none: false
33
33
  requirements:
34
34
  - - ! '>='
@@ -36,7 +36,7 @@ dependencies:
36
36
  version: '0'
37
37
  type: :runtime
38
38
  prerelease: false
39
- version_requirements: *70163950693680
39
+ version_requirements: *70111017968460
40
40
  description: ! ' Handles Flash messages in Javascript for Rails xhr-responses.
41
41
  Fires a dom event when flash messages are present.
42
42
 
@@ -49,22 +49,31 @@ extra_rdoc_files:
49
49
  - README.md
50
50
  - MIT-LICENSE
51
51
  files:
52
+ - .gitignore
53
+ - Gemfile
54
+ - Gemfile.lock
55
+ - MIT-LICENSE
56
+ - README.md
57
+ - Rakefile
58
+ - glow.gemspec
52
59
  - lib/generators/glow/install/install_generator.rb
60
+ - lib/glow.rb
53
61
  - lib/glow/engine.rb
54
62
  - lib/glow/filter.rb
55
63
  - lib/glow/railtie.rb
56
64
  - lib/glow/version.rb
57
- - lib/glow.rb
58
65
  - lib/tasks/glow_tasks.rake
59
- - vendor/assets/javascripts/glow.js
60
- - MIT-LICENSE
61
- - Rakefile
62
- - README.md
66
+ - src/glow.coffee
67
+ - test/rails3/.rspec
68
+ - test/rails3/Gemfile
69
+ - test/rails3/Gemfile.lock
70
+ - test/rails3/Rakefile
63
71
  - test/rails3/app/controllers/application_controller.rb
64
72
  - test/rails3/app/controllers/flash_controller.rb
65
73
  - test/rails3/app/views/flash/ajax.js.erb
66
74
  - test/rails3/app/views/flash/show.html.erb
67
75
  - test/rails3/app/views/layouts/application.html.erb
76
+ - test/rails3/config.ru
68
77
  - test/rails3/config/application.rb
69
78
  - test/rails3/config/boot.rb
70
79
  - test/rails3/config/environment.rb
@@ -79,11 +88,7 @@ files:
79
88
  - test/rails3/config/initializers/wrap_parameters.rb
80
89
  - test/rails3/config/locales/en.yml
81
90
  - test/rails3/config/routes.rb
82
- - test/rails3/config.ru
83
- - test/rails3/Gemfile
84
- - test/rails3/Gemfile.lock
85
- - test/rails3/log/development.log
86
- - test/rails3/log/test.log
91
+ - test/rails3/log/.gitkeep
87
92
  - test/rails3/public/404.html
88
93
  - test/rails3/public/422.html
89
94
  - test/rails3/public/500.html
@@ -92,11 +97,16 @@ files:
92
97
  - test/rails3/public/javascripts/jquery.js
93
98
  - test/rails3/public/javascripts/jquery.min.js
94
99
  - test/rails3/public/javascripts/jquery_ujs.js
95
- - test/rails3/Rakefile
96
100
  - test/rails3/script/rails
101
+ - test/rails3/spec/controllers/.flash_controller_spec.rb.swn
102
+ - test/rails3/spec/controllers/.flash_controller_spec.rb.swo
97
103
  - test/rails3/spec/controllers/flash_controller_spec.rb
98
104
  - test/rails3/spec/integration/flash_spec.rb
99
105
  - test/rails3/spec/spec_helper.rb
106
+ - test/rails31/.gitignore
107
+ - test/rails31/Gemfile
108
+ - test/rails31/Gemfile.lock
109
+ - test/rails31/Rakefile
100
110
  - test/rails31/app/assets/images/rails.png
101
111
  - test/rails31/app/assets/javascripts/application.js
102
112
  - test/rails31/app/assets/stylesheets/application.css
@@ -105,6 +115,7 @@ files:
105
115
  - test/rails31/app/views/flash/ajax.js.erb
106
116
  - test/rails31/app/views/flash/show.html.erb
107
117
  - test/rails31/app/views/layouts/application.html.erb
118
+ - test/rails31/config.ru
108
119
  - test/rails31/config/application.rb
109
120
  - test/rails31/config/boot.rb
110
121
  - test/rails31/config/environment.rb
@@ -119,33 +130,19 @@ files:
119
130
  - test/rails31/config/initializers/wrap_parameters.rb
120
131
  - test/rails31/config/locales/en.yml
121
132
  - test/rails31/config/routes.rb
122
- - test/rails31/config.ru
123
- - test/rails31/Gemfile
124
- - test/rails31/Gemfile.lock
125
- - test/rails31/log/development.log
126
- - test/rails31/log/test.log
133
+ - test/rails31/log/.gitkeep
127
134
  - test/rails31/public/404.html
128
135
  - test/rails31/public/422.html
129
136
  - test/rails31/public/500.html
130
137
  - test/rails31/public/favicon.ico
131
138
  - test/rails31/public/robots.txt
132
- - test/rails31/Rakefile
133
139
  - test/rails31/script/rails
140
+ - test/rails31/spec/controllers/.flash_controller_spec.rb.swn
141
+ - test/rails31/spec/controllers/.flash_controller_spec.rb.swo
134
142
  - test/rails31/spec/controllers/flash_controller_spec.rb
135
143
  - test/rails31/spec/integration/flash_spec.rb
136
144
  - test/rails31/spec/spec_helper.rb
137
- - test/rails31/tmp/cache/assets/CC6/400/sprockets%2Ffc6d386e5a58972d13920c9cd2528768
138
- - test/rails31/tmp/cache/assets/CD8/F20/sprockets%2Fd66a691d6f63c00b6b0025ec732734c9
139
- - test/rails31/tmp/cache/assets/CF0/DA0/sprockets%2Fd7d5b37686831d37c4dd75e645f5e016
140
- - test/rails31/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
141
- - test/rails31/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
142
- - test/rails31/tmp/cache/assets/D5F/DC0/sprockets%2F3bdad2a5487de08b16ac12dcd8411538
143
- - test/rails31/tmp/cache/assets/D61/A80/sprockets%2Fa4b21f72f1e092ec190a2fc0d679c4c3
144
- - test/rails31/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
145
- - test/rails31/tmp/cache/assets/DA0/D40/sprockets%2Fa7b4ee1a4cf4cc742c0d968b2f40c779
146
- - test/rails31/tmp/cache/assets/DB8/BB0/sprockets%2Fca4a6e5b550132e2e7e5ebd40dcc55a0
147
- - test/rails31/tmp/cache/assets/DD8/AF0/sprockets%2F4297f5a02e59cff78bd076afd7b7faa1
148
- - test/rails31/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
145
+ - vendor/assets/javascripts/glow.js
149
146
  homepage: https://github.com/zweitag/glow
150
147
  licenses: []
151
148
  post_install_message:
@@ -163,7 +160,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
163
160
  version: '0'
164
161
  segments:
165
162
  - 0
166
- hash: -935168484040291410
163
+ hash: -1350833090447828098
167
164
  required_rubygems_version: !ruby/object:Gem::Requirement
168
165
  none: false
169
166
  requirements:
@@ -172,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
169
  version: '0'
173
170
  segments:
174
171
  - 0
175
- hash: -935168484040291410
172
+ hash: -1350833090447828098
176
173
  requirements: []
177
174
  rubyforge_project:
178
175
  rubygems_version: 1.8.9
@@ -180,11 +177,16 @@ signing_key:
180
177
  specification_version: 3
181
178
  summary: Javascript Flash Hash handling for Rails.
182
179
  test_files:
180
+ - test/rails3/.rspec
181
+ - test/rails3/Gemfile
182
+ - test/rails3/Gemfile.lock
183
+ - test/rails3/Rakefile
183
184
  - test/rails3/app/controllers/application_controller.rb
184
185
  - test/rails3/app/controllers/flash_controller.rb
185
186
  - test/rails3/app/views/flash/ajax.js.erb
186
187
  - test/rails3/app/views/flash/show.html.erb
187
188
  - test/rails3/app/views/layouts/application.html.erb
189
+ - test/rails3/config.ru
188
190
  - test/rails3/config/application.rb
189
191
  - test/rails3/config/boot.rb
190
192
  - test/rails3/config/environment.rb
@@ -199,11 +201,7 @@ test_files:
199
201
  - test/rails3/config/initializers/wrap_parameters.rb
200
202
  - test/rails3/config/locales/en.yml
201
203
  - test/rails3/config/routes.rb
202
- - test/rails3/config.ru
203
- - test/rails3/Gemfile
204
- - test/rails3/Gemfile.lock
205
- - test/rails3/log/development.log
206
- - test/rails3/log/test.log
204
+ - test/rails3/log/.gitkeep
207
205
  - test/rails3/public/404.html
208
206
  - test/rails3/public/422.html
209
207
  - test/rails3/public/500.html
@@ -212,11 +210,16 @@ test_files:
212
210
  - test/rails3/public/javascripts/jquery.js
213
211
  - test/rails3/public/javascripts/jquery.min.js
214
212
  - test/rails3/public/javascripts/jquery_ujs.js
215
- - test/rails3/Rakefile
216
213
  - test/rails3/script/rails
214
+ - test/rails3/spec/controllers/.flash_controller_spec.rb.swn
215
+ - test/rails3/spec/controllers/.flash_controller_spec.rb.swo
217
216
  - test/rails3/spec/controllers/flash_controller_spec.rb
218
217
  - test/rails3/spec/integration/flash_spec.rb
219
218
  - test/rails3/spec/spec_helper.rb
219
+ - test/rails31/.gitignore
220
+ - test/rails31/Gemfile
221
+ - test/rails31/Gemfile.lock
222
+ - test/rails31/Rakefile
220
223
  - test/rails31/app/assets/images/rails.png
221
224
  - test/rails31/app/assets/javascripts/application.js
222
225
  - test/rails31/app/assets/stylesheets/application.css
@@ -225,6 +228,7 @@ test_files:
225
228
  - test/rails31/app/views/flash/ajax.js.erb
226
229
  - test/rails31/app/views/flash/show.html.erb
227
230
  - test/rails31/app/views/layouts/application.html.erb
231
+ - test/rails31/config.ru
228
232
  - test/rails31/config/application.rb
229
233
  - test/rails31/config/boot.rb
230
234
  - test/rails31/config/environment.rb
@@ -239,30 +243,15 @@ test_files:
239
243
  - test/rails31/config/initializers/wrap_parameters.rb
240
244
  - test/rails31/config/locales/en.yml
241
245
  - test/rails31/config/routes.rb
242
- - test/rails31/config.ru
243
- - test/rails31/Gemfile
244
- - test/rails31/Gemfile.lock
245
- - test/rails31/log/development.log
246
- - test/rails31/log/test.log
246
+ - test/rails31/log/.gitkeep
247
247
  - test/rails31/public/404.html
248
248
  - test/rails31/public/422.html
249
249
  - test/rails31/public/500.html
250
250
  - test/rails31/public/favicon.ico
251
251
  - test/rails31/public/robots.txt
252
- - test/rails31/Rakefile
253
252
  - test/rails31/script/rails
253
+ - test/rails31/spec/controllers/.flash_controller_spec.rb.swn
254
+ - test/rails31/spec/controllers/.flash_controller_spec.rb.swo
254
255
  - test/rails31/spec/controllers/flash_controller_spec.rb
255
256
  - test/rails31/spec/integration/flash_spec.rb
256
257
  - test/rails31/spec/spec_helper.rb
257
- - test/rails31/tmp/cache/assets/CC6/400/sprockets%2Ffc6d386e5a58972d13920c9cd2528768
258
- - test/rails31/tmp/cache/assets/CD8/F20/sprockets%2Fd66a691d6f63c00b6b0025ec732734c9
259
- - test/rails31/tmp/cache/assets/CF0/DA0/sprockets%2Fd7d5b37686831d37c4dd75e645f5e016
260
- - test/rails31/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
261
- - test/rails31/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4
262
- - test/rails31/tmp/cache/assets/D5F/DC0/sprockets%2F3bdad2a5487de08b16ac12dcd8411538
263
- - test/rails31/tmp/cache/assets/D61/A80/sprockets%2Fa4b21f72f1e092ec190a2fc0d679c4c3
264
- - test/rails31/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384
265
- - test/rails31/tmp/cache/assets/DA0/D40/sprockets%2Fa7b4ee1a4cf4cc742c0d968b2f40c779
266
- - test/rails31/tmp/cache/assets/DB8/BB0/sprockets%2Fca4a6e5b550132e2e7e5ebd40dcc55a0
267
- - test/rails31/tmp/cache/assets/DD8/AF0/sprockets%2F4297f5a02e59cff78bd076afd7b7faa1
268
- - test/rails31/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af