Hi all, I have a question about metacello configuration. Given the following default method: *ConfigurationOfFAMIXSQL>>default: spec <version: 'default'> spec for: #common do: [ spec blessing: #default. spec repository: 'http://www.squeaksource.com/Moose'. spec project: 'PetitSQLParser for MooseJEE' with: [ spec className: 'ConfigurationOfPetitSQLParser'; file: 'ConfigurationOfPetitSQLParser'; version: 'default'; repository: 'http://www.squeaksource.com/PetitSQLParser' ]. spec "Core" package: 'Famix-SQL'; "importers" package: 'Moose-SQL-Importer' with: [spec requires: #('PetitSQLParser for MooseJEE' 'Famix-SQL').]; "Tests" package: 'Famix-Tests-SQL'with: [spec requires: 'Famix-SQL']; package: 'Moose-Tests-SQL-Importer' with: [spec requires: 'Moose-SQL-Importer']. spec group: 'Model' with: #('Famix-SQL'). spec group: 'Model-Tests' with: #('Famix-Tests-SQL'). spec group: 'Importer' with: #('Moose-SQL-Importer'). spec group: 'Importer-Tests' with: #('Moose-Tests-SQL-Importer'). spec group: 'default' with: #('Model' 'Importer'). ]* When I ask to load default. What metacello look at: the pragma, the blessing: or the group:? It would be possible to load just the Model group? and How can I do that? Thanks a lot, Fabrizio