Bike!Bike! Website!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Godwin 55d47180e0 Fixed some issues with registration 10 years ago
app Fixed some issues with registration 10 years ago
bin first commit 11 years ago
bower_components The working basics 10 years ago
config Workshop and event scaffolds 10 years ago
db Messed up event migration 10 years ago
nbproject removed servers 11 years ago
public The working basics 10 years ago
spec Fixed specs 11 years ago
test Workshop and event scaffolds 10 years ago
.coveralls.yml Bumped VERSION to 0.1.3 11 years ago
.gitignore removed servers 11 years ago
.rspec Updated gems 11 years ago
.slugignore moved files to proper folder 11 years ago
.travis.yml The working basics 10 years ago
CHANGELOG.md Updated gems 11 years ago
DB specs.txt Fixed some issues with registration 10 years ago
Gemfile Fixed some issues with registration 10 years ago
Gemfile.lock The working basics 10 years ago
LICENSE Bumped VERSION to 0.1.3 11 years ago
README.md Registration form working 10 years ago
Rakefile The working basics 10 years ago
VERSION Updated gems 11 years ago
bower.json The working basics 10 years ago
config.rb The working basics 10 years ago
config.ru Bumped VERSION to 0.2.0 11 years ago
false The working basics 10 years ago
jpegoptim.exe The working basics 10 years ago
optipng.exe The working basics 10 years ago
wizard.jpg The working basics 10 years ago

README.md

Bike!Bike!

This is the development repository for Bike!Bike! Progress can currently be seen at bikebike.herokuapp.com

If you're about to get started contributing please contact Godwin: goodgodwin``@``hotmail.com. Also try to familiarize yourself with the technologies we're using, our collaboration tools, requirements, coding conventions, style guide, and testing practices.

Technologies

Collaboration Tools

Requirements Overview

Bike!Bike! is a conference which is held in and hosted by a different city each year. The conference is specifically for not for profit bicycle collectives (5013c or equivalent status is not required). There are also 'Reginal Bike!Bike!s' which can be hosted by any organization at any time of the year.

The Bike!Bike! website will help coordinate these conferences, allowing users to register, to create organizations, and organize conferences.

Users

Users should be able to register and log in, either with our system or using Facebook. We will store user name, encrypted passwords, email addresses, avatars, and user settings.

Organizations

An organization can be created by any user. An organization has a name, location, logo, email address, and some additional optional settings. An organization also contains a list of users which can interact and represent the organization on the site. A user is added to the organization by either:

  1. Creating the organization
  2. Requesting membership
  3. Being invited by an existing member

Organizations can be set up to allow anyone to become a member, require verification, require a secret password, or only allow invitations.

Conferences

Conferences can be created by any user who is associated with an organization. A conference has a name, date, location, a list of host organizations, and optional administrators.

A conference can be modified by anyone who has been added as an administrator directly, or is a member of any of the host organizations.

Registration

Any member of the site can register for a conference. A form must be constructed by the conference corrdinators and must then be completed by the registrant.

Workshops

Any user who is register for a specific conference can propose workshops for that conference. A workshop is later scheduled by the conference coordinators if they decide to include it in the conference. A workshop can have one or more facilitators which are added in a similar process as users are added to an organization.

Events

Events are created and scheduled by conference coordinators.

Coding Conventions

Ruby

CoffeeScript

Haml

SCSS

Translations

Translating our site into mutiple languages is a key part of opening it up to the world. When coding, never include any English text as in a string or Haml. Instead, we shall always use the underscore helper method _. The method takes a translation key and some optional parameters.

All translation is done in a collaborative, volunteer based system on the site itself, even the English text. If a user has sufficient permissions, the underscore method will produce highlighted text which can be edited directly by the user.

The method can be used as follows:

_ 'basename.my_key'

_ 'basename.my_key', :paragraph

_ 'basename.my_key' do
	<input type="text" placeholder="_!" />
end

If the key does not exist, the previos lines will produce the following respectively:

'my_key'

'Curabitur non nulla sit amet nisl tempus convallis quis ac lectus.
	Vivamus magna justo, lacinia eget consectetur sed, convallis at
	tellus. Proin eget tortor risus. Donec sollicitudin molestie
	malesuada. Donec rutrum congue leo eget malesuada.'

<input type="text" placeholder="my_key" />

If the user has sufficient rights, these blocks will also be surrounded by the necessary markup to allow them to be selected and edited by the user.

Style Guide

On hold until our design team determines a director for our identity.

Testing Practices

Once tests are set up, we will ensure 100% code coverage. This higher than normal amount is due to the fact that the application will capture all translations, on which pages they occur, and which keys are missing languages in each available language.