view_mapper 0.1.0

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 (59) hide show
  1. data/.document +5 -0
  2. data/.gitignore +5 -0
  3. data/LICENSE +20 -0
  4. data/README +116 -0
  5. data/Rakefile +57 -0
  6. data/VERSION +1 -0
  7. data/generators/scaffold_for_view/USAGE +1 -0
  8. data/generators/scaffold_for_view/scaffold_for_view_generator.rb +37 -0
  9. data/generators/view_for/USAGE +1 -0
  10. data/generators/view_for/view_for_generator.rb +85 -0
  11. data/lib/view_mapper/auto_complete_templates/controller.rb +88 -0
  12. data/lib/view_mapper/auto_complete_templates/functional_test.rb +45 -0
  13. data/lib/view_mapper/auto_complete_templates/helper.rb +2 -0
  14. data/lib/view_mapper/auto_complete_templates/helper_test.rb +4 -0
  15. data/lib/view_mapper/auto_complete_templates/layout.html.erb +18 -0
  16. data/lib/view_mapper/auto_complete_templates/style.css +54 -0
  17. data/lib/view_mapper/auto_complete_templates/view_edit.html.erb +21 -0
  18. data/lib/view_mapper/auto_complete_templates/view_index.html.erb +24 -0
  19. data/lib/view_mapper/auto_complete_templates/view_new.html.erb +20 -0
  20. data/lib/view_mapper/auto_complete_templates/view_show.html.erb +10 -0
  21. data/lib/view_mapper/auto_complete_view.rb +44 -0
  22. data/lib/view_mapper/editable_manifest.rb +10 -0
  23. data/lib/view_mapper/route_action.rb +32 -0
  24. data/lib/view_mapper/view_mapper.rb +33 -0
  25. data/lib/view_mapper.rb +4 -0
  26. data/test/auto_complete_test.rb +146 -0
  27. data/test/database.yml +3 -0
  28. data/test/editable_manifest_test.rb +32 -0
  29. data/test/expected_templates/auto_complete/edit.html.erb +23 -0
  30. data/test/expected_templates/auto_complete/expected_routes.rb +45 -0
  31. data/test/expected_templates/auto_complete/index.html.erb +24 -0
  32. data/test/expected_templates/auto_complete/new.html.erb +22 -0
  33. data/test/expected_templates/auto_complete/show.html.erb +18 -0
  34. data/test/expected_templates/auto_complete/standard_routes.rb +43 -0
  35. data/test/expected_templates/auto_complete/testies.html.erb +18 -0
  36. data/test/expected_templates/auto_complete/testies_controller.rb +88 -0
  37. data/test/fake/fake_generator.rb +3 -0
  38. data/test/fake_view.rb +7 -0
  39. data/test/rails_generator/base.rb +266 -0
  40. data/test/rails_generator/commands.rb +621 -0
  41. data/test/rails_generator/generated_attribute.rb +46 -0
  42. data/test/rails_generator/generators/components/scaffold/scaffold_generator.rb +102 -0
  43. data/test/rails_generator/lookup.rb +249 -0
  44. data/test/rails_generator/manifest.rb +53 -0
  45. data/test/rails_generator/options.rb +150 -0
  46. data/test/rails_generator/scripts/destroy.rb +29 -0
  47. data/test/rails_generator/scripts/generate.rb +7 -0
  48. data/test/rails_generator/scripts/update.rb +12 -0
  49. data/test/rails_generator/scripts.rb +89 -0
  50. data/test/rails_generator/secret_key_generator.rb +24 -0
  51. data/test/rails_generator/simple_logger.rb +46 -0
  52. data/test/rails_generator/spec.rb +44 -0
  53. data/test/rails_generator.rb +43 -0
  54. data/test/scaffold_for_view_generator_test.rb +77 -0
  55. data/test/test_helper.rb +43 -0
  56. data/test/view_for_generator_test.rb +93 -0
  57. data/test/view_mapper_test.rb +29 -0
  58. data/view_mapper.gemspec +125 -0
  59. metadata +147 -0
@@ -0,0 +1,266 @@
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