Skip to content

Commit

Permalink
Added a fix for Pharo 6, 7 for LibrarySymbolNotFoundError
Browse files Browse the repository at this point in the history
  • Loading branch information
olekscode committed Jul 11, 2019
1 parent 95bc216 commit 707791b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/BaselineOfDataFrame/BaselineOfDataFrame.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,16 @@ BaselineOfDataFrame >> baseline: spec [
package: 'DataFrame-IO' with: [ spec requires: #('DataFrame' 'DataFrame-Type' 'NeoCSV') ];
package: 'DataFrame-IO-Tests' with: [ spec requires: #('DataFrame-IO') ]].

spec
for: #'pharo7.x'
do: [
spec
package: 'DataFrame-Pharo67' ].

spec
for: #'pharo6.x'
do: [ spec package: 'DataFrame-Pharo6' ]
do: [
spec
package: 'DataFrame-Pharo6';
package: 'DataFrame-Pharo67' ].
]
5 changes: 5 additions & 0 deletions src/DataFrame-Pharo67/LibrarySymbolNotFoundError.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Class {
#name : #LibrarySymbolNotFoundError,
#superclass : #NotFoundError,
#category : #'DataFrame-Pharo67'
}
1 change: 1 addition & 0 deletions src/DataFrame-Pharo67/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #'DataFrame-Pharo67' }

0 comments on commit 707791b

Please sign in to comment.