module DoorkeeperSequel class MigrationGenerator < ::Thor::Group include ::Thor::Actions include MigrationActions source_root File.expand_path('../templates', __FILE__) desc 'Installs Doorkeeper Sequel migration file.' def install create_migration 'migration.rb' end end end