view_mapper 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. data/README.rdoc +4 -2
  2. data/VERSION +1 -1
  3. data/generators/scaffold_for_view/scaffold_for_view_generator.rb +2 -6
  4. data/generators/view_for/view_for_generator.rb +1 -5
  5. data/lib/view_mapper/{has_many_view.rb → has_many_child_models.rb} +33 -37
  6. data/lib/view_mapper/model_info.rb +8 -0
  7. data/lib/view_mapper/view_mapper.rb +15 -2
  8. data/lib/view_mapper/views/auto_complete/auto_complete_view.rb +77 -0
  9. data/lib/view_mapper/{auto_complete_templates → views/auto_complete/templates}/controller.rb +3 -1
  10. data/lib/view_mapper/{auto_complete_templates → views/auto_complete/templates}/layout.html.erb +0 -0
  11. data/lib/view_mapper/{auto_complete_templates → views/auto_complete/templates}/view_edit.html.erb +1 -1
  12. data/lib/view_mapper/{auto_complete_templates → views/auto_complete/templates}/view_new.html.erb +1 -1
  13. data/lib/view_mapper/views/has_many/has_many_view.rb +28 -0
  14. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/helper.rb +0 -0
  15. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/layout.html.erb +0 -0
  16. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/model.rb +0 -0
  17. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/nested_attributes.js +0 -0
  18. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/style.css +0 -0
  19. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/view_child_form.html.erb +0 -0
  20. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/view_edit.html.erb +0 -0
  21. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/view_form.html.erb +0 -0
  22. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/view_new.html.erb +0 -0
  23. data/lib/view_mapper/{has_many_templates → views/has_many/templates}/view_show.html.erb +0 -0
  24. data/lib/view_mapper/{paperclip_view.rb → views/paperclip/paperclip_view.rb} +6 -2
  25. data/lib/view_mapper/{paperclip_templates → views/paperclip/templates}/migration.rb +1 -1
  26. data/lib/view_mapper/{paperclip_templates → views/paperclip/templates}/model.rb +0 -0
  27. data/lib/view_mapper/{paperclip_templates → views/paperclip/templates}/view_edit.html.erb +0 -0
  28. data/lib/view_mapper/{paperclip_templates → views/paperclip/templates}/view_new.html.erb +0 -0
  29. data/lib/view_mapper/{paperclip_templates → views/paperclip/templates}/view_show.html.erb +0 -0
  30. data/lib/view_mapper.rb +4 -3
  31. data/test/{fake → generators/fake}/fake_generator.rb +0 -0
  32. data/test/generators/fake/templates/fake_template1.html.erb +1 -0
  33. data/test/generators/fake/templates/fake_template2.html.erb +1 -0
  34. data/test/{scaffold_for_view_generator_test.rb → generators/scaffold_for_view/scaffold_for_view_generator_test.rb} +2 -2
  35. data/test/{view_for_generator_test.rb → generators/view_for/view_for_generator_test.rb} +0 -0
  36. data/test/model_info_test.rb +12 -3
  37. data/test/test_helper.rb +12 -8
  38. data/test/view_mapper_test.rb +13 -2
  39. data/test/{auto_complete_test.rb → views/auto_complete/auto_complete_test.rb} +63 -40
  40. data/test/{expected_templates/auto_complete/index.html.erb → views/auto_complete/expected_templates/actual_index} +2 -0
  41. data/test/{expected_templates/auto_complete → views/auto_complete/expected_templates}/edit.html.erb +7 -3
  42. data/test/{expected_templates/auto_complete → views/auto_complete/expected_templates}/expected_routes.rb +0 -0
  43. data/test/{expected_templates/paperclip → views/auto_complete/expected_templates}/index.html.erb +3 -1
  44. data/test/{expected_templates/auto_complete → views/auto_complete/expected_templates}/new.html.erb +7 -3
  45. data/test/{expected_templates/auto_complete → views/auto_complete/expected_templates}/show.html.erb +6 -1
  46. data/test/{expected_templates/auto_complete → views/auto_complete/expected_templates}/standard_routes.rb +0 -0
  47. data/test/{expected_templates/auto_complete → views/auto_complete/expected_templates}/testies.html.erb +0 -0
  48. data/test/{expected_templates/auto_complete → views/auto_complete/expected_templates}/testies_controller.rb +2 -1
  49. data/test/views/fake/fake_view.rb +7 -0
  50. data/test/views/fake/templates/fake_template1.html.erb +1 -0
  51. data/test/{expected_templates/has_many → views/has_many/expected_templates}/_form.html.erb +0 -0
  52. data/test/{expected_templates/has_many → views/has_many/expected_templates}/_person.html.erb +4 -0
  53. data/test/{expected_templates/has_many → views/has_many/expected_templates}/create_parents.rb +4 -3
  54. data/test/{expected_templates/has_many → views/has_many/expected_templates}/edit.html.erb +0 -0
  55. data/test/{expected_templates/has_many → views/has_many/expected_templates}/index.html.erb +1 -1
  56. data/test/{expected_templates/has_many → views/has_many/expected_templates}/new.html.erb +0 -0
  57. data/test/{expected_templates/has_many → views/has_many/expected_templates}/parent.rb +2 -1
  58. data/test/{expected_templates/has_many → views/has_many/expected_templates}/show.html.erb +4 -0
  59. data/test/{has_many_view_test.rb → views/has_many/has_many_view_test.rb} +17 -17
  60. data/test/{expected_templates/paperclip → views/paperclip/expected_templates}/create_testies.rb +4 -3
  61. data/test/{expected_templates/paperclip → views/paperclip/expected_templates}/edit.html.erb +4 -0
  62. data/test/views/paperclip/expected_templates/index.html.erb +26 -0
  63. data/test/{expected_templates/paperclip → views/paperclip/expected_templates}/new.html.erb +4 -0
  64. data/test/{expected_templates/paperclip → views/paperclip/expected_templates}/show.html.erb +5 -0
  65. data/test/{expected_templates/paperclip → views/paperclip/expected_templates}/testy.rb +0 -0
  66. data/test/{paperclip_view_test.rb → views/paperclip/paperclip_view_test.rb} +17 -9
  67. data/view_mapper.gemspec +77 -124
  68. metadata +72 -120
  69. data/lib/view_mapper/auto_complete_templates/functional_test.rb +0 -45
  70. data/lib/view_mapper/auto_complete_templates/helper.rb +0 -2
  71. data/lib/view_mapper/auto_complete_templates/helper_test.rb +0 -4
  72. data/lib/view_mapper/auto_complete_templates/style.css +0 -54
  73. data/lib/view_mapper/auto_complete_templates/view_index.html.erb +0 -24
  74. data/lib/view_mapper/auto_complete_templates/view_show.html.erb +0 -10
  75. data/lib/view_mapper/auto_complete_view.rb +0 -44
  76. data/lib/view_mapper/has_many_templates/controller.rb +0 -85
  77. data/lib/view_mapper/has_many_templates/fixtures.yml +0 -19
  78. data/lib/view_mapper/has_many_templates/functional_test.rb +0 -45
  79. data/lib/view_mapper/has_many_templates/helper_test.rb +0 -4
  80. data/lib/view_mapper/has_many_templates/migration.rb +0 -16
  81. data/lib/view_mapper/has_many_templates/unit_test.rb +0 -8
  82. data/lib/view_mapper/has_many_templates/view_index.html.erb +0 -24
  83. data/lib/view_mapper/paperclip_templates/controller.rb +0 -85
  84. data/lib/view_mapper/paperclip_templates/fixtures.yml +0 -19
  85. data/lib/view_mapper/paperclip_templates/functional_test.rb +0 -45
  86. data/lib/view_mapper/paperclip_templates/helper.rb +0 -2
  87. data/lib/view_mapper/paperclip_templates/helper_test.rb +0 -4
  88. data/lib/view_mapper/paperclip_templates/layout.html.erb +0 -17
  89. data/lib/view_mapper/paperclip_templates/style.css +0 -54
  90. data/lib/view_mapper/paperclip_templates/unit_test.rb +0 -8
  91. data/lib/view_mapper/paperclip_templates/view_index.html.erb +0 -24
  92. data/test/database.yml +0 -3
  93. data/test/fake_view.rb +0 -7
  94. data/test/rails_generator/base.rb +0 -266
  95. data/test/rails_generator/commands.rb +0 -621
  96. data/test/rails_generator/generated_attribute.rb +0 -46
  97. data/test/rails_generator/generators/components/model/model_generator.rb +0 -45
  98. data/test/rails_generator/generators/components/scaffold/scaffold_generator.rb +0 -102
  99. data/test/rails_generator/lookup.rb +0 -249
  100. data/test/rails_generator/manifest.rb +0 -53
  101. data/test/rails_generator/options.rb +0 -150
  102. data/test/rails_generator/scripts/destroy.rb +0 -29
  103. data/test/rails_generator/scripts/generate.rb +0 -7
  104. data/test/rails_generator/scripts/update.rb +0 -12
  105. data/test/rails_generator/scripts.rb +0 -89
  106. data/test/rails_generator/secret_key_generator.rb +0 -24
  107. data/test/rails_generator/simple_logger.rb +0 -46
  108. data/test/rails_generator/spec.rb +0 -44
