-
Notifications
You must be signed in to change notification settings - Fork 11
93 support for SQLite #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1431f33
7183396
7867dd3
5a27326
851b5d0
f391cab
7eaa6a8
1377b0d
06f8dc6
b5a3dce
6909709
74e3186
ef28a4a
72706ee
5ac8404
d1c2515
2441876
c21dd99
cc6e2b6
3b678b2
7b2e417
2e4b985
c12c5db
34d9b01
c1665b4
270fd5d
8b79ca3
a203cc5
1ab67e9
7d842cb
cb7bbbf
c6a54ba
f138928
9ed4ee9
90aa096
0f75590
3c9eeeb
8dfa0f8
8523bcf
06d1585
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,9 +35,10 @@ BaselineOfMapless >> baseline: spec [ | |
group: 'Mongo' with: #('Mapless-Mongo-Tests'); | ||
group: 'Redis' with: #('Mapless-Redis-Tests'); | ||
group: 'Postgres' with: #('Mapless-Postgres-Tests'); | ||
group: 'SQLite' with: #('Mapless-SQLite-Tests'); | ||
group: 'UnQLite' with: #('Mapless-UnQLite-Tests'); | ||
group: 'Benchmark' with: #('Mapless-Benchmark-Core'); | ||
group: 'default' with: #('Memory' 'Mongo') ] | ||
group: 'default' with: #('Memory' 'SQLite') ] | ||
] | ||
|
||
{ #category : #baseline } | ||
|
@@ -69,9 +70,11 @@ BaselineOfMapless >> setUpBasePackages: spec [ | |
|
||
{ #category : #baseline } | ||
BaselineOfMapless >> setUpMongoDependencies: spec [ | ||
spec | ||
baseline: 'MongoTalk' | ||
with: [ spec repository: 'github://pharo-nosql/mongotalk:1.25/mc' ] | ||
|
||
spec baseline: 'MongoTalk' with: [ | ||
spec | ||
repository: 'github://pharo-nosql/mongotalk:v2.0/mc'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To discuss why a specific version is needed here (v2.0) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @fgarau as Mapless is used in production, all its dependencies need to be version pinned. Actually you reminded me we can pin a couple more! Thanks for commenting about it. PS: MongoTalk 2.0 is needed for accessing MongoDB from Pharo 10 and 10 |
||
loads: #( Client 'Mongo-DriverLegacy' ) ] | ||
] | ||
|
||
{ #category : #baseline } | ||
|
@@ -104,6 +107,9 @@ BaselineOfMapless >> setUpPackages: spec [ | |
self setUpPostgresDependencies: spec. | ||
self setUpPostgresPackages: spec. | ||
|
||
self setUpSQLiteDependencies: spec. | ||
self setUpSQLitePackages: spec. | ||
|
||
self setUpUnQLiteDependencies: spec. | ||
self setUpUnQLitePackages: spec | ||
] | ||
|
@@ -142,6 +148,25 @@ BaselineOfMapless >> setUpRedisPackages: spec [ | |
with: [ spec requires: #('Mapless-Redis-Core' 'Mapless-Tests-Base') ] | ||
] | ||
|
||
{ #category : #baseline } | ||
BaselineOfMapless >> setUpSQLiteDependencies: spec [ | ||
spec | ||
baseline: 'SQLite3' | ||
with: [ spec | ||
repository: 'github://pharo-rdbms/Pharo-SQLite3/src'; | ||
loads: #('Core') ] | ||
] | ||
|
||
{ #category : #baseline } | ||
BaselineOfMapless >> setUpSQLitePackages: spec [ | ||
spec | ||
package: 'Mapless-SQLite-Core' | ||
with: [ spec requires: #('Mapless-Base-Core' 'SQLite3') ]. | ||
spec | ||
package: 'Mapless-SQLite-Tests' | ||
with: [ spec requires: #('Mapless-SQLite-Core' 'Mapless-Tests-Base') ] | ||
] | ||
|
||
{ #category : #baseline } | ||
BaselineOfMapless >> setUpUnQLiteDependencies: spec [ | ||
spec | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
" | ||
I'm the type of Error specific to Mapless scenarios | ||
" | ||
Class { | ||
#name : #MaplessError, | ||
#superclass : #Error, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Me gusto el tag de la imagen "Obsenly simple object persistence" -- schema-less and offering support for multiple backends
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fgarau no te había preguntado pero justo estaba hablando sobre la tagline con @eMaringolo hace un ratito :)