Sha256: fc5a1c4a457ee8916fdcf47eeedbf937f52ac7aa9c8da9c6b62e75778c870005
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
class BiorubyGenerator < Rails::Generator::Base def manifest record do |m| m.directory 'app/controllers' m.directory 'app/helpers' m.directory 'app/views/bioruby' m.directory 'app/views/layouts' m.directory 'public/images' m.directory 'public/stylesheets' m.file 'bioruby_controller.rb', 'app/controllers/bioruby_controller.rb' m.file 'bioruby_helper.rb', 'app/helpers/bioruby_helper.rb' m.file '_methods.rhtml', 'app/views/bioruby/_methods.rhtml' m.file '_classes.rhtml', 'app/views/bioruby/_classes.rhtml' m.file '_modules.rhtml', 'app/views/bioruby/_modules.rhtml' m.file '_log.rhtml', 'app/views/bioruby/_log.rhtml' m.file '_variables.rhtml', 'app/views/bioruby/_variables.rhtml' m.file 'commands.rhtml', 'app/views/bioruby/commands.rhtml' m.file 'history.rhtml', 'app/views/bioruby/history.rhtml' m.file 'index.rhtml', 'app/views/bioruby/index.rhtml' m.file 'bioruby.rhtml', 'app/views/layouts/bioruby.rhtml' m.file 'bioruby-gem.png', 'public/images/bioruby-gem.png' m.file 'bioruby-link.gif', 'public/images/bioruby-link.gif' m.file 'bioruby-bg.gif', 'public/images/bioruby-bg.gif' m.file 'bioruby-console.png', 'public/images/bioruby-console.png' m.file 'bioruby.css', 'public/stylesheets/bioruby.css' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bio-1.1.0 | lib/bio/shell/rails/vendor/plugins/generators/bioruby/bioruby_generator.rb |