@@ -1,266 +0,0 @@
1
- require File.dirname(__FILE__) + '/options'
2
- require File.dirname(__FILE__) + '/manifest'
3
- require File.dirname(__FILE__) + '/spec'
4
- require File.dirname(__FILE__) + '/generated_attribute'
5
-
6
- module Rails
7
- # Rails::Generator is a code generation platform tailored for the Rails
8
- # web application framework. Generators are easily invoked within Rails
9
- # applications to add and remove components such as models and controllers.
10
- # New generators are easy to create and may be distributed as RubyGems,
11
- # tarballs, or Rails plugins for inclusion system-wide, per-user,
12
- # or per-application.
13
- #
14
- # For actual examples see the rails_generator/generators directory in the
15
- # Rails source (or the +railties+ directory if you have frozen the Rails
16
- # source in your application).
17
- #
18
- # Generators may subclass other generators to provide variations that
19
- # require little or no new logic but replace the template files.
20
- #
21
- # For a RubyGem, put your generator class and templates in the +lib+
22
- # directory. For a Rails plugin, make a +generators+ directory at the
23
- # root of your plugin.
24
- #
25
- # The layout of generator files can be seen in the built-in
26
- # +controller+ generator:
27
- #
28
- # generators/
29
- # components/
30
- # controller/
31
- # controller_generator.rb
32
- # templates/
33
- # controller.rb
34
- # functional_test.rb
35
- # helper.rb
36
- # view.html.erb
37
- #
38
- # The directory name (+controller+) matches the name of the generator file
39
- # (controller_generator.rb) and class (ControllerGenerator). The files
40
- # that will be copied or used as templates are stored in the +templates+
41
- # directory.
42
- #
43
- # The filenames of the templates don't matter, but choose something that
44
- # will be self-explanatory since you will be referencing these in the
45
- # +manifest+ method inside your generator subclass.
46
- #
47
- #
48
- module Generator
49
- class GeneratorError < StandardError; end
50
- class UsageError < GeneratorError; end
51
-
52
-
53
- # The base code generator is bare-bones. It sets up the source and
54
- # destination paths and tells the logger whether to keep its trap shut.
55
- #
56
- # It's useful for copying files such as stylesheets, images, or
57
- # javascripts.
58
- #
59
- # For more comprehensive template-based passive code generation with
60
- # arguments, you'll want Rails::Generator::NamedBase.
61
- #
62
- # Generators create a manifest of the actions they perform then hand
63
- # the manifest to a command which replays the actions to do the heavy
64
- # lifting (such as checking for existing files or creating directories
65
- # if needed). Create, destroy, and list commands are included. Since a
66
- # single manifest may be used by any command, creating new generators is
67
- # as simple as writing some code templates and declaring what you'd like
68
- # to do with them.
69
- #
70
- # The manifest method must be implemented by subclasses, returning a
71
- # Rails::Generator::Manifest. The +record+ method is provided as a
72
- # convenience for manifest creation. Example:
73
- #
74
- # class StylesheetGenerator < Rails::Generator::Base
75
- # def manifest
76
- # record do |m|
77
- # m.directory('public/stylesheets')
78
- # m.file('application.css', 'public/stylesheets/application.css')
79
- # end
80
- # end
81
- # end
82
- #
83
- # See Rails::Generator::Commands::Create for a list of methods available
84
- # to the manifest.
85
- class Base
86
- include Options
87
-
88
- # Declare default options for the generator. These options
89
- # are inherited to subclasses.
90
- default_options :collision => :ask, :quiet => false
91
-
92
- # A logger instance available everywhere in the generator.
93
- cattr_accessor :logger
94
-
95
- # Every generator that is dynamically looked up is tagged with a
96
- # Spec describing where it was found.
97
- class_inheritable_accessor :spec
98
-
99
- attr_reader :source_root, :destination_root, :args
100
-
101
- def initialize(runtime_args, runtime_options = {})
102
- @args = runtime_args
103
- parse!(@args, runtime_options)
104
-
105
- # Derive source and destination paths.
106
- @source_root = options[:source] || File.join(spec.path, 'templates')
107
- if options[:destination]
108
- @destination_root = options[:destination]
109
- elsif defined? ::RAILS_ROOT
110
- @destination_root = ::RAILS_ROOT
111
- end
112
-
113
- # Silence the logger if requested.
114
- logger.quiet = options[:quiet]
115
-
116
- # Raise usage error if help is requested.
117
- usage if options[:help]
118
- end
119
-
120
- # Generators must provide a manifest. Use the +record+ method to create
121
- # a new manifest and record your generator's actions.
122
- def manifest
123
- raise NotImplementedError, "No manifest for '#{spec.name}' generator."
124
- end
125
-
126
- # Return the full path from the source root for the given path.
127
- # Example for source_root = '/source':
128
- # source_path('some/path.rb') == '/source/some/path.rb'
129
- #
130
- # The given path may include a colon ':' character to indicate that
131
- # the file belongs to another generator. This notation allows any
132
- # generator to borrow files from another. Example:
133
- # source_path('model:fixture.yml') = '/model/source/path/fixture.yml'
134
- def source_path(relative_source)
135
- # Check whether we're referring to another generator's file.
136
- name, path = relative_source.split(':', 2)
137
-
138
- # If not, return the full path to our source file.
139
- if path.nil?
140
- File.join(source_root, name)
141
-
142
- # Otherwise, ask our referral for the file.
143
- else
144
- # FIXME: this is broken, though almost always true. Others'
145
- # source_root are not necessarily the templates dir.
146
- File.join(self.class.lookup(name).path, 'templates', path)
147
- end
148
- end
149
-
150
- # Return the full path from the destination root for the given path.
151
- # Example for destination_root = '/dest':
152
- # destination_path('some/path.rb') == '/dest/some/path.rb'
153
- def destination_path(relative_destination)
154
- File.join(destination_root, relative_destination)
155
- end
156
-
157
- def after_generate
158
- end
159
-
160
- protected
161
- # Convenience method for generator subclasses to record a manifest.
162
- def record
163
- Rails::Generator::Manifest.new(self) { |m| yield m }
164
- end
165
-
166
- # Override with your own usage banner.
167
- def banner
168
- "Usage: #{$0} #{spec.name} [options]"
169
- end
170
-
171
- # Read USAGE from file in generator base path.
172
- def usage_message
173
- File.read(File.join(spec.path, 'USAGE')) rescue ''
174
- end
175
- end
176
-
177
-
178
- # The base generator for named components: models, controllers, mailers,
179
- # etc. The target name is taken as the first argument and inflected to
180
- # singular, plural, class, file, and table forms for your convenience.
181
- # The remaining arguments are aliased to +actions+ as an array for
182
- # controller and mailer convenience.
183
- #
184
- # Several useful local variables and methods are populated in the
185
- # +initialize+ method. See below for a list of Attributes and
186
- # External Aliases available to both the manifest and to all templates.
187
- #
188
- # If no name is provided, the generator raises a usage error with content
189
- # optionally read from the USAGE file in the generator's base path.
190
- #
191
- # For example, the +controller+ generator takes the first argument as
192
- # the name of the class and subsequent arguments as the names of
193
- # actions to be generated:
194
- #
195
- # ./script/generate controller Article index new create
196
- #
197
- # See Rails::Generator::Base for a discussion of manifests,
198
- # Rails::Generator::Commands::Create for methods available to the manifest,
199
- # and Rails::Generator for a general discussion of generators.
200
- class NamedBase < Base
201
- attr_reader :name, :class_name, :singular_name, :plural_name, :table_name
202
- attr_reader :class_path, :file_path, :class_nesting, :class_nesting_depth
203
- alias_method :file_name, :singular_name
204
- alias_method :actions, :args
205
-
206
- def initialize(runtime_args, runtime_options = {})
207
- super
208
-
209
- # Name argument is required.
210
- usage if runtime_args.empty?
211
-
212
- @args = runtime_args.dup
213
- base_name = @args.shift
214
- assign_names!(base_name)
215
- end
216
-
217
- protected
218
- # Override with your own usage banner.
219
- def banner
220
- "Usage: #{$0} #{spec.name} #{spec.name.camelize}Name [options]"
221
- end
222
-
223
- def attributes
224
- @attributes ||= @args.collect do |attribute|
225
- Rails::Generator::GeneratedAttribute.new(*attribute.split(":"))
226
- end
227
- end
228
-
229
-
230
- private
231
- def assign_names!(name)
232
- @name = name
233
- base_name, @class_path, @file_path, @class_nesting, @class_nesting_depth = extract_modules(@name)
234
- @class_name_without_nesting, @singular_name, @plural_name = inflect_names(base_name)
235
- @table_name = (!defined?(ActiveRecord::Base) || ActiveRecord::Base.pluralize_table_names) ? plural_name : singular_name
236
- @table_name.gsub! '/', '_'
237
- if @class_nesting.empty?
238
- @class_name = @class_name_without_nesting
239
- else
240
- @table_name = @class_nesting.underscore << "_" << @table_name
241
- @class_name = "#{@class_nesting}::#{@class_name_without_nesting}"
242
- end
243
- end
244
-
245
- # Extract modules from filesystem-style or ruby-style path:
246
- # good/fun/stuff
247
- # Good::Fun::Stuff
248
- # produce the same results.
249
- def extract_modules(name)
250
- modules = name.include?('/') ? name.split('/') : name.split('::')
251
- name = modules.pop
252
- path = modules.map { |m| m.underscore }
253
- file_path = (path + [name.underscore]).join('/')
254
- nesting = modules.map { |m| m.camelize }.join('::')
255
- [name, path, file_path, nesting, modules.size]
256
- end
257
-
258
- def inflect_names(name)
259
- camel = name.camelize
260
- under = camel.underscore
261
- plural = under.pluralize
262
- [camel, under, plural]
263
- end
264
- end
265
- end
266
- end