Top Level Namespace

Defined Under Namespace

Modules: Arfy, RailsFaker, StringPimped Classes: Rails

Instance Method Summary collapse

Instance Method Details

#configured_pathsObject



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/arfy.rb', line 10

def configured_paths
  paths = {}
  paths["config/database"] = "config/database.yml"
  paths["db/seeds"] = "db/seeds.rb"
  migrate_path = String.new("db/migrate")
  def migrate_path.to_a
    [self]
  end
  paths["db/migrate"] = migrate_path
  paths
end