/PathView

Primary LanguageSmalltalkMIT LicenseMIT

PathView Build Status

Install in 4.6 and use a cloned repository with filetree

"install path view from local filetree"
{
 Metacello new
  baseline: 'PathView';
  repository: 'filetree://absolute-path-to-git-repository/packages'.
}
 do: [ :baseline | baseline get ];
 do: [ :baseline | baseline
  onConflict: [ :ex | ex allow ];
  load: 'Tests'
].

Install in 4.6 and pull code directly from github

"Install PathView@presentation-release"
{
Metacello new
	baseline: 'PathView';
	githubUser: 'hpi-swa-teaching'
	project: 'PathView'
	commitish: 'final-release'
	path: 'packages'
}
do: [ :baseline | baseline get ];
do: [ :baseline | baseline
	onConflict: [ :ex | ex allow ];
	load: 'Tests' ].