Method: PGit::Configuration.default_options

Defined in:
lib/pgit/configuration.rb

.default_optionsObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/pgit/configuration.rb', line 11

def self.default_options
  {
    'projects' => [
      {
        'api_token' => 'somepivotalatoken124',
        'id' => '12345',
        "path" => "~/some/path/to/a/pivotal-git/project"
      },
      {
        'api_token' => 'somepivotalatoken124',
        'id' => '23429070',
        "path" => "~/some/other/pivotal-git/project"
      }
    ]
  }
end