ioquatix-engines 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. data/CHANGELOG +280 -0
  2. data/MIT-LICENSE +21 -0
  3. data/README +95 -0
  4. data/Rakefile +199 -0
  5. data/about.yml +7 -0
  6. data/bin/rails_engines +103 -0
  7. data/generators/plugin_migration/USAGE +45 -0
  8. data/generators/plugin_migration/plugin_migration_generator.rb +78 -0
  9. data/generators/plugin_migration/templates/plugin_migration.erb +13 -0
  10. data/lib/engines.rb +185 -0
  11. data/lib/engines/assets.rb +38 -0
  12. data/lib/engines/load_engine_tasks.rake +6 -0
  13. data/lib/engines/plugin.rb +173 -0
  14. data/lib/engines/plugin/list.rb +57 -0
  15. data/lib/engines/plugin/migrator.rb +45 -0
  16. data/lib/engines/rails_extensions/action_mailer.rb +85 -0
  17. data/lib/engines/rails_extensions/asset_helpers.rb +149 -0
  18. data/lib/engines/rails_extensions/dependencies.rb +151 -0
  19. data/lib/engines/rails_extensions/routing.rb +88 -0
  20. data/lib/engines/testing.rb +87 -0
  21. data/lib/engines/version.rb +10 -0
  22. data/rails/init.rb +6 -0
  23. data/tasks/engines.rake +249 -0
  24. data/test/app/controllers/app_and_plugin_controller.rb +5 -0
  25. data/test/app/controllers/application.rb +18 -0
  26. data/test/app/controllers/namespace/app_and_plugin_controller.rb +5 -0
  27. data/test/app/helpers/mail_helper.rb +5 -0
  28. data/test/app/models/app_and_plugin_model.rb +3 -0
  29. data/test/app/models/notify_mail.rb +26 -0
  30. data/test/app/things/thing.rb +3 -0
  31. data/test/app/views/app_and_plugin/a_view.html.erb +1 -0
  32. data/test/app/views/namespace/app_and_plugin/a_view.html.erb +1 -0
  33. data/test/app/views/notify_mail/implicit_multipart.text.html.erb +1 -0
  34. data/test/app/views/notify_mail/implicit_multipart.text.plain.erb +1 -0
  35. data/test/app/views/notify_mail/multipart_html.html.erb +1 -0
  36. data/test/app/views/notify_mail/multipart_plain.html.erb +1 -0
  37. data/test/app/views/notify_mail/signup.text.plain.erb +5 -0
  38. data/test/app/views/plugin_mail/mail_from_plugin_with_application_template.text.plain.erb +1 -0
  39. data/test/app/views/plugin_mail/multipart_from_plugin_with_application_template_plain.html.erb +1 -0
  40. data/test/functional/controller_loading_test.rb +51 -0
  41. data/test/functional/exception_notification_compatibility_test.rb +29 -0
  42. data/test/functional/routes_test.rb +33 -0
  43. data/test/functional/view_helpers_test.rb +32 -0
  44. data/test/functional/view_loading_test.rb +60 -0
  45. data/test/lib/app_and_plugin_lib_model.rb +3 -0
  46. data/test/lib/engines_test_helper.rb +36 -0
  47. data/test/plugins/alpha_plugin/app/controllers/alpha_plugin_controller.rb +8 -0
  48. data/test/plugins/alpha_plugin/app/controllers/app_and_plugin_controller.rb +5 -0
  49. data/test/plugins/alpha_plugin/app/controllers/namespace/alpha_plugin_controller.rb +5 -0
  50. data/test/plugins/alpha_plugin/app/controllers/namespace/app_and_plugin_controller.rb +5 -0
  51. data/test/plugins/alpha_plugin/app/controllers/namespace/shared_plugin_controller.rb +5 -0
  52. data/test/plugins/alpha_plugin/app/controllers/shared_plugin_controller.rb +5 -0
  53. data/test/plugins/alpha_plugin/app/models/alpha_plugin_model.rb +3 -0
  54. data/test/plugins/alpha_plugin/app/models/app_and_plugin_model.rb +7 -0
  55. data/test/plugins/alpha_plugin/app/models/shared_plugin_model.rb +3 -0
  56. data/test/plugins/alpha_plugin/app/views/alpha_plugin/a_view.html.erb +1 -0
  57. data/test/plugins/alpha_plugin/app/views/app_and_plugin/a_view.html.erb +1 -0
  58. data/test/plugins/alpha_plugin/app/views/layouts/plugin_layout.erb +1 -0
  59. data/test/plugins/alpha_plugin/app/views/namespace/alpha_plugin/a_view.html.erb +1 -0
  60. data/test/plugins/alpha_plugin/app/views/namespace/app_and_plugin/a_view.html.erb +1 -0
  61. data/test/plugins/alpha_plugin/app/views/namespace/shared_plugin/a_view.html.erb +1 -0
  62. data/test/plugins/alpha_plugin/app/views/shared_plugin/a_view.html.erb +1 -0
  63. data/test/plugins/alpha_plugin/lib/alpha_plugin_lib_model.rb +3 -0
  64. data/test/plugins/alpha_plugin/lib/app_and_plugin_lib_model.rb +7 -0
  65. data/test/plugins/beta_plugin/app/controllers/app_and_plugin_controller.rb +5 -0
  66. data/test/plugins/beta_plugin/app/controllers/namespace/shared_plugin_controller.rb +5 -0
  67. data/test/plugins/beta_plugin/app/controllers/shared_plugin_controller.rb +5 -0
  68. data/test/plugins/beta_plugin/app/models/shared_plugin_model.rb +3 -0
  69. data/test/plugins/beta_plugin/app/views/namespace/shared_plugin/a_view.html.erb +1 -0
  70. data/test/plugins/beta_plugin/app/views/shared_plugin/a_view.html.erb +1 -0
  71. data/test/plugins/beta_plugin/init.rb +1 -0
  72. data/test/plugins/not_a_plugin/public/should_not_be_copied.txt +0 -0
  73. data/test/plugins/test_assets/app/controllers/assets_controller.rb +2 -0
  74. data/test/plugins/test_assets/app/views/assets/index.html.erb +3 -0
  75. data/test/plugins/test_assets/app/views/layouts/assets.html.erb +3 -0
  76. data/test/plugins/test_assets/init.rb +0 -0
  77. data/test/plugins/test_assets/public/file.txt +0 -0
  78. data/test/plugins/test_assets/public/subfolder/file_in_subfolder.txt +0 -0
  79. data/test/plugins/test_assets_with_assets_directory/assets/file.txt +0 -0
  80. data/test/plugins/test_assets_with_assets_directory/assets/subfolder/file_in_subfolder.txt +0 -0
  81. data/test/plugins/test_assets_with_assets_directory/init.rb +0 -0
  82. data/test/plugins/test_assets_with_no_subdirectory/assets/file.txt +0 -0
  83. data/test/plugins/test_assets_with_no_subdirectory/init.rb +0 -0
  84. data/test/plugins/test_code_mixing/app/things/thing.rb +3 -0
  85. data/test/plugins/test_code_mixing/init.rb +1 -0
  86. data/test/plugins/test_load_path/init.rb +0 -0
  87. data/test/plugins/test_migration/db/migrate/001_create_tests.rb +11 -0
  88. data/test/plugins/test_migration/db/migrate/002_create_others.rb +11 -0
  89. data/test/plugins/test_migration/db/migrate/003_create_extras.rb +11 -0
  90. data/test/plugins/test_migration/init.rb +0 -0
  91. data/test/plugins/test_plugin_mailing/app/models/plugin_mail.rb +26 -0
  92. data/test/plugins/test_plugin_mailing/app/views/plugin_mail/mail_from_plugin.text.plain.erb +1 -0
  93. data/test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_html.html.erb +1 -0
  94. data/test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_plain.html.erb +1 -0
  95. data/test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_with_application_template_html.html.erb +1 -0
  96. data/test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_with_application_template_plain.html.erb +1 -0
  97. data/test/plugins/test_plugin_mailing/init.rb +0 -0
  98. data/test/plugins/test_routing/app/controllers/namespace/test_routing_controller.rb +5 -0
  99. data/test/plugins/test_routing/app/controllers/test_routing_controller.rb +9 -0
  100. data/test/plugins/test_routing/init.rb +0 -0
  101. data/test/plugins/test_routing/routes.rb +2 -0
  102. data/test/plugins/test_testing/init.rb +0 -0
  103. data/test/plugins/test_testing/test/fixtures/testing_fixtures.yml +0 -0
  104. data/test/unit/action_mailer_test.rb +54 -0
  105. data/test/unit/arbitrary_code_mixing_test.rb +41 -0
  106. data/test/unit/assets_test.rb +48 -0
  107. data/test/unit/load_path_test.rb +58 -0
  108. data/test/unit/migration_test.rb +63 -0
  109. data/test/unit/model_and_lib_test.rb +37 -0
  110. data/test/unit/plugins_test.rb +11 -0
  111. data/test/unit/testing_test.rb +18 -0
  112. metadata +259 -0
