class TokyoMetro::Rake::Rails::Deploy::Heroku::Csv::Command::MetaClass::Table

Public Class Methods

new( table ) click to toggle source
# File lib/tokyo_metro/rake/rails/deploy/heroku/csv/command/meta_class/table.rb, line 3
def initialize( table )
  @table = table
end

Public Instance Methods

begin_with_sharp?() click to toggle source
# File lib/tokyo_metro/rake/rails/deploy/heroku/csv/command/meta_class/table.rb, line 11
def begin_with_sharp?
  /\A\#/ === @table
end
schema_migrations?() click to toggle source
# File lib/tokyo_metro/rake/rails/deploy/heroku/csv/command/meta_class/table.rb, line 7
def schema_migrations?
  @table == "schema_migrations"
end
to_s() click to toggle source
# File lib/tokyo_metro/rake/rails/deploy/heroku/csv/command/meta_class/table.rb, line 15
def to_s
  @table.gsub( /\A\#\s+/ , "" )
end