resource_index 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 (68) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +107 -0
  3. data/Rakefile +40 -0
  4. data/lib/resource_index/engine.rb +5 -0
  5. data/lib/resource_index/search.rb +61 -0
  6. data/lib/resource_index/search_engine.rb +20 -0
  7. data/lib/resource_index/version.rb +3 -0
  8. data/lib/resource_index.rb +6 -0
  9. data/lib/tasks/resource_index_tasks.rake +13 -0
  10. data/test/dummy/README.rdoc +261 -0
  11. data/test/dummy/Rakefile +7 -0
  12. data/test/dummy/app/assets/javascripts/application.js +15 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/test/dummy/app/controllers/application_controller.rb +3 -0
  15. data/test/dummy/app/helpers/application_helper.rb +2 -0
  16. data/test/dummy/app/models/thing.rb +6 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/config/application.rb +59 -0
  19. data/test/dummy/config/boot.rb +10 -0
  20. data/test/dummy/config/database.yml +25 -0
  21. data/test/dummy/config/environment.rb +5 -0
  22. data/test/dummy/config/environments/development.rb +37 -0
  23. data/test/dummy/config/environments/production.rb +67 -0
  24. data/test/dummy/config/environments/test.rb +37 -0
  25. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  26. data/test/dummy/config/initializers/inflections.rb +15 -0
  27. data/test/dummy/config/initializers/mime_types.rb +5 -0
  28. data/test/dummy/config/initializers/secret_token.rb +7 -0
  29. data/test/dummy/config/initializers/session_store.rb +8 -0
  30. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  31. data/test/dummy/config/locales/en.yml +5 -0
  32. data/test/dummy/config/routes.rb +4 -0
  33. data/test/dummy/config.ru +4 -0
  34. data/test/dummy/db/development.sqlite3 +0 -0
  35. data/test/dummy/db/migrate/20130219113253_create_things.rb +9 -0
  36. data/test/dummy/db/resource_index/thing/flintlock +0 -0
  37. data/test/dummy/db/resource_index/thing/iamchert +1 -0
  38. data/test/dummy/db/resource_index/thing/position.DB +0 -0
  39. data/test/dummy/db/resource_index/thing/position.baseA +0 -0
  40. data/test/dummy/db/resource_index/thing/position.baseB +0 -0
  41. data/test/dummy/db/resource_index/thing/postlist.DB +0 -0
  42. data/test/dummy/db/resource_index/thing/postlist.baseA +0 -0
  43. data/test/dummy/db/resource_index/thing/postlist.baseB +0 -0
  44. data/test/dummy/db/resource_index/thing/record.DB +0 -0
  45. data/test/dummy/db/resource_index/thing/record.baseA +0 -0
  46. data/test/dummy/db/resource_index/thing/record.baseB +0 -0
  47. data/test/dummy/db/resource_index/thing/spelling.DB +0 -0
  48. data/test/dummy/db/resource_index/thing/spelling.baseA +0 -0
  49. data/test/dummy/db/resource_index/thing/spelling.baseB +0 -0
  50. data/test/dummy/db/resource_index/thing/termlist.DB +0 -0
  51. data/test/dummy/db/resource_index/thing/termlist.baseA +0 -0
  52. data/test/dummy/db/resource_index/thing/termlist.baseB +0 -0
  53. data/test/dummy/db/schema.rb +23 -0
  54. data/test/dummy/db/test.sqlite3 +0 -0
  55. data/test/dummy/log/development.log +36 -0
  56. data/test/dummy/log/test.log +2991 -0
  57. data/test/dummy/public/404.html +26 -0
  58. data/test/dummy/public/422.html +26 -0
  59. data/test/dummy/public/500.html +25 -0
  60. data/test/dummy/public/favicon.ico +0 -0
  61. data/test/dummy/script/rails +6 -0
  62. data/test/dummy/test/fixtures/things.yml +101 -0
  63. data/test/dummy/test/unit/resource_index/search_test.rb +48 -0
  64. data/test/dummy/test/unit/thing_test.rb +37 -0
  65. data/test/integration/navigation_test.rb +10 -0
  66. data/test/resource_index_test.rb +7 -0
  67. data/test/test_helper.rb +21 -0
  68. metadata +235 -0
