Sha256: cf9431a19e59743e594f9b161db5da265d735591df4f53f786dd1141e11a7600
Contents?: true
Size: 1.62 KB
Versions: 2
Compression:
Stored size: 1.62 KB
Contents
# A class that encapsulates the interaction with the Rails framework. # # Dec 2008 - Roy Wright # created to support the Rails application framework # class RailsFramework attr_reader :name, :migration_version def initialize require "config/environment" @name = 'Rails' @migration_version = ActiveRecord::Migrator.current_version end # is the given class a subclass of the application controller? def is_application_subclass?(klass) (ApplicationController.subclasses.include? klass.name) end # get the controller's files returning the application controller first in returned array def get_controller_files(options) files = [] files << 'app/controllers/application_controller.rb' if File.exist?('app/controllers/application_controller.rb') files << 'app/controllers/application.rb' if File.exist?('app/controllers/application.rb') files += Dir.glob("app/controllers/**/*_controller.rb") - options.exclude files.uniq end # Extract class name from filename def extract_class_name(filename) # handle subdirectories as modules # i.e., app/controllers/foo/bar.rb => Foo::Bar if filename =~ /^app\/controllers\/(.*)\.rb$/ class_name = $1.split('/').collect {|part| part.camelize}.join('::') else class_name = File.basename(filename).chomp(".rb").camelize end if filename == 'app/controllers/application.rb' # ApplicationController's file is 'application.rb' class_name += 'Controller' if class_name == 'Application' end class_name end # convert the give string to a constant def constantize(str) str.constantize end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
royw-railroad_xing-0.5.2 | lib/railroad/rails_framework.rb |
royw-railroad_xing-0.5.3 | lib/railroad/rails_framework.rb |