├── .gitignore ├── public ├── shared │ ├── .gitignore │ ├── images │ │ ├── bg.png │ │ ├── qmark.png │ │ ├── nav-rule.png │ │ ├── blacktocat.png │ │ ├── crud-sprite.png │ │ ├── footer-logo.png │ │ ├── footer_logo.png │ │ ├── active-arrow.png │ │ ├── background-v2.png │ │ ├── bg_footer_top.png │ │ ├── expand-arrows.png │ │ ├── background-white.png │ │ ├── bg_footer_bottom.png │ │ ├── dropdown_sprites.jpg │ │ ├── next_step_arrow.gif │ │ ├── rackspace_logo.png │ │ ├── footer-logo.svg │ │ └── blacktocat.svg │ ├── js │ │ └── documentation.js │ └── css │ │ ├── pygments.css │ │ └── documentation.css ├── favicon.ico ├── images │ ├── hr.png │ ├── paper.jpg │ ├── shine.png │ ├── dodgeball.png │ ├── dodgetocat.png │ ├── team-image.png │ └── check-sprite.png ├── fonts │ ├── BPdots-webfont.eot │ ├── BPdots-webfont.ttf │ ├── chunk-webfont.eot │ ├── chunk-webfont.ttf │ ├── chunk-webfont.woff │ ├── BPdots-webfont.woff │ ├── GoodDog-webfont.eot │ ├── GoodDog-webfont.ttf │ ├── GoodDog-webfont.woff │ ├── BebasNeue-webfont.eot │ ├── BebasNeue-webfont.ttf │ ├── BebasNeue-webfont.woff │ ├── ArchitectsDaughter-webfont.eot │ ├── ArchitectsDaughter-webfont.ttf │ ├── ArchitectsDaughter-webfont.woff │ ├── BebasNeue-webfont.svg │ └── chunk-webfont.svg └── css │ └── style.css ├── .bundle └── config ├── TODO ├── views ├── edit.erb ├── thankyou.erb ├── admin.erb ├── layout.erb ├── index.erb └── form.erb ├── config.ru ├── Gemfile ├── Gemfile.lock └── dodgeball.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | local.db 3 | -------------------------------------------------------------------------------- /public/shared/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_WITHOUT: production 3 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/favicon.ico -------------------------------------------------------------------------------- /public/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/images/hr.png -------------------------------------------------------------------------------- /public/images/paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/images/paper.jpg -------------------------------------------------------------------------------- /public/images/shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/images/shine.png -------------------------------------------------------------------------------- /public/images/dodgeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/images/dodgeball.png -------------------------------------------------------------------------------- /public/images/dodgetocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/images/dodgetocat.png -------------------------------------------------------------------------------- /public/images/team-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/images/team-image.png -------------------------------------------------------------------------------- /public/shared/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/bg.png -------------------------------------------------------------------------------- /public/fonts/BPdots-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/BPdots-webfont.eot -------------------------------------------------------------------------------- /public/fonts/BPdots-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/BPdots-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/chunk-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/chunk-webfont.eot -------------------------------------------------------------------------------- /public/fonts/chunk-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/chunk-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/chunk-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/chunk-webfont.woff -------------------------------------------------------------------------------- /public/images/check-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/images/check-sprite.png -------------------------------------------------------------------------------- /public/shared/images/qmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/qmark.png -------------------------------------------------------------------------------- /public/fonts/BPdots-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/BPdots-webfont.woff -------------------------------------------------------------------------------- /public/fonts/GoodDog-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/GoodDog-webfont.eot -------------------------------------------------------------------------------- /public/fonts/GoodDog-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/GoodDog-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/GoodDog-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/GoodDog-webfont.woff -------------------------------------------------------------------------------- /public/shared/images/nav-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/nav-rule.png -------------------------------------------------------------------------------- /public/fonts/BebasNeue-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/BebasNeue-webfont.eot -------------------------------------------------------------------------------- /public/fonts/BebasNeue-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/BebasNeue-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/BebasNeue-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/BebasNeue-webfont.woff -------------------------------------------------------------------------------- /public/shared/images/blacktocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/blacktocat.png -------------------------------------------------------------------------------- /public/shared/images/crud-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/crud-sprite.png -------------------------------------------------------------------------------- /public/shared/images/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/footer-logo.png -------------------------------------------------------------------------------- /public/shared/images/footer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/footer_logo.png -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | * sanitize stuff 2 | 3 | * admin screen where mel/heather/kami can validate the team and update the amount 4 | 5 | * media section? 6 | -------------------------------------------------------------------------------- /public/shared/images/active-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/active-arrow.png -------------------------------------------------------------------------------- /public/shared/images/background-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/background-v2.png -------------------------------------------------------------------------------- /public/shared/images/bg_footer_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/bg_footer_top.png -------------------------------------------------------------------------------- /public/shared/images/expand-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/expand-arrows.png -------------------------------------------------------------------------------- /public/shared/images/background-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/background-white.png -------------------------------------------------------------------------------- /public/shared/images/bg_footer_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/bg_footer_bottom.png -------------------------------------------------------------------------------- /public/shared/images/dropdown_sprites.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/dropdown_sprites.jpg -------------------------------------------------------------------------------- /public/shared/images/next_step_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/next_step_arrow.gif -------------------------------------------------------------------------------- /public/shared/images/rackspace_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/shared/images/rackspace_logo.png -------------------------------------------------------------------------------- /public/fonts/ArchitectsDaughter-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/ArchitectsDaughter-webfont.eot -------------------------------------------------------------------------------- /public/fonts/ArchitectsDaughter-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/ArchitectsDaughter-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/ArchitectsDaughter-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defunkt/dodgeball.github.com/master/public/fonts/ArchitectsDaughter-webfont.woff -------------------------------------------------------------------------------- /views/edit.erb: -------------------------------------------------------------------------------- 1 |
21 | We will email you to verify everything and set up your donation, 22 | then you will see your team listed in the Teams section. Thanks! 23 |
24 || 8 | edit | 9 | verify 10 | | 11 |<%= team.name %> | 12 |<%= team.company %> | 13 |<%= team.charity %> | 14 |<%= team.email %> | 15 |<%= team.twitter %> | 16 |<%= team.players.join(', ') %> | 17 |<%= team.team_image(30) %> | 18 |19 | delete 20 | | 21 |
| 34 | edit 35 | unverify 36 | | 37 |<%= team.name %> | 38 |<%= team.company %> | 39 |<%= team.charity %> | 40 |<%= team.email %> | 41 |<%= team.twitter %> | 42 |<%= team.players.join(', ') %> | 43 |<%= team.team_image(30) %> | 44 |
17 | Mission Recreation Center
18 | 2450 Harrison Street
19 | San Francisco, California 94110
20 |
23 | Sunday, October 23rd 24 |
25 |27 | We were brainstorming in the office and decided we should throw balls at our enemies. But why stop at destroying our enemies with foam spheres? We decided to trick our enemies into giving charities money for the right to have their asses kicked. Hakuna matata. 28 |
29 |31 | GitHub employees and a number of victims from other teams participate in an epic Dodgeball tournament. Each team that is entered donates at least $3000 to the charity pot. At the end, the charity of the winner gets 50% of the pot and everyone else splits the rest evenly. In the process, thousands are entertained. 32 |
33 || Company | 52 |Charity | 53 ||
|---|---|---|
| <%= team.company %> | 56 | <% if team.charity_url && (team.charity_url != '') %> 57 |<%= team.charity %> | 58 | <% else %> 59 |<%= team.charity %> | 60 | <% end %> 61 |
| Team | 64 |||
67 |
|
73 | ||