# encoding : utf-8 class BeautifulScaffoldGenerator < Rails::Generators::Base require 'beautiful_scaffold_common_methods' include BeautifulScaffoldCommonMethods # Resources # Generator : http://guides.rubyonrails.org/generators.html # ActiveAdmin with MetaSearch : https://github.com/gregbell/active_admin/tree/master/lib/active_admin # MetaSearch and ransack : https://github.com/ernie/meta_search & http://erniemiller.org/projects/metasearch/#description & http://github.com/ernie/ransack # Generator of rails : https://github.com/rails/rails/blob/master/railties/lib/rails/generators/erb/scaffold/scaffold_generator.rb #include Rails::Generators::ResourceHelpers source_root File.expand_path('../templates', __FILE__) argument :model, :type => :string, :desc => "Name of model (downcase singular)" argument :myattributes, :type => :array, :default => [], :banner => "field:type field:type" class_option :namespace, :default => nil class_option :donttouchgem, :default => nil def install_gems if options[:donttouchgem].blank? then require_gems end #inside Rails.root do # Bug ?! Bundler.with_clean_env do run "bundle install" end end def add_field_for_fulltext @beautiful_attributes = myattributes.dup @fulltext_field = [] myattributes.each{ |attr| a,t = attr.split(':') if ['richtext', 'wysiwyg'].include?(t) then # _typetext = {bbcode|html|text|wiki|textile|markdown} # _fulltext = text without any code @fulltext_field << [a + '_typetext', 'string'].join(':') @fulltext_field << [a + '_fulltext', 'text'].join(':') end } end def mimetype if not File.exist?("app/controllers/beautiful_controller.rb") then inject_into_file("config/initializers/mime_types.rb", 'Mime::Type.register_alias "application/pdf", :pdf' + "\n", :before => "# Be sure to restart your server when you modify this file." ) end end def generate_assets stylesheetspath = "app/assets/stylesheets/" # Css reset = "#{stylesheetspath}reset.css" bc_css = [ "#{stylesheetspath}application-bs.css", "#{stylesheetspath}datepicker.css", "#{stylesheetspath}timepicker.css", "#{stylesheetspath}beautiful-scaffold.css.scss", "#{stylesheetspath}tagit-dark-grey.css", "#{stylesheetspath}colorpicker.css", "#{stylesheetspath}bootstrap-wysihtml5.css" ] javascriptspath = "app/assets/javascripts/" # Js bc_js = [ "#{javascriptspath}application-bs.js", "#{javascriptspath}beautiful_scaffold.js", "#{javascriptspath}bootstrap-datepicker.js", "#{javascriptspath}bootstrap-datetimepicker-for-beautiful-scaffold.js", "#{javascriptspath}bootstrap-timepicker.js", "#{javascriptspath}jquery.livequery.js", "#{javascriptspath}jquery.jstree.js", "#{javascriptspath}jquery-barcode.js", "#{javascriptspath}tagit.js", "#{javascriptspath}bootstrap-colorpicker.js", "#{javascriptspath}a-wysihtml5-0.3.0.min.js", "#{javascriptspath}bootstrap-wysihtml5.js", "#{javascriptspath}fixed_menu.js" ] [reset, bc_css, bc_js].flatten.each{ |path| copy_file path, path } # Jstree theme directory "app/assets/stylesheets/themes", "app/assets/stylesheets/themes" # Images dir_image = "app/assets/images" directory dir_image, dir_image # Old method #generate("bootstrap:install","static") # New method copy_file "#{stylesheetspath}bootstrap_and_overrides.css.less", "#{stylesheetspath}bootstrap_and_overrides.css.less" end def generate_layout template "app/views/layout.html.erb", "app/views/layouts/beautiful_layout.html.erb" if not File.exist?("app/views/layouts/_beautiful_menu.html.erb") then template "app/views/_beautiful_menu.html.erb", "app/views/layouts/_beautiful_menu.html.erb" end empty_directory "app/views/beautiful" template "app/views/dashboard.html.erb", "app/views/beautiful/dashboard.html.erb" copy_file "app/views/_modal_columns.html.erb", "app/views/layouts/_modal_columns.html.erb" copy_file "app/views/_mass_inserting.html.erb", "app/views/layouts/_mass_inserting.html.erb" inject_into_file("app/views/layouts/_beautiful_menu.html.erb",'