Sha256: fbb1c654b04414b2b585ff62ad7628c63861e93da2e6c7448af60224a8d4c50b

Contents?: true

Size: 662 Bytes

Versions: 5

Compression:

Stored size: 662 Bytes

Contents

module Coalla

  module Cms

    module OrmHelpers
      def model_contents
<<-CONTENT
  devise :database_authenticatable, :rememberable, :validatable
CONTENT
      end

      def model_exists?
        File.exists?(File.join(destination_root, model_path))
      end

      def migration_exists?(table_name)
        Dir.glob("#{File.join(destination_root, migration_path)}/[0-9]*_*.rb").grep(/\d+_add_admin_role_to_#{table_name}.rb$/).first
      end

      def migration_path
        @migration_path ||= File.join("db", "migrate")
      end

      def model_path
        @model_path ||= File.join("app", "models", "#{file_path}.rb")
      end
    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
coalla-cms-0.4.2.0 lib/generators/coalla/cms/orm_helpers.rb
coalla-cms-0.5.2.4 lib/generators/coalla/cms/orm_helpers.rb
coalla-cms-0.4.4.3 lib/generators/coalla/cms/orm_helpers.rb
coalla-cms-0.5.1.9 lib/generators/coalla/cms/orm_helpers.rb
coalla-cms-0.5.1.8 lib/generators/coalla/cms/orm_helpers.rb