Class: Active::Services::Categories

Inherits:
Object
  • Object
show all
Defined in:
lib/services/search.rb

Overview

TODO move to a reflection service

Class Method Summary collapse

Class Method Details

.CHANNELSObject



366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
# File 'lib/services/search.rb', line 366

def self.CHANNELS 
  {
    :active_lifestyle => '',
    :fitness => 'Fitness',
    :body_building => 'Fitness\Body Building',
    :boxing => 'Fitness\Boxing',
    :weight_lifting => 'Fitness\Weight Lifting',
    :gear => 'Gear',
    :lifestyle_vehicles => 'Lifestyle Vehicles',
    :mind_mody => 'Mind & Body',
    :meditation => 'Mind & Body\Meditation',
    :pilates => 'Mind & Body\Pilates',
    :yoga => 'Mind & Body\Yoga',
    :nutrition => 'Nutrition',
    :travel => 'Travel',
    :women => 'Women',
    :other => 'Other',
    :corporate => 'Corporate',
    :not_specified => 'Not Specified',
    :unknown => 'Unknown',
    :special_interest => 'Special+Interest',
    :giving => 'Giving',
    :parks_recreation => 'Parks & Recreation',
    :gear => 'Parks & Recreation\Gear',
    :mind_body => 'Parks & Recreation\Mind & Body',
    :travel => 'Parks & Recreation\Travel',
    :vehicles => 'Parks & Recreation\Vehicles',
    :women => 'Parks & Recreation\Women',
    :reunions => 'Reunions',
    :sports => 'Sports',
    :action_sports => 'Action Sports',
    :auto_racing => 'Action Sports\Auto Racing',
    :bmx => 'Action Sports\BMX',
    :dirt_bike_racing => 'Action Sports\Dirt Bike Racing',
    :motocross => 'Action Sports\Motocross',
    :motorcycle_racing => 'Action Sports\Motorcycle Racing',
    :skateboarding => 'Action Sports\Skateboarding',
    :skydiving => 'Action Sports\Skydiving',
    :surfing => 'Action Sports\Surfing',
    :wake_kite_boarding => 'Action Sports\Wake/Kite Boarding',
    :water_skiing => 'Action Sports\Water Skiing',
    :wind_surfing => 'Action Sports\Wind Surfing',
    :baseball => 'Baseball',
    :little_league_baseball => 'Baseball\Little League Baseball',
    :tee_ball => 'Baseball\Tee Ball',
    :basketball => 'Basketball',
    :cheerleading => 'Cheerleading',
    :cycling => 'Cycling',
    :field_hockey => 'Field Hockey',
    :football => 'Football',
    :flag_football => 'Football\Flag Football',
    :football_au => 'Football\Football-AU',
    :golf => 'Golf',
    :ice_hockey => 'Ice Hockey',
    :lacrosse => 'Lacrosse',
    :more_sports => 'More Sports',
    :adventure_racing => 'More Sports\Adventure Racing',
    :archery => 'More Sports\Archery',
    :badminton => 'More Sports\Badminton',
    :billiards => 'More Sports\Billiards',
    :bowling => 'More Sports\Bowling',
    :cricket => 'More Sports\Cricket',
    :croquet => 'More Sports\Croquet',
    :curling => 'More Sports\Curling',
    :dance => 'More Sports\Dance',
    :disc_sports => 'More Sports\Disc Sports',
    :dodgeball => 'More Sports\Dodgeball',
    :duathlon => 'More Sports\Duathlon',
    :equestrian => 'More Sports\Equestrian',
    :fencing => 'More Sports\Fencing',
    :figure_skating => 'More Sports\Figure Skating',
    :gymnastics => 'More Sports\Gymnastics',
    :inline_hockey => 'More Sports\Inline Hockey',
    :inline_skating => 'More Sports\Inline Skating',
    :kickball => 'More Sports\Kickball',
    :martial_arts => 'More Sports\Martial Arts',
    :paintball => 'More Sports\Paintball',
    :polo => 'More Sports\Polo',
    :racquetball => 'More Sports\Racquetball',
    :rowing => 'More Sports\Rowing',
    :rugby => 'More Sports\Rugby',
    :scouting => 'More Sports\Scouting',
    :scuba_diving => 'More Sports\Scuba Diving',
    :skating => 'More Sports\Skating',
    :squash => 'More Sports\Squash',
    :ultimate_frisbee => 'More Sports\Ultimate Frisbee',
    :water_polo => 'More Sports\Water Polo',
    :mountain_biking => 'Mountain Biking',
    :outdoors => 'Outdoors',
    :canoeing => 'Outdoors\Canoeing',
    :climbing => 'Outdoors\Climbing',
    :hiking => 'Outdoors\Hiking',
    :kayaking => 'Outdoors\Kayaking',
    :orienteering => 'Outdoors\Orienteering',
    :outrigging => 'Outdoors\Outrigging',
    :rafting => 'Outdoors\Rafting',
    :racquetball => 'Racquetball',
    :rugby => 'Rugby',
    :running => 'Running',
    :cross_country => 'Running\Cross Country',
    :marathon_running => 'Running\Marathon Running',
    :track_field => 'Running\Track & Field',
    :trail_running => 'Running\Trail Running',
    :sailing => 'Sailing',
    :snow_sports => 'Snow Sports',
    :skiing => 'Snow Sports\Skiing',
    :snowboarding => 'Snow Sports\Snowboarding',
    :snowshoeing => 'Snow Sports\Snowshoeing',
    :soccer => 'Soccer',
    :softball => 'Softball',
    :softball_dixie => 'Softball\Softball-Dixie',
    :softball_fast_pitch => 'Softball\Softball-Fast Pitch',
    :softball_slow_pitch => 'Softball\Softball-Slow Pitch',
    :squash => 'Squash',
    :swimming => 'Swimming',
    :diving => 'Swimming\Diving',
    :tennis => 'Tennis',
    :other_tennis => 'Tennis\Other Tennis',
    :usta => 'Tennis\USTA',
    :triathlon => 'Triathlon',
    :volleyball => 'Volleyball',
    :walking => 'Walking',
    :wrestling => 'Wrestling'
  }
end