require 'rails/generators' require 'rails/generators/named_base' module CassandraObject module Generators class MigrationGenerator < Rails::Generators::NamedBase source_root File.expand_path("../templates", __FILE__) def self.banner "rails g cassandra_object:migration NAME" end def self.desc(description = nil) <