Skip to content

Commit

Permalink
add past place information
Browse files Browse the repository at this point in the history
  • Loading branch information
ikosin committed Feb 25, 2017
1 parent e198677 commit e40b081
Show file tree
Hide file tree
Showing 6 changed files with 246 additions and 0 deletions.
46 changes: 46 additions & 0 deletions location/cross2016.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
@location = {}
@location[:group_dai] = [
:"35-3",
:"36-7",
:"36-8",
:"36-9",
]

@location[:group_ab] = [
:"35-4",
:"35-6",
:"36-10",
:"36-11",
:"36-12",
]

@location[:group_cd] = [
:"36-3",
:"36-4",
:"36-5",
:"36-6",
]

@location[:group_e] = [
:"36-1",
:"36-2",
]

@location[:group_ent] = [
:"35-7",
]

@location[:group_other] = [
:"35-1",
:"35-2",
:"35-5",
]

@location[:group_noc] = [
:"35-8",
]

@location[:all] = @location[:group_dai] + @location[:group_ab] + @location[:group_cd] + @location[:group_e] + @location[:group_ent] + @location[:group_other] + @location[:group_noc]

@location[:all] = @location[:all].sort

47 changes: 47 additions & 0 deletions location/denatech2016.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
@location = {}
@location[:room_a] = [
:"36-5",
:"36-6",
:"36-8",
:"36-9",
:"36-10",
]

@location[:room_b] = [
:"36-2",
:"36-3",
:"36-4",
:"36-5",
:"36-6",
]

@location[:room_c] = [
:"35-1",
:"36-1",
]

@location[:room_d] = [
:"35-6",
:"35-7",
]

@location[:passage] = [
:"35-2",
:"35-4",
:"35-5",
:"35-8",
:"35-9",
]

@location[:lt] = [
:"36-10",
:"36-11",
]

@location[:noc] = [
:"35-12",
]

@location[:all] = @location[:room_a] + @location[:room_b] + @location[:room_c] + @location[:room_d] + @location[:passage] + @location[:lt] + @location[:noc]

@location[:all] = @location[:all].sort
30 changes: 30 additions & 0 deletions location/iosdc2016.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
@location = {}
@location[:trac_a] = [
:"1",
:"2",
:"3",
:"4",
:"5",
:"6",
:"7",
]

@location[:trac_b] = [
:"8",
:"9",
:"10",
:"11",
]

@location[:lobby] = [
:"12",
]

@location[:corridor] = [
:"13",
]

@location[:all] = @location[:trac_a] + @location[:trac_b] + @location[:lobby] + @location[:corridor]

@location[:all] = @location[:all].sort

28 changes: 28 additions & 0 deletions location/iw2016.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@location = {}
@location[:floor_2] = [
:"AP2-1",
:"AP2-2",
:"AP2-3",
:"AP2-4",
:"AP2-5",
:"AP2-6",
:"AP2-7",
:"AP2-8",
]

@location[:floor_3] = [
:"AP3-1",
:"AP3-2",
:"AP3-3",
:"AP3-4",
:"AP3-5",
:"AP3-6",
:"AP3-7",
:"AP3-8",
:"AP3-9",
:"AP3-10",
:"AP3-11",
]
@location[:all] = @location[:floor_1] + @location[:floor_2]

@location[:all] = @location[:all].sort
74 changes: 74 additions & 0 deletions location/phpcon2016.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
@location = {}
# 1F Large exhibition hall
@location[:track_1] = [
:"AP101",
:"AP102",
:"AP103",
:"AP104",
:"AP105",
:"AP106",
]
@location[:sponsor] = [
:"AP107",
:"AP108",
:"AP109",
:"AP110",
]
@location[:satellite] = [
:"AP111",
:"AP112",
]

# 2F Small exhibition hall
@location[:track_2] = [
:"AP201",
:"AP202",
:"AP203",
:"AP204",
:"AP205",
:"AP206",
:"AP207",
]

# 3F Special conference room
@location[:track_3] = [
:"AP301",
:"AP302",
]

# 4F Convention hall
@location[:lobby] = [
:"AP407",
]
@location[:track_4] = [
:"AP405",
:"AP406",
:"AP407",
]
@location[:track_5] = [
:"AP401",
:"AP402",
:"AP403",
]

@location[:noc] = [
:"AP408",
]

# 6F
@location[:track_6] = [
:"AP601",
]
@location[:track_7] = [
:"AP602",
]
@location[:track_8] = [
:"AP604",
]
@location[:waiting] = [
:"AP605",
]

@location[:all] = @location[:track_1] + @location[:track_2] + @location[:track_3] + @location[:track_4] + @location[:track_5] + @location[:track_6] + @location[:track_7] + @location[:track_8] + @location[:sponsor] + @location[:satellite] + @location[:lobby] + @location[:noc] + @location[:waiting]

@location[:all] = @location[:all].sort
21 changes: 21 additions & 0 deletions location/tokyo_rubykaigi11.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@location = {}
@location[:floor_2] = [
:"2-1",
:"2-2",
:"2-3",
:"2-4",
:"2-5",
:"2-6",
:"2-7",
]

@location[:floor_5] = [
:"5-1",
:"5-2",
:"5-3",
]

@location[:all] = @location[:floor_2] + @location[:floor_5]

@location[:all] = @location[:all].sort

0 comments on commit e40b081

Please sign in to comment.