├── .gitignore ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── LICENSE ├── build.gradle ├── gradle.properties ├── maventask.gradle └── src │ └── main │ └── java │ └── com │ └── vinaysshenoy │ └── poirot │ ├── EntityRenameDesc.java │ ├── EntityVerifier.java │ ├── Migrations.java │ ├── Poirot.java │ ├── PoirotDbHelperGenerator.java │ └── Utils.java ├── settings.gradle └── src └── main └── java └── com └── vinaysshenoy └── poirot └── Generator.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/LICENSE -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/maventask.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/maventask.gradle -------------------------------------------------------------------------------- /library/src/main/java/com/vinaysshenoy/poirot/EntityRenameDesc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/src/main/java/com/vinaysshenoy/poirot/EntityRenameDesc.java -------------------------------------------------------------------------------- /library/src/main/java/com/vinaysshenoy/poirot/EntityVerifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/src/main/java/com/vinaysshenoy/poirot/EntityVerifier.java -------------------------------------------------------------------------------- /library/src/main/java/com/vinaysshenoy/poirot/Migrations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/src/main/java/com/vinaysshenoy/poirot/Migrations.java -------------------------------------------------------------------------------- /library/src/main/java/com/vinaysshenoy/poirot/Poirot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/src/main/java/com/vinaysshenoy/poirot/Poirot.java -------------------------------------------------------------------------------- /library/src/main/java/com/vinaysshenoy/poirot/PoirotDbHelperGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/src/main/java/com/vinaysshenoy/poirot/PoirotDbHelperGenerator.java -------------------------------------------------------------------------------- /library/src/main/java/com/vinaysshenoy/poirot/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/library/src/main/java/com/vinaysshenoy/poirot/Utils.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'poirot' 2 | include 'library' 3 | 4 | -------------------------------------------------------------------------------- /src/main/java/com/vinaysshenoy/poirot/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinaysshenoy/poirot/HEAD/src/main/java/com/vinaysshenoy/poirot/Generator.java --------------------------------------------------------------------------------