@@ -0,0 +1,37 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class ModelAndLibTest < Test::Unit::TestCase
4
+
5
+ def test_WITH_a_model_defined_only_in_a_plugin_IT_should_load_the_model
6
+ assert_equal 'AlphaPluginModel (from alpha_plugin)', AlphaPluginModel.report_location
7
+ end
8
+
9
+ def test_WITH_a_model_defined_only_in_a_plugin_lib_dir_IT_should_load_the_model
10
+ assert_equal 'AlphaPluginLibModel (from alpha_plugin)', AlphaPluginLibModel.report_location
11
+ end
12
+
13
+ # app takes precedence over plugins
14
+
15
+ def test_WITH_a_model_defined_in_both_app_and_plugin_IT_should_load_the_one_in_app
16
+ assert_equal 'AppAndPluginModel (from app)', AppAndPluginModel.report_location
17
+ assert_raises(NoMethodError) { AppAndPluginLibModel.defined_only_in_alpha_engine_version }
18
+ end
19
+
20
+ def test_WITH_a_model_defined_in_both_app_and_plugin_lib_dirs_IT_should_load_the_one_in_app
21
+ assert_equal 'AppAndPluginLibModel (from lib)', AppAndPluginLibModel.report_location
22
+ assert_raises(NoMethodError) { AppAndPluginLibModel.defined_only_in_alpha_engine_version }
23
+ end
24
+
25
+ # subsequently loaded plugins take precendence over previously loaded plugins
26
+
27
+ # TODO
28
+ #
29
+ # this does work when we rely on $LOAD_PATH while it won't work when we use
30
+ # Dependency constant autoloading. This somewhat confusing difference has
31
+ # been there since at least Rails 1.2.x. See http://www.ruby-forum.com/topic/134529
32
+
33
+ def test_WITH_a_model_defined_in_two_plugins_IT_should_load_the_latter_of_both
34
+ require 'shared_plugin_model'
35
+ assert_equal SharedPluginModel.report_location, 'SharedPluginModel (from beta_plugin)'
36
+ end
37
+ end
@@ -0,0 +1,11 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class PluginsTest < Test::Unit::TestCase
4
+
5
+ def test_should_allow_access_to_plugins_by_strings_or_symbols
6
+ p = Engines.plugins["alpha_plugin"]
7
+ q = Engines.plugins[:alpha_plugin]
8
+ assert_kind_of Rails::Plugin, p
9
+ assert_equal p, q
10
+ end
11
+ end
@@ -0,0 +1,18 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class TestingTest < Test::Unit::TestCase
4
+ def setup
5
+ Engines::Testing.set_fixture_path
6
+ @filename = File.join(Engines::Testing.temporary_fixtures_directory, 'testing_fixtures.yml')
7
+ end
8
+
9
+ def teardown
10
+ File.delete(@filename) if File.exists?(@filename)
11
+ end
12
+
13
+ def test_should_copy_fixtures_files_to_tmp_directory
14
+ assert !File.exists?(@filename)
15
+ Engines::Testing.setup_plugin_fixtures
16
+ assert File.exists?(@filename)
17
+ end
18
+ end
metadata ADDED
@@ -0,0 +1,259 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ioquatix-engines
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Lots of cool people
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-10-23 00:00:00 -07:00
13
+ default_executable: rails_engines
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rails
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - "="
21
+ - !ruby/object:Gem::Version
22
+ version: 2.1.0
23
+ version:
24
+ description:
25
+ email:
26
+ executables:
27
+ - rails_engines
28
+ extensions: []
29
+
30
+ extra_rdoc_files:
31
+ - CHANGELOG
32
+ - README
33
+ files:
34
+ - bin/rails_engines
35
+ - generators/plugin_migration
36
+ - generators/plugin_migration/plugin_migration_generator.rb
37
+ - generators/plugin_migration/templates
38
+ - generators/plugin_migration/templates/plugin_migration.erb
39
+ - generators/plugin_migration/USAGE
40
+ - lib/engines
41
+ - lib/engines/assets.rb
42
+ - lib/engines/load_engine_tasks.rake
43
+ - lib/engines/plugin
44
+ - lib/engines/plugin/list.rb
45
+ - lib/engines/plugin/migrator.rb
46
+ - lib/engines/plugin.rb
47
+ - lib/engines/rails_extensions
48
+ - lib/engines/rails_extensions/action_mailer.rb
49
+ - lib/engines/rails_extensions/asset_helpers.rb
50
+ - lib/engines/rails_extensions/dependencies.rb
51
+ - lib/engines/rails_extensions/routing.rb
52
+ - lib/engines/testing.rb
53
+ - lib/engines/version.rb
54
+ - lib/engines.rb
55
+ - tasks/engines.rake
56
+ - test/app
57
+ - test/app/controllers
58
+ - test/app/controllers/app_and_plugin_controller.rb
59
+ - test/app/controllers/application.rb
60
+ - test/app/controllers/namespace
61
+ - test/app/controllers/namespace/app_and_plugin_controller.rb
62
+ - test/app/helpers
63
+ - test/app/helpers/mail_helper.rb
64
+ - test/app/models
65
+ - test/app/models/app_and_plugin_model.rb
66
+ - test/app/models/notify_mail.rb
67
+ - test/app/things
68
+ - test/app/things/thing.rb
69
+ - test/app/views
70
+ - test/app/views/app_and_plugin
71
+ - test/app/views/app_and_plugin/a_view.html.erb
72
+ - test/app/views/namespace
73
+ - test/app/views/namespace/app_and_plugin
74
+ - test/app/views/namespace/app_and_plugin/a_view.html.erb
75
+ - test/app/views/notify_mail
76
+ - test/app/views/notify_mail/implicit_multipart.text.html.erb
77
+ - test/app/views/notify_mail/implicit_multipart.text.plain.erb
78
+ - test/app/views/notify_mail/multipart_html.html.erb
79
+ - test/app/views/notify_mail/multipart_plain.html.erb
80
+ - test/app/views/notify_mail/signup.text.plain.erb
81
+ - test/app/views/plugin_mail
82
+ - test/app/views/plugin_mail/mail_from_plugin_with_application_template.text.plain.erb
83
+ - test/app/views/plugin_mail/multipart_from_plugin_with_application_template_plain.html.erb
84
+ - test/functional
85
+ - test/functional/controller_loading_test.rb
86
+ - test/functional/exception_notification_compatibility_test.rb
87
+ - test/functional/routes_test.rb
88
+ - test/functional/view_helpers_test.rb
89
+ - test/functional/view_loading_test.rb
90
+ - test/lib
91
+ - test/lib/app_and_plugin_lib_model.rb
92
+ - test/lib/engines_test_helper.rb
93
+ - test/plugins
94
+ - test/plugins/alpha_plugin
95
+ - test/plugins/alpha_plugin/app
96
+ - test/plugins/alpha_plugin/app/controllers
97
+ - test/plugins/alpha_plugin/app/controllers/alpha_plugin_controller.rb
98
+ - test/plugins/alpha_plugin/app/controllers/app_and_plugin_controller.rb
99
+ - test/plugins/alpha_plugin/app/controllers/namespace
100
+ - test/plugins/alpha_plugin/app/controllers/namespace/alpha_plugin_controller.rb
101
+ - test/plugins/alpha_plugin/app/controllers/namespace/app_and_plugin_controller.rb
102
+ - test/plugins/alpha_plugin/app/controllers/namespace/shared_plugin_controller.rb
103
+ - test/plugins/alpha_plugin/app/controllers/shared_plugin_controller.rb
104
+ - test/plugins/alpha_plugin/app/models
105
+ - test/plugins/alpha_plugin/app/models/alpha_plugin_model.rb
106
+ - test/plugins/alpha_plugin/app/models/app_and_plugin_model.rb
107
+ - test/plugins/alpha_plugin/app/models/shared_plugin_model.rb
108
+ - test/plugins/alpha_plugin/app/views
109
+ - test/plugins/alpha_plugin/app/views/alpha_plugin
110
+ - test/plugins/alpha_plugin/app/views/alpha_plugin/a_view.html.erb
111
+ - test/plugins/alpha_plugin/app/views/app_and_plugin
112
+ - test/plugins/alpha_plugin/app/views/app_and_plugin/a_view.html.erb
113
+ - test/plugins/alpha_plugin/app/views/layouts
114
+ - test/plugins/alpha_plugin/app/views/layouts/plugin_layout.erb
115
+ - test/plugins/alpha_plugin/app/views/namespace
116
+ - test/plugins/alpha_plugin/app/views/namespace/alpha_plugin
117
+ - test/plugins/alpha_plugin/app/views/namespace/alpha_plugin/a_view.html.erb
118
+ - test/plugins/alpha_plugin/app/views/namespace/app_and_plugin
119
+ - test/plugins/alpha_plugin/app/views/namespace/app_and_plugin/a_view.html.erb
120
+ - test/plugins/alpha_plugin/app/views/namespace/shared_plugin
121
+ - test/plugins/alpha_plugin/app/views/namespace/shared_plugin/a_view.html.erb
122
+ - test/plugins/alpha_plugin/app/views/shared_plugin
123
+ - test/plugins/alpha_plugin/app/views/shared_plugin/a_view.html.erb
124
+ - test/plugins/alpha_plugin/lib
125
+ - test/plugins/alpha_plugin/lib/alpha_plugin_lib_model.rb
126
+ - test/plugins/alpha_plugin/lib/app_and_plugin_lib_model.rb
127
+ - test/plugins/beta_plugin
128
+ - test/plugins/beta_plugin/app
129
+ - test/plugins/beta_plugin/app/controllers
130
+ - test/plugins/beta_plugin/app/controllers/app_and_plugin_controller.rb
131
+ - test/plugins/beta_plugin/app/controllers/namespace
132
+ - test/plugins/beta_plugin/app/controllers/namespace/shared_plugin_controller.rb
133
+ - test/plugins/beta_plugin/app/controllers/shared_plugin_controller.rb
134
+ - test/plugins/beta_plugin/app/models
135
+ - test/plugins/beta_plugin/app/models/shared_plugin_model.rb
136
+ - test/plugins/beta_plugin/app/views
137
+ - test/plugins/beta_plugin/app/views/namespace
138
+ - test/plugins/beta_plugin/app/views/namespace/shared_plugin
139
+ - test/plugins/beta_plugin/app/views/namespace/shared_plugin/a_view.html.erb
140
+ - test/plugins/beta_plugin/app/views/shared_plugin
141
+ - test/plugins/beta_plugin/app/views/shared_plugin/a_view.html.erb
142
+ - test/plugins/beta_plugin/init.rb
143
+ - test/plugins/not_a_plugin
144
+ - test/plugins/not_a_plugin/public
145
+ - test/plugins/not_a_plugin/public/should_not_be_copied.txt
146
+ - test/plugins/test_assets
147
+ - test/plugins/test_assets/app
148
+ - test/plugins/test_assets/app/controllers
149
+ - test/plugins/test_assets/app/controllers/assets_controller.rb
150
+ - test/plugins/test_assets/app/views
151
+ - test/plugins/test_assets/app/views/assets
152
+ - test/plugins/test_assets/app/views/assets/index.html.erb
153
+ - test/plugins/test_assets/app/views/layouts
154
+ - test/plugins/test_assets/app/views/layouts/assets.html.erb
155
+ - test/plugins/test_assets/init.rb
156
+ - test/plugins/test_assets/public
157
+ - test/plugins/test_assets/public/file.txt
158
+ - test/plugins/test_assets/public/subfolder
159
+ - test/plugins/test_assets/public/subfolder/file_in_subfolder.txt
160
+ - test/plugins/test_assets_with_assets_directory
161
+ - test/plugins/test_assets_with_assets_directory/assets
162
+ - test/plugins/test_assets_with_assets_directory/assets/file.txt
163
+ - test/plugins/test_assets_with_assets_directory/assets/subfolder
164
+ - test/plugins/test_assets_with_assets_directory/assets/subfolder/file_in_subfolder.txt
165
+ - test/plugins/test_assets_with_assets_directory/init.rb
166
+ - test/plugins/test_assets_with_no_subdirectory
167
+ - test/plugins/test_assets_with_no_subdirectory/assets
168
+ - test/plugins/test_assets_with_no_subdirectory/assets/file.txt
169
+ - test/plugins/test_assets_with_no_subdirectory/init.rb
170
+ - test/plugins/test_code_mixing
171
+ - test/plugins/test_code_mixing/app
172
+ - test/plugins/test_code_mixing/app/things
173
+ - test/plugins/test_code_mixing/app/things/thing.rb
174
+ - test/plugins/test_code_mixing/init.rb
175
+ - test/plugins/test_load_path
176
+ - test/plugins/test_load_path/init.rb
177
+ - test/plugins/test_migration
178
+ - test/plugins/test_migration/db
179
+ - test/plugins/test_migration/db/migrate
180
+ - test/plugins/test_migration/db/migrate/001_create_tests.rb
181
+ - test/plugins/test_migration/db/migrate/002_create_others.rb
182
+ - test/plugins/test_migration/db/migrate/003_create_extras.rb
183
+ - test/plugins/test_migration/init.rb
184
+ - test/plugins/test_plugin_mailing
185
+ - test/plugins/test_plugin_mailing/app
186
+ - test/plugins/test_plugin_mailing/app/models
187
+ - test/plugins/test_plugin_mailing/app/models/plugin_mail.rb
188
+ - test/plugins/test_plugin_mailing/app/views
189
+ - test/plugins/test_plugin_mailing/app/views/plugin_mail
190
+ - test/plugins/test_plugin_mailing/app/views/plugin_mail/mail_from_plugin.text.plain.erb
191
+ - test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_html.html.erb
192
+ - test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_plain.html.erb
193
+ - test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_with_application_template_html.html.erb
194
+ - test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_with_application_template_plain.html.erb
195
+ - test/plugins/test_plugin_mailing/init.rb
196
+ - test/plugins/test_routing
197
+ - test/plugins/test_routing/app
198
+ - test/plugins/test_routing/app/controllers
199
+ - test/plugins/test_routing/app/controllers/namespace
200
+ - test/plugins/test_routing/app/controllers/namespace/test_routing_controller.rb
201
+ - test/plugins/test_routing/app/controllers/test_routing_controller.rb
202
+ - test/plugins/test_routing/init.rb
203
+ - test/plugins/test_routing/routes.rb
204
+ - test/plugins/test_testing
205
+ - test/plugins/test_testing/init.rb
206
+ - test/plugins/test_testing/test
207
+ - test/plugins/test_testing/test/fixtures
208
+ - test/plugins/test_testing/test/fixtures/testing_fixtures.yml
209
+ - test/unit
210
+ - test/unit/action_mailer_test.rb
211
+ - test/unit/arbitrary_code_mixing_test.rb
212
+ - test/unit/assets_test.rb
213
+ - test/unit/load_path_test.rb
214
+ - test/unit/migration_test.rb
215
+ - test/unit/model_and_lib_test.rb
216
+ - test/unit/plugins_test.rb
217
+ - test/unit/testing_test.rb
218
+ - rails/init.rb
219
+ - about.yml
220
+ - CHANGELOG
221
+ - MIT-LICENSE
222
+ - Rakefile
223
+ - README
224
+ has_rdoc: true
225
+ homepage: http://wiki.oriontransfer.org/?rails:engines
226
+ post_install_message:
227
+ rdoc_options:
228
+ - --main
229
+ - README
230
+ require_paths:
231
+ - lib
232
+ required_ruby_version: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: "0"
237
+ version:
238
+ required_rubygems_version: !ruby/object:Gem::Requirement
239
+ requirements:
240
+ - - ">="
241
+ - !ruby/object:Gem::Version
242
+ version: "0"
243
+ version:
244
+ requirements: []
245
+
246
+ rubyforge_project:
247
+ rubygems_version: 1.2.0
248
+ signing_key:
249
+ specification_version: 2
250
+ summary: Samuel Williams' engines plugin.
251
+ test_files:
252
+ - test/unit/action_mailer_test.rb
253
+ - test/unit/arbitrary_code_mixing_test.rb
254
+ - test/unit/assets_test.rb
255
+ - test/unit/load_path_test.rb
256
+ - test/unit/migration_test.rb
257
+ - test/unit/model_and_lib_test.rb
258
+ - test/unit/plugins_test.rb
259
+ - test/unit/testing_test.rb