Skip to content

Commit 7d855c4

Browse files
Piotr Zawadzkizawadz88
authored andcommitted
- Added a Contributing section in README
- removed trailing spaces from test method names
1 parent ad33911 commit 7d855c4

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Moreover, you can find there other examples, e.g. how to persist state on rotati
3030
- [StepperLayout attributes](#stepperlayout-attributes)
3131
- [View attributes](#view-attributes)
3232
- [StepperLayout style attributes](#stepperlayout-style-attributes)
33+
- [Contributing](#contributing)
3334
- [License](#license)
3435

3536
## Supported steppers
@@ -486,6 +487,16 @@ A list of `ms_stepperLayoutTheme` attributes responsible for styling of StepperL
486487
| *ms_stepTabIconBackgroundStyle* | Used by ms_stepIconBackground in layout/ms_step_tab |
487488
| *ms_stepTabTitleStyle* | Used by ms_stepTitle in layout/ms_step_tab |
488489
| *ms_stepTabDividerStyle* | Used by ms_stepDivider in layout/ms_step_tab |
490+
491+
492+
## Contributing
493+
All contributions are welcome and encouraged!
494+
495+
Pull requests should be merged to the ```develop``` branch (Rebase & merge preferred).
496+
Once ```develop``` is stable and we're ready to release the next version
497+
it should be merged to ```master```. Next, a new version should be
498+
uploaded to Bintray and a new release should be created on GitHub.
499+
Library releases should be made from the ```master``` branch.
489500
490501
## License
491502
Copyright 2016 StepStone Services

material-stepper/src/test/java/com/stepstone/stepper/StepperLayoutTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class StepperLayoutTest {
3333
lateinit var stepperLayout: StepperLayout
3434

3535
@Test
36-
fun `All type specific indicators should be hidden when adapter is not set for StepperLayout with 'progress_bar' type `() {
36+
fun `All type specific indicators should be hidden when adapter is not set for StepperLayout with 'progress_bar' type`() {
3737
//given
3838
val attributeSet = createAttributeSetWithStepperType(TYPE_PROGRESS_BAR)
3939

@@ -48,7 +48,7 @@ class StepperLayoutTest {
4848
}
4949

5050
@Test
51-
fun `All type specific indicators should be hidden when adapter is not set for StepperLayout with 'dots' type `() {
51+
fun `All type specific indicators should be hidden when adapter is not set for StepperLayout with 'dots' type`() {
5252
//given
5353
val attributeSet = createAttributeSetWithStepperType(TYPE_DOTS)
5454

@@ -63,7 +63,7 @@ class StepperLayoutTest {
6363
}
6464

6565
@Test
66-
fun `All type specific indicators should be hidden when adapter is not set for StepperLayout with 'tabs' type `() {
66+
fun `All type specific indicators should be hidden when adapter is not set for StepperLayout with 'tabs' type`() {
6767
//given
6868
val attributeSet = createAttributeSetWithStepperType(TYPE_TABS)
6969

0 commit comments

Comments
 (0)