Class: Rails::Generators::PluginGenerator
- Inherits:
-
AppBase
- Object
- Thor::Group
- Base
- AppBase
- Rails::Generators::PluginGenerator
show all
- Defined in:
- lib/rails/generators/rails/plugin/plugin_generator.rb
Overview
Constant Summary
Constants inherited
from AppBase
AppBase::DATABASES, AppBase::JDBC_DATABASES
Instance Attribute Summary
Attributes inherited from AppBase
#rails_template
Instance Method Summary
collapse
Methods inherited from AppBase
add_shared_options_for, strict_args_position
Methods inherited from Base
base_root, class_option, default_source_root, desc, hide!, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Actions
#add_source, #after_bundle, #capify!, #environment, #gem, #gem_group, #generate, #git, #initializer, #lib, #rails_command, #rake, #rakefile, #readme, #route, #vendor
Constructor Details
Returns a new instance of PluginGenerator.
196
197
198
199
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 196
def initialize(*args)
@dummy_path = nil
super
end
|
Instance Method Details
#create_app_files ⇒ Object
213
214
215
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 213
def create_app_files
build(:app)
end
|
#create_assets_manifest_file ⇒ Object
225
226
227
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 225
def create_assets_manifest_file
build(:assets_manifest) if !api? && engine?
end
|
#create_bin_files ⇒ Object
237
238
239
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 237
def create_bin_files
build(:bin)
end
|
#create_config_files ⇒ Object
217
218
219
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 217
def create_config_files
build(:config)
end
|
#create_javascript_files ⇒ Object
233
234
235
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 233
def create_javascript_files
build(:javascripts) unless api?
end
|
#create_lib_files ⇒ Object
221
222
223
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 221
def create_lib_files
build(:lib)
end
|
#create_public_stylesheets_files ⇒ Object
229
230
231
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 229
def create_public_stylesheets_files
build(:stylesheets) unless api?
end
|
#create_root_files ⇒ Object
204
205
206
207
208
209
210
211
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 204
def create_root_files
build(:readme)
build(:rakefile)
build(:gemspec) unless options[:skip_gemspec]
build(:license)
build(:gitignore) unless options[:skip_git]
build(:gemfile) unless options[:skip_gemfile]
end
|
#create_test_dummy_files ⇒ Object
245
246
247
248
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 245
def create_test_dummy_files
return unless with_dummy_app?
create_dummy_app
end
|
#create_test_files ⇒ Object
241
242
243
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 241
def create_test_files
build(:test) unless options[:skip_test]
end
|
#finish_template ⇒ Object
254
255
256
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 254
def finish_template
build(:leftovers)
end
|
#name ⇒ Object
266
267
268
269
270
271
272
273
274
275
276
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 266
def name
@name ||= begin
underscored = original_name.dup
underscored.gsub!(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
underscored.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
underscored.downcase!
underscored
end
end
|
#namespaced_name ⇒ Object
282
283
284
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 282
def namespaced_name
@namespaced_name ||= name.tr("-", "/")
end
|
#run_after_bundle_callbacks ⇒ Object
260
261
262
263
264
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 260
def run_after_bundle_callbacks
@after_bundle_callbacks.each do |callback|
callback.call
end
end
|
#underscored_name ⇒ Object
278
279
280
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 278
def underscored_name
@underscored_name ||= original_name.underscore
end
|
#update_gemfile ⇒ Object
250
251
252
|
# File 'lib/rails/generators/rails/plugin/plugin_generator.rb', line 250
def update_gemfile
build(:gemfile_entry) unless options[:skip_gemfile_entry]
end
|