Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliendelplanque/gradlewfrontend
A front end for gradlew script in pharo.
https://github.com/juliendelplanque/gradlewfrontend
Last synced: 16 days ago
JSON representation
A front end for gradlew script in pharo.
- Host: GitHub
- URL: https://github.com/juliendelplanque/gradlewfrontend
- Owner: juliendelplanque
- License: mit
- Created: 2014-10-06T06:30:49.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-31T06:23:15.000Z (about 10 years ago)
- Last Synced: 2024-12-17T04:16:10.768Z (18 days ago)
- Language: Smalltalk
- Size: 207 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Gradlew Frontend
===============A front end for gradlew script in pharo.
Warning: this contains the minimal command set that I need for a project. You may need to add more commands.
Install:
~~~
Metacello new
baseline: 'Gradlew';
repository: 'github://juliendelplanque/gradlewfrontend/repository';
load.
~~~Add Gradlew as a dependency of your project by adding the following to your metacello config:
~~~
spec baseline: 'Gradlew' with: [
spec repository: 'github://juliendelplanque/gradlewfrontend/repository' ].
~~~To use the frontend:
~~~
| gradlew |
gradlew := Gradlew projectDir: '/path/to/the/project" pathToGradlewScript: 'path/to/gradlew'.
gradlew connectedCheck.
gradlew executeCommand.
~~~~~~
| gradlew |
gradlew := Gradlew projectDir: '/path/to/the/project" pathToGradlewScript: 'path/to/gradlew'.
gradlew connectedCheckTest.
gradlew executeCommand.
~~~