Skip to content

Commit

Permalink
Add jekyll structure
Browse files Browse the repository at this point in the history
  • Loading branch information
davekinkead committed Jan 30, 2015
1 parent 04c2cbf commit 19b0b0f
Show file tree
Hide file tree
Showing 385 changed files with 181 additions and 645 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -6,3 +6,5 @@
# RubyMine:
/.idea/

_site

Binary file not shown.
Binary file not shown.
Binary file not shown.
214 changes: 0 additions & 214 deletions 2014-11-24/2014-11-24-abject-oriented-programming.md

This file was deleted.

29 changes: 0 additions & 29 deletions 2014-11-24/readme.md

This file was deleted.

12 changes: 11 additions & 1 deletion website/_config.yml → _config.yml
Expand Up @@ -7,9 +7,19 @@ description: >
location: >
Our meetups are held at the Toowong Library on the fourth Tuesday of every month. Talks start at 6pm, intermission is around 7pm, and dinner from 9pm.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://yourdomain.com" # the base hostname & protocol for your site
permalink: /:title

url: "http://brisruby.org" # the base hostname & protocol for your site
twitter_username: brisruby
github_username: brisruby

collections:
meetups:
output: true
permalink: /meetups/:path
people:
output: true
permalink: /people/:path

# Build settings
markdown: kramdown
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions _includes/header.html
@@ -0,0 +1,6 @@
<nav>
<span class="logo">BrisRuby</span>
{% for page in site.pages %}
<span class="nav"><a href="{{ page.url }}">{{ page.title }}</a></span>
{% endfor %}
</nav>
7 changes: 7 additions & 0 deletions _includes/meetup.html
@@ -0,0 +1,7 @@
<div class="meetup">
<h3>{{ meetup.meetup }}</h3>
<h2>{{ meetup.title }}</h2>
<div class="content">
{{ meetup.content }}
</div>
</div>
4 changes: 4 additions & 0 deletions _includes/post.html
@@ -0,0 +1,4 @@
<li class="post item {{post.categories}}">
<h2 class="title"><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
<span class="author meta">by {{ post.author }}</span> <span class="date meta">on {{ post.date | date: "%d %b %Y" }}</span>
</li>
3 changes: 2 additions & 1 deletion website/_includes/posts.html → _includes/posts.html
@@ -1,6 +1,7 @@

<ul class="posts list">
{% for post in site.posts %}
{% if post.status == 'published' %}
{% include post.html %}
{% endif %}
{% endfor %}
</ul>
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 5 additions & 1 deletion 2014-06-23/readme.md → _meetups/2014-06.md
@@ -1,4 +1,8 @@
# June 2014 Meetup
---
layout: post
title: June 2014 Wrap Up
author: Dave Kinkead
---


## News
Expand Down
10 changes: 6 additions & 4 deletions 2014-07-28/readme.md → _meetups/2014-07.md
@@ -1,6 +1,8 @@
## BrisRuby

# July 2014 Meetup
---
layout: post
title: July 2014 Wrap Up
author: Dave Kinkead
---

### Why Docker is important for Rails
By Brian Lane, Product Owner, [Ninefold](https://ninefold.com/)
Expand All @@ -19,6 +21,6 @@ Code on [github](https://github.com/ridget/validators_app)

Drinks & Dinner were graciously sponsored by [Ninefold - the easier way to deploy & host rails apps](https://ninefold.com/).

## Upcoming
## Upcoming Events

RailsGirls is on [15-16 Aug 2014](http://railsgirls.com/brisbane) so if you are keen to attend or be a mentor, please get in touch.
9 changes: 6 additions & 3 deletions 2014-08-25/readme.md → _meetups/2014-08.md 100755 → 100644
@@ -1,6 +1,9 @@
## BrisRuby

# August 2014 Meetup
---
layout: post
title: August 2014 Wrap Up
author: Dave Kinkead
meetup: August 2014
---

## Talks

Expand Down
28 changes: 28 additions & 0 deletions _meetups/2014-11.md
@@ -0,0 +1,28 @@
---
layout: post
title: Newbie November
author: Dave Kinkead
meetup: November 2014
---

The G20 is over, Obama's gone home, and Christmas is just around the corner. This was our last meetup for 2014 (discounting December Drinks) and aligning our alliterative allegory, we've named this nip of nocturnal networking 'Newbie November'.


## On the fly processing with Dragonfly

Continuing on from last months 'lightning talk' meetup, [@elliotthilaire](https://github.com/elliotthilaire) gave us an introduction to using the Dragonfly gem for processing images / anything on the fly.


## Integrating a style guide into your workflow

Ennova recently decided to trial HoundCI - a fancy Rubocop wrapper that integrates with Github and barks at you when you write poor code via inline comments. [@hackling](https://github.com/hackling) took us through their thoughts on how and why they incorporated they style enforcers and linters they decided to use.


## Form Objects with Virtus

[@daphsta](https://github.com/daphsta) shared how LocalSearch uses Form Objects in their Rails projects and how it has helped them decouple objects from ActiveRecord models which prevented the tendency of models to perform multiple responsibilities.


## [Abject Orientated Programming in Ruby](/abject-oriented-programming/)

You've might have heard the lasted trend being espoused by rockstar ninjas from the valley - Object Oriented Programming. But don't listen to them - they're wrong. PERIOD. [@davekinkead](https://github.com/davekinkead) showed us the correct way to implement best-practice-buzzwords like inheritance, polymorphism, and DRY.

0 comments on commit 19b0b0f

Please sign in to comment.