Skip to content

Commit 267613f

Browse files
committed
initial commit including text
0 parents  commit 267613f

File tree

10 files changed

+311
-0
lines changed

10 files changed

+311
-0
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile ~/.gitignore_global
6+
7+
# Ignore bundler config
8+
/.bundle
9+
10+
# Ignore the build directory
11+
/build
12+
13+
# Ignore Sass' cache
14+
/.sass-cache
15+
16+
# Ignore .DS_store file
17+
.DS_Store

Gemfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# If you have OpenSSL installed, we recommend updating
2+
# the following line to use "https"
3+
source 'http://rubygems.org'
4+
5+
gem "middleman", "~>3.2.0"
6+
7+
# Live-reloading plugin
8+
gem "middleman-livereload", "~> 3.1.0"
9+
10+
# For faster file watcher updates on Windows:
11+
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]

Gemfile.lock

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
activesupport (3.2.15)
5+
i18n (~> 0.6, >= 0.6.4)
6+
multi_json (~> 1.0)
7+
chunky_png (1.2.9)
8+
coffee-script (2.2.0)
9+
coffee-script-source
10+
execjs
11+
coffee-script-source (1.6.3)
12+
compass (0.12.2)
13+
chunky_png (~> 1.2)
14+
fssm (>= 0.2.7)
15+
sass (~> 3.1)
16+
em-websocket (0.5.0)
17+
eventmachine (>= 0.12.9)
18+
http_parser.rb (~> 0.5.3)
19+
eventmachine (1.0.3)
20+
execjs (1.4.0)
21+
multi_json (~> 1.0)
22+
ffi (1.9.3)
23+
fssm (0.2.10)
24+
haml (4.0.4)
25+
tilt
26+
hike (1.2.3)
27+
http_parser.rb (0.5.3)
28+
i18n (0.6.5)
29+
kramdown (1.2.0)
30+
listen (1.3.1)
31+
rb-fsevent (>= 0.9.3)
32+
rb-inotify (>= 0.9)
33+
rb-kqueue (>= 0.2)
34+
middleman (3.2.0)
35+
coffee-script (~> 2.2.0)
36+
compass (>= 0.12.2)
37+
execjs (~> 1.4.0)
38+
haml (>= 3.1.6)
39+
kramdown (~> 1.2)
40+
middleman-core (= 3.2.0)
41+
middleman-sprockets (>= 3.1.2)
42+
sass (>= 3.1.20)
43+
uglifier (~> 2.1.0)
44+
middleman-core (3.2.0)
45+
activesupport (~> 3.2.6)
46+
bundler (~> 1.1)
47+
i18n (~> 0.6.1)
48+
listen (~> 1.1)
49+
rack (>= 1.4.5)
50+
rack-test (~> 0.6.1)
51+
thor (>= 0.15.2, < 2.0)
52+
tilt (~> 1.3.6)
53+
middleman-livereload (3.1.0)
54+
em-websocket (>= 0.2.0)
55+
middleman-core (>= 3.0.2)
56+
multi_json (~> 1.0)
57+
rack-livereload
58+
middleman-sprockets (3.2.0)
59+
middleman-core (~> 3.2)
60+
sprockets (~> 2.1)
61+
sprockets-helpers (~> 1.0.0)
62+
sprockets-sass (~> 1.0.0)
63+
multi_json (1.8.2)
64+
rack (1.5.2)
65+
rack-livereload (0.3.15)
66+
rack
67+
rack-test (0.6.2)
68+
rack (>= 1.0)
69+
rb-fsevent (0.9.3)
70+
rb-inotify (0.9.2)
71+
ffi (>= 0.5.0)
72+
rb-kqueue (0.2.0)
73+
ffi (>= 0.5.0)
74+
sass (3.2.12)
75+
sprockets (2.10.1)
76+
hike (~> 1.2)
77+
multi_json (~> 1.0)
78+
rack (~> 1.0)
79+
tilt (~> 1.1, != 1.3.0)
80+
sprockets-helpers (1.0.1)
81+
sprockets (~> 2.0)
82+
sprockets-sass (1.0.2)
83+
sprockets (~> 2.0)
84+
tilt (~> 1.1)
85+
thor (0.18.1)
86+
tilt (1.3.7)
87+
uglifier (2.1.2)
88+
execjs (>= 0.3.0)
89+
multi_json (~> 1.0, >= 1.0.2)
90+
91+
PLATFORMS
92+
ruby
93+
94+
DEPENDENCIES
95+
middleman (~> 3.2.0)
96+
middleman-livereload (~> 3.1.0)
97+
wdm (~> 0.1.0)

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Berlin Code of Conduct
2+
======================
3+
4+
5+
Setup
6+
-----
7+
8+
Ruby 2.0.x (1.9.x still OK) must be [installed](http://www.ruby-lang.org/de/downloads/).
9+
10+
git clone [email protected]:rubyberlin/code-of-conduct.git
11+
cd code-of-conduct
12+
gem install bundler
13+
bundle
14+
15+
16+
Development
17+
-----------
18+
19+
cd code-of-conduct
20+
bundle exec middleman
21+
22+
You can access the website at <http://localhost:4567/>.
23+
24+
25+
Deployment
26+
----------
27+
28+
cd code-of-conduct
29+
bundle exec middleman build
30+

config.rb

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
###
2+
# Compass
3+
###
4+
5+
# Change Compass configuration
6+
# compass_config do |config|
7+
# config.output_style = :compact
8+
# end
9+
10+
###
11+
# Page options, layouts, aliases and proxies
12+
###
13+
14+
# Per-page layout changes:
15+
#
16+
# With no layout
17+
# page "/path/to/file.html", :layout => false
18+
#
19+
# With alternative layout
20+
# page "/path/to/file.html", :layout => :otherlayout
21+
#
22+
# A path which all have the same layout
23+
# with_layout :admin do
24+
# page "/admin/*"
25+
# end
26+
27+
# Proxy pages (http://middlemanapp.com/dynamic-pages/)
28+
# proxy "/this-page-has-no-template.html", "/template-file.html", :locals => {
29+
# :which_fake_page => "Rendering a fake page with a local variable" }
30+
31+
###
32+
# Helpers
33+
###
34+
35+
# Automatic image dimensions on image_tag helper
36+
# activate :automatic_image_sizes
37+
38+
# Reload the browser automatically whenever files change
39+
# activate :livereload
40+
41+
# Methods defined in the helpers block are available in templates
42+
# helpers do
43+
# def some_helper
44+
# "Helping"
45+
# end
46+
# end
47+
48+
set :css_dir, 'stylesheets'
49+
50+
set :js_dir, 'javascripts'
51+
52+
set :images_dir, 'images'
53+
54+
# Build-specific configuration
55+
configure :build do
56+
# For example, change the Compass output style for deployment
57+
activate :minify_css
58+
59+
# Minify Javascript on build
60+
# activate :minify_javascript
61+
62+
# Enable cache buster
63+
# activate :asset_hash
64+
65+
# Use relative URLs
66+
# activate :relative_assets
67+
68+
# Or use a different image path
69+
# set :http_prefix, "/Content/images/"
70+
end

source/_code-of-conduct.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
Purpose
2+
-------
3+
4+
A primary goal of the all conferences and user groups that refer to this Code of Conduct is to be inclusive to the largest number of contributors, with the most varied and diverse backgrounds possible. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sexual orientation, ability, ethnicity, socioeconomic status and religion (or lack thereof).
5+
6+
This Code of Conduct outlines our expectations for all those who participate in our community, as well as the consequences for unacceptable behavior.
7+
8+
We invite all those who participate our events to help us create safe and positive experiences for everyone.
9+
10+
11+
Open [Source/Culture/Tech] Citizenship
12+
--------------------------------------
13+
14+
A supplemental goal of this Code of Conduct is to increase open [source/culture/tech] citizenship by encouraging participants to recognize and strengthen the relationships between our actions and their effects on our community.
15+
16+
Communities mirror the societies in which they exist and positive action is essential to counteract the many forms of inequality and abuses of power that exist in society.
17+
18+
If you see someone who is making an extra effort to ensure our community is welcoming, friendly, and encourages all participants to contribute to the fullest extent, we want to know.
19+
20+
21+
Expected Behavior
22+
-----------------
23+
24+
* Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this community.
25+
* Exercise consideration and respect in your speech and actions.
26+
* Attempt collaboration before conflict.
27+
* Refrain from demeaning, discriminatory, or harassing behavior and speech.
28+
* Be mindful of your surroundings and of your fellow participants. Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential.
29+
30+
31+
Unacceptable Behavior
32+
---------------------
33+
34+
Unacceptable behaviors include: intimidating, harassing, abusive, discriminatory, derogatory or demeaning speech or actions by any participant in our community online, at all related events and in one-on-one communications carried out in the context of community business. Community event venues may be shared with members of the public; please be respectful to all patrons of these locations.
35+
36+
Harassment includes: harmful or prejudicial verbal or written comments related to gender, sexual orientation, race, religion, disability; inappropriate use of nudity and/or sexual images in public spaces (including presentation slides); deliberate intimidation, stalking or following; harassing photography or recording; sustained disruption of talks or other events; inappropriate physical contact, and unwelcome sexual attention.
37+
38+
39+
Consequences of Unacceptable Behavior
40+
-------------------------------------
41+
42+
Unacceptable behavior from any community member, including sponsors and those with decision-making authority, will not be tolerated.
43+
Anyone asked to stop unacceptable behavior is expected to comply immediately.
44+
45+
If a community member engages in unacceptable behavior, the community organizers may take any action they deem appropriate, up to and including a temporary ban or permanent expulsion from the community without warning (and without refund in the case of a paid event).
46+
47+
48+
If You Witness or Are Subject to Unacceptable Behavior
49+
------------------------------------------------------
50+
51+
If you are subject to or witness unacceptable behavior, or have any other concerns, please notify a community organizer as soon as possible. Additionally, community organizers are available to help community members engage with local law enforcement or to otherwise help those experiencing unacceptable behavior feel safe. In the context of in-person events, organizers will also provide escorts as desired by the person experiencing distress.
52+
53+
54+
Addressing Grievances
55+
---------------------
56+
57+
If you feel you have been falsely or unfairly accused of violating this Code of Conduct, you should notify one of the event organizers with a concise description of your grievance. Your grievance will be handled in accordance with our existing governing policies.
58+
59+
60+
Scope
61+
-----
62+
63+
We expect all community participants (contributors, paid or otherwise; sponsors; and other guests) to abide by this Code of Conduct in all community venues—online and in-person—as well as in all one-on-one communications pertaining to community business.
64+

source/index.html.erb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<section class="code-of-conduct">
2+
<h1>Berlin Code of Conduct</h1>
3+
<p class="code-of-conduct--sub-title">A Code of Conduct for all User Groups and Conferences</p>
4+
<%= partial 'code-of-conduct' %>
5+
</section>
6+

source/javascripts/all.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//= require_tree .

source/layouts/layout.erb

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
6+
<title>Berlin Code of Conduct</title>
7+
<link href="<%= asset_path(:css, 'style.css') %>" rel="stylesheet">
8+
</head>
9+
<body>
10+
<%= yield %>
11+
</body>
12+
</html>
13+

source/stylesheets/style.css.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@charset "utf-8";
2+

0 commit comments

Comments
 (0)