Skip to content

Commit

Permalink
Schüssi RUG Bremen/HackHB 😥
Browse files Browse the repository at this point in the history
Unfortumately we had no RUG since 2013, so its obvious that there is no need for a website.
  • Loading branch information
erotte committed Jul 5, 2016
1 parent c5390f7 commit d907c43
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 872 deletions.
Binary file removed app/assets/images/labels/bremen.ico
Binary file not shown.
Binary file removed app/assets/images/labels/bremen.png
Binary file not shown.
820 changes: 0 additions & 820 deletions app/assets/images/labels/bremen.svg

This file was deleted.

6 changes: 0 additions & 6 deletions config/locales/de.label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ de:
title: RUG::B
subtitle: Ruby User Group Berlin
meta_desc: RUG::B—Ruby User Group Berlin
bremen:
city: Bremen
name: HackHB
title: HackHB
subtitle: Hacken und Schnacken
meta_desc: 'Hacking Usergroup Bremen: Ruby / Rails / JavaScript / HTML5 / Objective-C'
cologne:
city: Köln
name: Kölsch.rb
Expand Down
6 changes: 0 additions & 6 deletions config/locales/en.label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ en:
title: RUG::B
subtitle: Ruby User Group Berlin
meta_desc: RUG::B—Ruby User Group Berlin
bremen:
city: Bremen
name: HackHB
title: HackHB
subtitle: Hack and Snack
meta_desc: 'Hacking Usergroup Bremen: Ruby / Rails / JavaScript / HTML5 / Objective-C'
cologne:
city: Köln
name: Kölsch.rb
Expand Down
6 changes: 0 additions & 6 deletions config/locales/es.label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ es:
title: RUG::B
subtitle: Ruby User Group Berlin
meta_desc: RUG::B—Ruby User Group Berlin
bremen:
city: Bremen
name: HackHB
title: HackHB
subtitle: Hack and Snack
meta_desc: 'Hacking Usergroup Bremen: Ruby / Rails / JavaScript / HTML5 / Objective-C'
cologne:
city: Colonia
name: Kölsch.rb
Expand Down
28 changes: 0 additions & 28 deletions config/whitelabel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,34 +56,6 @@
:url: http://www.dughh.de/
tld: de
coc: http://rubyberlin.github.io/code-of-conduct
- !ruby/object:Usergroup
label_id: bremen
default_locale: de
recurring: first wednesday
email: awesome-bremen@googlegroups.com
twitter: hackhb
organizers:
- dennisreimann
- erotte
location:
:zoom: 14
:lat: 53.079296
:long: 8.801694
default_time_zone: Europe/Berlin
imprint:
:address: |-
Hansator 1
28217 Bremen
:contributors:
- :name: Dennis Reimann
:email: mail@dennisreimann.de
other_usergroups:
- :name: Agile Gruppe Bremen
:url: http://agb.wikispaces.com/
- :name: CocoaHeads Bremen
:url: http://cocoaheads.org/de/Bremen/index.html
:twitter: CocoaHeadsHB
tld: de
- !ruby/object:Usergroup
label_id: cologne
default_locale: de
Expand Down
3 changes: 1 addition & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
Source for the Sites of the Ruby Communities

* [Hamburg](http://hamburg.onruby.de)
* [Bremen](http://bremen.onruby.de)
* [Cologne](http://cologne.onruby.de)
* [Saarland](http://saar.onruby.de)
* [Berlin](http://www.rug-b.de)
Expand Down Expand Up @@ -75,7 +74,7 @@ Use `script/server` to run rails locally, otherwise you need to export the envir

For working with the whitelabel functionality, you need to add all supported subdomains to your */etc/hosts* :

127.0.0.1 www.onruby.dev hamburg.onruby.dev cologne.onruby.dev bremen.onruby.dev saar.onruby.dev
127.0.0.1 www.onruby.dev hamburg.onruby.dev cologne.onruby.dev saar.onruby.dev
127.0.0.1 berlin.onruby.dev karlsruhe.onruby.dev leipzig.onruby.dev dresden.onruby.dev
127.0.0.1 railsgirlshh.onruby.dev bonn.onruby.dev madridrb.onruby.dev munich.onruby.dev

Expand Down
6 changes: 2 additions & 4 deletions spec/models/usergroup_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
end

context "as date/time" do
let(:hackhb) { Whitelabel.label_for("bremen") }
let(:karlsruhe) { Whitelabel.label_for("karlsruhe")}
let(:_1830) { Usergroup.new.tap { |it| it.recurring = 'second wednesday 18:30' } }
let(:parisrb) { Usergroup.new.tap { |it| it.recurring = 'last wednesday 20:00' } }
Expand All @@ -28,7 +27,7 @@

context "#next_event_date" do
it "should always be in the future on wednesday" do
[rughh, hackhb, colognerb, karlsruhe, _1830, parisrb].each do |usergroup|
[rughh, colognerb, karlsruhe, _1830, parisrb].each do |usergroup|
expect(usergroup.next_event_date).to be_wednesday
expect(usergroup.next_event_date).to be > Date.today
end
Expand All @@ -42,7 +41,6 @@

context '#parse_recurring_date' do
it "should find the right wednesday" do
expect(hackhb.parse_recurring_date(some_date)).to eql(first_wednesday)
expect(rughh.parse_recurring_date(some_date)).to eql(second_wednesday)
expect(colognerb.parse_recurring_date(some_date)).to eql(third_wednesday)
expect(parisrb.parse_recurring_date(some_date)).to eql(fourth_wednesday)
Expand All @@ -51,7 +49,7 @@

context '#parse_recurring_time' do
it "should return a time with 19:00 as default" do
parsed_time = hackhb.parse_recurring_time
parsed_time = karlsruhe.parse_recurring_time
expect(parsed_time.hour).to eql(19)
expect(parsed_time.min).to eql(0)
end
Expand Down

0 comments on commit d907c43

Please sign in to comment.