Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(agile): all sheets are about SCRUM, not Agile #86

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ or

From install folder:

`gulp create-new-cheat-sheet --name <name> --category <tools|frameworks|languages|agile|best-practices>`
`gulp create-new-cheat-sheet --name <name> --category <tools|frameworks|languages|scrum|best-practices>`

Put your svg|png logo in assets/images folder
Put your commands or codes on:
Expand Down
Binary file added assets/images/ScrumBySII_noir.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const CATEGORY = {
TOOLS: 'tools',
FRAMEWORKS: 'frameworks',
LANGUAGES: 'languages',
AGILE: 'agile',
SCRUM: 'scrum',
PRACTICES: 'best-practices'
};

Expand Down Expand Up @@ -98,19 +98,19 @@ function moveTemplates() {

if (!name || !category) {
throw new Error(
'usage is "gulp create-new-cheat-sheet --name <name> --category <tools|frameworks|languages|agile|best-practices>'
'usage is "gulp create-new-cheat-sheet --name <name> --category <tools|frameworks|languages|scrum|best-practices>'
);
}

if (
category !== CATEGORY.TOOLS &&
category !== CATEGORY.FRAMEWORKS &&
category !== CATEGORY.LANGUAGES &&
category !== CATEGORY.AGILE &&
category !== CATEGORY.SCRUM &&
category !== CATEGORY.PRACTICES
) {
throw new Error(
'"category must be any of these values : tools | frameworks | languages | agile | best-practices'
'"category must be any of these values : tools | frameworks | languages | scrum | best-practices'
);
}

Expand Down
16 changes: 8 additions & 8 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -237,60 +237,60 @@ <h1><i class="material-icons">language</i> languages</h1>
</div>
</section>
<section>
<h1><i class="material-icons">people</i> agile</h1>
<h1><i class="material-icons">people</i> SCRUM</h1>
<div class="container">
<div class="item">
<a href="./affinage/index.html">
<div class="img-item">
<img src="./assets/images/AgileBySII_noir.png" />
<img src="./assets/images/ScrumBySII_noir.png" />
</div>
<div class="title">Affinage du Backlog</div>
</a>
</div>
<div class="item">
<a href="./dailymeeting/index.html">
<div class="img-item">
<img src="./assets/images/AgileBySII_noir.png" />
<img src="./assets/images/ScrumBySII_noir.png" />
</div>
<div class="title">Daily Meeting</div>
</a>
</div>
<div class="item">
<a href="./release-planning/index.html">
<div class="img-item">
<img src="./assets/images/AgileBySII_noir.png" />
<img src="./assets/images/ScrumBySII_noir.png" />
</div>
<div class="title">Release Planning</div>
</a>
</div>
<div class="item">
<a href="./kanban/index.html">
<div class="img-item">
<img src="./assets/images/AgileBySII_noir.png" />
<img src="./assets/images/ScrumBySII_noir.png" />
</div>
<div class="title">Kanban</div>
</a>
</div>
<div class="item">
<a href="./retrospective/index.html">
<div class="img-item">
<img src="./assets/images/AgileBySII_noir.png" />
<img src="./assets/images/ScrumBySII_noir.png" />
</div>
<div class="title">Retrospective</div>
</a>
</div>
<div class="item">
<a href="./sprint-planning/index.html">
<div class="img-item">
<img src="./assets/images/AgileBySII_noir.png" />
<img src="./assets/images/ScrumBySII_noir.png" />
</div>
<div class="title">Sprint Planning</div>
</a>
</div>
<div class="item">
<a href="./sprint-review/index.html">
<div class="img-item">
<img src="./assets/images/AgileBySII_noir.png" />
<img src="./assets/images/ScrumBySII_noir.png" />
</div>
<div class="title">Sprint Review</div>
</a>
Expand Down