-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from nimblehq/release/3.4.0
[Release] 3.4.0
- Loading branch information
Showing
23 changed files
with
175 additions
and
183 deletions.
There are no files selected for viewing
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,28 @@ | ||
--- | ||
name: "Request For Comments (RFC)" | ||
about: "You have an idea on how to improve our processes. Propose your idea so that the team can provide feedback." | ||
title: "RFC: " | ||
labels: "type : rfc" | ||
--- | ||
|
||
## Issue | ||
|
||
Describe the issue the team is currently facing. Provide as much content as possible. | ||
|
||
## Solution | ||
|
||
Describe the solution you are prescribing for the issue | ||
|
||
## Who Benefits? | ||
|
||
Describe who will be the beneficiaries e.g. everyone, specific chapters, clients... | ||
|
||
## What's Next? | ||
|
||
Provide an actionable list of things that must happen in order to implement the solution: | ||
|
||
- [ ] | ||
- [ ] | ||
- [ ] | ||
|
||
Using a poll is encouraged to gather feedback on the RFA 👉 Use this tool: https://gh-polls.com/ |
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,37 @@ | ||
name: Verify newproject script | ||
|
||
on: | ||
pull_request: | ||
types: [ opened, reopened, synchronize ] | ||
branches: [ develop ] | ||
|
||
jobs: | ||
verify_newproject_script: | ||
name: Verify newproject script | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
|
||
- name: Checkout source code | ||
uses: actions/[email protected] | ||
|
||
- name: Cache Gradle | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches/modules-* | ||
~/.gradle/caches/jars-* | ||
~/.gradle/caches/build-cache-* | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Verify generating new project from RxTemplate | ||
run: ./newproject.sh -t rx -p co.myproject.example -n "MyProjectExampleRx" | ||
|
||
- name: Verify generating new project from CoroutineTemplate | ||
run: ./newproject.sh -t crt -p co.myproject.example -n "MyProjectExampleCoroutine" |
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
10 changes: 0 additions & 10 deletions
10
CoroutineTemplate/app/src/main/java/co/nimblehq/coroutine/extension/ActivityExt.kt
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
CoroutineTemplate/app/src/main/java/co/nimblehq/coroutine/extension/ContextExt.kt
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
CoroutineTemplate/app/src/main/java/co/nimblehq/coroutine/extension/ViewExt.kt
This file was deleted.
Oops, something went wrong.
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
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
10 changes: 0 additions & 10 deletions
10
RxJavaTemplate/app/src/main/java/co/nimblehq/rxjava/extension/ActivityExt.kt
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
RxJavaTemplate/app/src/main/java/co/nimblehq/rxjava/extension/ContextExt.kt
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
RxJavaTemplate/app/src/main/java/co/nimblehq/rxjava/extension/ToastExtension.kt
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
RxJavaTemplate/app/src/main/java/co/nimblehq/rxjava/extension/ViewExt.kt
This file was deleted.
Oops, something went wrong.
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
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.