@@ -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,101 @@
1
+ # Cast and crew of skeletons http://www.skeletonsthemovie.com/
2
+
3
+ davis:
4
+ id: 1
5
+ role: DAVIS
6
+ name: ED GAUGHAN
7
+
8
+ bennett:
9
+ id: 2
10
+ role: BENNETT
11
+ name: ANDREW BUCKLEY
12
+
13
+ colonel:
14
+ id: 3
15
+ role: THE COLONEL
16
+ name: JASON ISAACS
17
+
18
+ jane:
19
+ id: 4
20
+ role: JANE
21
+ name: PAPRIKA STEEN
22
+
23
+ rebecca:
24
+ id: 5
25
+ role: REBECCA
26
+ name: TUPPENCE MIDDLETON
27
+
28
+ jo-jo:
29
+ id: 6
30
+ role: JO-JO
31
+ name: JOSEF WHITFIELD
32
+
33
+ director:
34
+ id: 7
35
+ role: WRITER/DIRECTOR
36
+ name: NICK WHITFIELD
37
+
38
+ producer_one:
39
+ id: 8
40
+ role: PRODUCER
41
+ name: TRACY BRIMM
42
+
43
+ producer_two:
44
+ id: 9
45
+ role: PRODUCER
46
+ name: KATE MYERS
47
+
48
+ producer_three:
49
+ id: 10
50
+ role: PRODUCER
51
+ name: PAUL WELSH
52
+
53
+ exec_producer_one:
54
+ id: 11
55
+ role: EXECUTIVE PRODUCER
56
+ name: SUZANNE ALIZART
57
+
58
+ exec_producer_two:
59
+ id: 12
60
+ role: EXECUTIVE PRODUCER
61
+ name: ROBBIE ALLEN
62
+
63
+ exec_producer_three:
64
+ id: 13
65
+ role: EXECUTIVE PRODUCER
66
+ name: ANNA SEIFERT-SPECK
67
+
68
+ photographer:
69
+ id: 14
70
+ role: DIRECTOR OF PHOTOGRAPHY
71
+ name: ZAC NICHOLSON
72
+
73
+ editor:
74
+ id: 15
75
+ role: EDITOR
76
+ name: RACHEL TUNNARD
77
+
78
+ composer:
79
+ id: 16
80
+ role: COMPOSER
81
+ name: SIMON WHITFIELD
82
+
83
+ designer:
84
+ id: 17
85
+ role: PRODUCTION DESIGN
86
+ name: JAMES LAPSLEY
87
+
88
+ make_up:
89
+ id: 18
90
+ role: HAIR & MAKE UP DESIGN
91
+ name: SUSANNA PERETZ
92
+
93
+ costume:
94
+ id: 19
95
+ role: COSTUME DESIGN
96
+ name: ALISON MCLAUGHLIN
97
+
98
+ sound:
99
+ id: 20
100
+ role: SUPERVISING SOUND EDITOR
101
+ name: JOAKIM SUNDSTROM
@@ -0,0 +1,48 @@
1
+ require 'test_helper'
2
+
3
+ module ResourceIndex
4
+ class SearchTest < ActiveSupport::TestCase
5
+ def teardown
6
+ Search.root = nil
7
+ end
8
+
9
+ def test_engine
10
+ assert_kind_of XapianFu::XapianDb, Search.engine
11
+ end
12
+
13
+ def test_default_dir
14
+ expected = Rails.root.to_s + "/db/resource_index/search"
15
+ assert_equal(expected, Search.engine.dir)
16
+ end
17
+
18
+ def test_root
19
+ expected = Rails.root.to_s + "/db/resource_index"
20
+ assert_equal(expected, Search.root)
21
+ end
22
+
23
+ def test_alternative_root
24
+ root = "~/home_database_folder"
25
+ Search.root = root
26
+ assert_equal(root, Search.root)
27
+ end
28
+
29
+ def test_engine_for
30
+ assert_kind_of XapianFu::XapianDb, thing_engine
31
+ end
32
+
33
+ def test_engine_for_dir
34
+ expected = Rails.root.to_s + "/db/resource_index/thing"
35
+ assert_equal(expected, thing_engine.dir)
36
+ end
37
+
38
+ def test_engine_for_field
39
+ expected = %w{id name role created_at updated_at}
40
+ assert_equal(expected.sort, thing_engine.store_values.sort)
41
+ end
42
+
43
+ def thing_engine
44
+ @thing_engine ||= Search.engine_for(Thing)
45
+ end
46
+
47
+ end
48
+ end
@@ -0,0 +1,37 @@
1
+ require 'test_helper'
2
+
3
+ class ThingTest < ActiveSupport::TestCase
4
+
5
+ def test_responds_to_required_class_methods
6
+ class_methods_required = %w{all find first}
7
+ class_methods_required.each{|m| assert Thing.respond_to? m, "should respond to #{m}"}
8
+ end
9
+
10
+ def test_responds_to_required_instance_methods
11
+ instance_methods_required = %w{attributes id}
12
+ thing = Thing.new
13
+ instance_methods_required.each{|m| assert thing.respond_to? m, "should respond to #{m}"}
14
+ end
15
+
16
+ def test_get_first
17
+ assert Thing.first, "should get a thing from database"
18
+ end
19
+
20
+ def test_search_engine
21
+ assert_kind_of XapianFu::XapianDb, Thing.search_engine
22
+ expected = Rails.root.to_s + "/db/resource_index/thing"
23
+ assert_equal(expected, Thing.search_engine.dir)
24
+ end
25
+
26
+ def test_populate_search_engine
27
+ Thing.populate_search_engine
28
+ assert_equal(Thing.count, Thing.search_engine.size)
29
+ end
30
+
31
+ def test_search
32
+ things = Thing.search('producer')
33
+ producers = Thing.where("role LIKE '%PRODUCER%'")
34
+ assert_equal(producers.length, things.length)
35
+ assert_equal(producers.collect(&:id).sort, things.collect(&:id).sort)
36
+ end
37
+ 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 ResourceIndexTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, ResourceIndex
6
+ end
7
+ end
@@ -0,0 +1,21 @@
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 }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../dummy/test/fixtures", __FILE__)
15
+ end
16
+
17
+ puts "fixture path = " + ActiveSupport::TestCase.fixture_path
18
+
19
+ class ActiveSupport::TestCase
20
+ fixtures :all
21
+ end
metadata ADDED
@@ -0,0 +1,235 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: resource_index
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Rob Nichols
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-02-20 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: sqlite3
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: xapian-ruby
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: xapian-fu
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ description: Uses Xapian index search to speed up searching ActiveResource objects
79
+ and reduce calls to backend service
80
+ email:
81
+ - rob@undervale.co.uk
82
+ executables: []
83
+ extensions: []
84
+ extra_rdoc_files: []
85
+ files:
86
+ - lib/resource_index/version.rb
87
+ - lib/resource_index/engine.rb
88
+ - lib/resource_index/search_engine.rb
89
+ - lib/resource_index/search.rb
90
+ - lib/resource_index.rb
91
+ - lib/tasks/resource_index_tasks.rake
92
+ - MIT-LICENSE
93
+ - Rakefile
94
+ - README.rdoc
95
+ - test/integration/navigation_test.rb
96
+ - test/dummy/app/helpers/application_helper.rb
97
+ - test/dummy/app/models/thing.rb
98
+ - test/dummy/app/views/layouts/application.html.erb
99
+ - test/dummy/app/controllers/application_controller.rb
100
+ - test/dummy/app/assets/javascripts/application.js
101
+ - test/dummy/app/assets/stylesheets/application.css
102
+ - test/dummy/README.rdoc
103
+ - test/dummy/log/test.log
104
+ - test/dummy/log/development.log
105
+ - test/dummy/db/migrate/20130219113253_create_things.rb
106
+ - test/dummy/db/resource_index/thing/position.baseA
107
+ - test/dummy/db/resource_index/thing/termlist.baseB
108
+ - test/dummy/db/resource_index/thing/spelling.baseA
109
+ - test/dummy/db/resource_index/thing/record.DB
110
+ - test/dummy/db/resource_index/thing/record.baseA
111
+ - test/dummy/db/resource_index/thing/flintlock
112
+ - test/dummy/db/resource_index/thing/spelling.baseB
113
+ - test/dummy/db/resource_index/thing/termlist.baseA
114
+ - test/dummy/db/resource_index/thing/postlist.baseB
115
+ - test/dummy/db/resource_index/thing/spelling.DB
116
+ - test/dummy/db/resource_index/thing/postlist.DB
117
+ - test/dummy/db/resource_index/thing/iamchert
118
+ - test/dummy/db/resource_index/thing/postlist.baseA
119
+ - test/dummy/db/resource_index/thing/termlist.DB
120
+ - test/dummy/db/resource_index/thing/position.baseB
121
+ - test/dummy/db/resource_index/thing/record.baseB
122
+ - test/dummy/db/resource_index/thing/position.DB
123
+ - test/dummy/db/test.sqlite3
124
+ - test/dummy/db/development.sqlite3
125
+ - test/dummy/db/schema.rb
126
+ - test/dummy/config.ru
127
+ - test/dummy/public/422.html
128
+ - test/dummy/public/favicon.ico
129
+ - test/dummy/public/404.html
130
+ - test/dummy/public/500.html
131
+ - test/dummy/test/fixtures/things.yml
132
+ - test/dummy/test/unit/resource_index/search_test.rb
133
+ - test/dummy/test/unit/thing_test.rb
134
+ - test/dummy/Rakefile
135
+ - test/dummy/config/locales/en.yml
136
+ - test/dummy/config/environment.rb
137
+ - test/dummy/config/routes.rb
138
+ - test/dummy/config/boot.rb
139
+ - test/dummy/config/environments/development.rb
140
+ - test/dummy/config/environments/production.rb
141
+ - test/dummy/config/environments/test.rb
142
+ - test/dummy/config/database.yml
143
+ - test/dummy/config/initializers/inflections.rb
144
+ - test/dummy/config/initializers/session_store.rb
145
+ - test/dummy/config/initializers/wrap_parameters.rb
146
+ - test/dummy/config/initializers/secret_token.rb
147
+ - test/dummy/config/initializers/mime_types.rb
148
+ - test/dummy/config/initializers/backtrace_silencers.rb
149
+ - test/dummy/config/application.rb
150
+ - test/dummy/script/rails
151
+ - test/resource_index_test.rb
152
+ - test/test_helper.rb
153
+ homepage: https://github.com/reggieb/resource_index
154
+ licenses: []
155
+ post_install_message:
156
+ rdoc_options: []
157
+ require_paths:
158
+ - lib
159
+ required_ruby_version: !ruby/object:Gem::Requirement
160
+ none: false
161
+ requirements:
162
+ - - ! '>='
163
+ - !ruby/object:Gem::Version
164
+ version: '0'
165
+ required_rubygems_version: !ruby/object:Gem::Requirement
166
+ none: false
167
+ requirements:
168
+ - - ! '>='
169
+ - !ruby/object:Gem::Version
170
+ version: '0'
171
+ requirements: []
172
+ rubyforge_project:
173
+ rubygems_version: 1.8.24
174
+ signing_key:
175
+ specification_version: 3
176
+ summary: Provides client side indexing for service resources.
177
+ test_files:
178
+ - test/integration/navigation_test.rb
179
+ - test/dummy/app/helpers/application_helper.rb
180
+ - test/dummy/app/models/thing.rb
181
+ - test/dummy/app/views/layouts/application.html.erb
182
+ - test/dummy/app/controllers/application_controller.rb
183
+ - test/dummy/app/assets/javascripts/application.js
184
+ - test/dummy/app/assets/stylesheets/application.css
185
+ - test/dummy/README.rdoc
186
+ - test/dummy/log/test.log
187
+ - test/dummy/log/development.log
188
+ - test/dummy/db/migrate/20130219113253_create_things.rb
189
+ - test/dummy/db/resource_index/thing/position.baseA
190
+ - test/dummy/db/resource_index/thing/termlist.baseB
191
+ - test/dummy/db/resource_index/thing/spelling.baseA
192
+ - test/dummy/db/resource_index/thing/record.DB
193
+ - test/dummy/db/resource_index/thing/record.baseA
194
+ - test/dummy/db/resource_index/thing/flintlock
195
+ - test/dummy/db/resource_index/thing/spelling.baseB
196
+ - test/dummy/db/resource_index/thing/termlist.baseA
197
+ - test/dummy/db/resource_index/thing/postlist.baseB
198
+ - test/dummy/db/resource_index/thing/spelling.DB
199
+ - test/dummy/db/resource_index/thing/postlist.DB
200
+ - test/dummy/db/resource_index/thing/iamchert
201
+ - test/dummy/db/resource_index/thing/postlist.baseA
202
+ - test/dummy/db/resource_index/thing/termlist.DB
203
+ - test/dummy/db/resource_index/thing/position.baseB
204
+ - test/dummy/db/resource_index/thing/record.baseB
205
+ - test/dummy/db/resource_index/thing/position.DB
206
+ - test/dummy/db/test.sqlite3
207
+ - test/dummy/db/development.sqlite3
208
+ - test/dummy/db/schema.rb
209
+ - test/dummy/config.ru
210
+ - test/dummy/public/422.html
211
+ - test/dummy/public/favicon.ico
212
+ - test/dummy/public/404.html
213
+ - test/dummy/public/500.html
214
+ - test/dummy/test/fixtures/things.yml
215
+ - test/dummy/test/unit/resource_index/search_test.rb
216
+ - test/dummy/test/unit/thing_test.rb
217
+ - test/dummy/Rakefile
218
+ - test/dummy/config/locales/en.yml
219
+ - test/dummy/config/environment.rb
220
+ - test/dummy/config/routes.rb
221
+ - test/dummy/config/boot.rb
222
+ - test/dummy/config/environments/development.rb
223
+ - test/dummy/config/environments/production.rb
224
+ - test/dummy/config/environments/test.rb
225
+ - test/dummy/config/database.yml
226
+ - test/dummy/config/initializers/inflections.rb
227
+ - test/dummy/config/initializers/session_store.rb
228
+ - test/dummy/config/initializers/wrap_parameters.rb
229
+ - test/dummy/config/initializers/secret_token.rb
230
+ - test/dummy/config/initializers/mime_types.rb
231
+ - test/dummy/config/initializers/backtrace_silencers.rb
232
+ - test/dummy/config/application.rb
233
+ - test/dummy/script/rails
234
+ - test/resource_index_test.rb
235
+ - test/test_helper.rb