Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.bundle
/_site
/.sass-cache
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source 'https://rubygems.org'

require 'json'
require 'open-uri'
versions = JSON.parse(open('https://pages.github.com/versions.json').read)

gem 'github-pages', versions['github-pages']
127 changes: 127 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
GEM
remote: https://rubygems.org/
specs:
RedCloth (4.2.9)
activesupport (4.2.0)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
blankslate (2.1.2.4)
celluloid (0.16.0)
timers (~> 4.0.0)
classifier-reborn (2.0.3)
fast-stemmer (~> 1.0)
coffee-script (2.3.0)
coffee-script-source
execjs
coffee-script-source (1.8.0)
colorator (0.1)
execjs (2.2.2)
fast-stemmer (1.0.2)
ffi (1.9.6)
gemoji (2.1.0)
github-pages (31)
RedCloth (= 4.2.9)
github-pages-health-check (~> 0.2)
jekyll (= 2.4.0)
jekyll-coffeescript (= 1.0.1)
jekyll-mentions (= 0.2.1)
jekyll-redirect-from (= 0.6.2)
jekyll-sass-converter (= 1.2.0)
jekyll-sitemap (= 0.6.3)
jemoji (= 0.4.0)
kramdown (= 1.3.1)
liquid (= 2.6.1)
maruku (= 0.7.0)
mercenary (~> 0.3)
pygments.rb (= 0.6.0)
rdiscount (= 2.1.7)
redcarpet (= 3.1.2)
terminal-table (~> 1.4)
github-pages-health-check (0.2.1)
net-dns (~> 0.6)
public_suffix (~> 1.4)
hitimes (1.2.2)
html-pipeline (1.9.0)
activesupport (>= 2)
nokogiri (~> 1.4)
i18n (0.7.0)
jekyll (2.4.0)
classifier-reborn (~> 2.0)
colorator (~> 0.1)
jekyll-coffeescript (~> 1.0)
jekyll-gist (~> 1.0)
jekyll-paginate (~> 1.0)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 2.6.1)
mercenary (~> 0.3.3)
pygments.rb (~> 0.6.0)
redcarpet (~> 3.1)
safe_yaml (~> 1.0)
toml (~> 0.1.0)
jekyll-coffeescript (1.0.1)
coffee-script (~> 2.2)
jekyll-gist (1.1.0)
jekyll-mentions (0.2.1)
html-pipeline (~> 1.9.0)
jekyll (~> 2.0)
jekyll-paginate (1.1.0)
jekyll-redirect-from (0.6.2)
jekyll (~> 2.0)
jekyll-sass-converter (1.2.0)
sass (~> 3.2)
jekyll-sitemap (0.6.3)
jekyll-watch (1.2.0)
listen (~> 2.7)
jemoji (0.4.0)
gemoji (~> 2.0)
html-pipeline (~> 1.9)
jekyll (~> 2.0)
json (1.8.2)
kramdown (1.3.1)
liquid (2.6.1)
listen (2.8.5)
celluloid (>= 0.15.2)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
maruku (0.7.0)
mercenary (0.3.5)
mini_portile (0.6.2)
minitest (5.5.1)
net-dns (0.8.0)
nokogiri (1.6.5)
mini_portile (~> 0.6.0)
parslet (1.5.0)
blankslate (~> 2.0)
posix-spawn (0.3.9)
public_suffix (1.4.6)
pygments.rb (0.6.0)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
rb-fsevent (0.9.4)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
rdiscount (2.1.7)
redcarpet (3.1.2)
safe_yaml (1.0.4)
sass (3.4.9)
terminal-table (1.4.5)
thread_safe (0.3.4)
timers (4.0.1)
hitimes
toml (0.1.2)
parslet (~> 1.5.0)
tzinfo (1.2.2)
thread_safe (~> 0.1)
yajl-ruby (1.1.0)

PLATFORMS
ruby

DEPENDENCIES
github-pages (= 31)
json
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
# rustberlin.github.io
# Rust Berlin Community Pages

Welcome to the Rust Berlin Community Pages. It is a resource currently managed and curated by the Rust Berlin User Group. We try to document the Rust community at large, so pull requests are welcome.

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
12 changes: 12 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Site settings
title: Rust Berlin Community Pages
email: ""
description: ""
baseurl: ""
url: "http://rustberlin.github.io"
twitter_username: rustberlin
github_username: rustberlin

# Build settings
markdown: kramdown
exclude: [script, Gemfile, Gemfile.lock, README.md]
1 change: 1 addition & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<script src="{{ "/javascripts/scale.fix.js" | prepend: site.baseurl }}"></script>
14 changes: 14 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">

<link rel="stylesheet" href="{{ "/css/styles.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/css/pygment_trac.css" | prepend: site.baseurl }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
15 changes: 15 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<div class="wrapper">
<header>
<h1>{{ page.title }}</h1>
</header>
<section>
{{ content }}
</section>
</div>
{% include footer.html %}
</body>
</html>
Empty file added _posts/.gitkeep
Empty file.
File renamed without changes.
File renamed without changes.
75 changes: 0 additions & 75 deletions global_events.html

This file was deleted.

52 changes: 52 additions & 0 deletions global_events.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
layout: default
title: Global Event List
---

## The Rust Community event list.

*This is currently just a port of [the Wiki page](https://github.com/rust-lang/rust/wiki/Community-User-Groups,-Meetups,-and-Events) that we'd like to put under curation.*


*In the future, we'd like to curate that list. If you have suggestions, please [contact us](http://github.com/rustberlin) or [send a pull request](http://github.com/rustberlin/rustberlin.github.io).*

Rust has a large and growing international community. There are a number of local user groups, meetups, and events spread around the world that are friendly to people with all skill levels. Check the [Community Calendar](https://www.google.com/calendar/embed?src=apd9vmbc22egenmtu5l6c5jbfc%40group.calendar.google.com) for upcoming events.

International:

* [Air Mozilla - Rust](https://air.mozilla.org/?tag=rust): Live and archived presentations from a variety of meetups.

Paris, France:

* [Rust Paris](http://www.meetup.com/Rust-Paris)

Berlin, Germany:

* [Rust Berlin](http://www.meetup.com/Rust-Berlin/)

Skåne, Sweden:

* [Rust Skåne](http://www.meetup.com/rust-skane/)

Brooklyn, NY, USA:

* [Brooklyn.rs](http://brooklyn.rs/)

Portland, OR, USA:

* [PDX-Rust](https://groups.google.com/forum/?#!forum/pdx-rust)

San Francisco, CA, USA:

* [Rust Bay Area](http://www.meetup.com/Rust-Bay-Area/): Monthly meetups that range from tutorials for new users to the innards of Rust and the Rust community libraries. Live streamed on [Air Mozilla](https://air.mozilla.org).
* [Rust Hacknights](http://www.meetup.com/SF-Rust-Hacknights/)

Here's a list of past meetups that haven't been active for the last few months. Why not get in contact with the organisers and get them started again?

London, UK:

* [Rust London User Group](http://www.meetup.com/Rust-London-User-Group/)

Pittsburgh, PA, USA:

* [Pittsburgh Code Supply](http://www.meetup.com/Pittsburgh-Code-Supply/)
61 changes: 0 additions & 61 deletions index.html

This file was deleted.

Loading