-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
104 additions
and
96 deletions.
There are no files selected for viewing
7 changes: 0 additions & 7 deletions
7
complete/src/main/groovy/demo/GORMwithoutGrails/service/MakeService.groovy
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
complete/src/main/groovy/demo/GORMwithoutGrails/service/ModelService.groovy
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
complete/src/main/groovy/demo/GORMwithoutGrails/service/VehicleService.groovy
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...rails/GormWithoutGrailsApplication.groovy → .../demo/GormWithoutGrailsApplication.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...utGrails/controller/MakeController.groovy → ...ovy/demo/controller/MakeController.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...tGrails/controller/ModelController.groovy → ...vy/demo/controller/ModelController.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...rails/controller/VehicleController.groovy → .../demo/controller/VehicleController.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...mo/GORMwithoutGrails/domain/Driver.groovy → ...src/main/groovy/demo/domain/Driver.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package demo.GORMwithoutGrails.domain | ||
package demo.domain | ||
|
||
import grails.gorm.annotation.Entity | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...demo/GORMwithoutGrails/domain/Make.groovy → ...e/src/main/groovy/demo/domain/Make.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...emo/GORMwithoutGrails/domain/Model.groovy → .../src/main/groovy/demo/domain/Model.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...demo/GORMwithoutGrails/domain/User.groovy → ...e/src/main/groovy/demo/domain/User.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...o/GORMwithoutGrails/domain/Vehicle.groovy → ...rc/main/groovy/demo/domain/Vehicle.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package demo.service | ||
|
||
import demo.domain.Make | ||
|
||
interface MakeService { | ||
List<Make> list() | ||
} |
4 changes: 2 additions & 2 deletions
4
...houtGrails/service/MakeServiceImpl.groovy → ...roovy/demo/service/MakeServiceImpl.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package demo.service | ||
|
||
import demo.domain.Model | ||
|
||
interface ModelService { | ||
List<Model> list() | ||
} |
5 changes: 3 additions & 2 deletions
5
...outGrails/service/ModelServiceImpl.groovy → ...oovy/demo/service/ModelServiceImpl.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package demo.service | ||
|
||
import demo.domain.Vehicle | ||
|
||
interface VehicleService { | ||
List<Vehicle> list() | ||
} |
4 changes: 2 additions & 2 deletions
4
...tGrails/service/VehicleServiceImpl.groovy → ...vy/demo/service/VehicleServiceImpl.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
complete/src/test/groovy/demo/GORMwithoutGrails/domain/DriverSpec.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
complete/src/test/groovy/demo/GORMwithoutGrails/domain/MakeSpec.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
complete/src/test/groovy/demo/GORMwithoutGrails/domain/ModelSpec.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
complete/src/test/groovy/demo/GORMwithoutGrails/domain/VehicleSpec.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
initial/src/main/groovy/demo/GORMwithoutGrails/GormWithoutGrailsApplication.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
initial/src/test/groovy/demo/GORMwithoutGrails/GormWithoutGrailsApplicationTests.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package demo.GORMwithoutGrails | ||
package demo | ||
|
||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.