Skip to content

Commit 4f75c32

Browse files
authored
Merge pull request #3 from BrumPHP/chore-dates_up_to_05_2018
added Measure and BDD
2 parents 1c6b4ab + f1525fc commit 4f75c32

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

_events/2018-04-26-measure.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Measure with Stuart Langridge
3+
date: Thu Apr 26 2018
4+
description: >
5+
If you run an open source project, you probably know quite a bit about the code and how it works. But how much do you know about your contributors? Who's joined the project and who's left? Are some sending in loads more PRs than others? Do you get to their PRs quickly while leaving others behind? Is the project busier than it was last week? Last month? Last year?
6+
Measure (https://github.com/MeasureOSS/Measure) fixes that. It's a "contributor management" dashboard; point it at your projects, and it'll show you a set of attractive graphs and stats for each of your repositories, each of your teams, and each of your contributors. It knows how to exclude people from your company from the stats, and it's all built as open source with node, PHP, and JavaScript. If you're a company with open source projects, you'll find it useful to Measure.
7+
----------
8+
Schedule:
9+
6.30 - 7.00pm : Drinks, social
10+
7.00pm: Stuart Langridge: Measure
11+
8.00pm onwards: Drinks, social
12+
link: https://www.meetup.com/brumphp/events/247122822/
13+
location: 1000 Trades
14+
uuid: bce692cb-0c3a-4247-83c9-4b75281b08f7
15+
layout: event
16+
---

_events/2018-05-31-bdd.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Behat Best Practises with Ciaran McNulty
3+
date: Thu May 31 2018
4+
description: >
5+
Behat is widely used as part of a Behaviour Driven Development lifecycle, but it's also widely misused.
6+
In this talk Ciaran will explain what BDD and Behat involve, and show the best practices including writing good scenarios, driving service development from scenarios, and techniques for fast UI testing.
7+
link: https://www.meetup.com/brumphp/events/250408983/
8+
location: Talis
9+
uuid: bc30ffe5-dd98-4944-b147-b90cdce57e06
10+
layout: event
11+
---

index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ layout: landingpage
2525
<div class="container pb-2">
2626
<h2>Events</h2>
2727
<div class="row">
28-
{% for event in site.events reversed limit:3 %}
28+
<!-- Has to be done this way as Liquid can't reverse and limit properly -->
29+
{% assign events = site.events | sort: 'date' | reverse %}
30+
{% for event in events limit:3 %}
2931
{% include component/summary.html summary=event %}
3032
{% endfor %}
3133
</div>

0 commit comments

Comments
 (0)