simpsons_world 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +77 -0
  5. data/LICENSE +22 -0
  6. data/README.md +41 -0
  7. data/Rakefile +14 -0
  8. data/lib/data/.gitkeep +0 -0
  9. data/lib/data/season-1.yml +69 -0
  10. data/lib/data/season-10.yml +116 -0
  11. data/lib/data/season-11.yml +114 -0
  12. data/lib/data/season-12.yml +114 -0
  13. data/lib/data/season-13.yml +120 -0
  14. data/lib/data/season-14.yml +129 -0
  15. data/lib/data/season-15.yml +125 -0
  16. data/lib/data/season-16.yml +118 -0
  17. data/lib/data/season-17.yml +121 -0
  18. data/lib/data/season-18.yml +123 -0
  19. data/lib/data/season-19.yml +112 -0
  20. data/lib/data/season-2.yml +113 -0
  21. data/lib/data/season-20.yml +106 -0
  22. data/lib/data/season-21.yml +126 -0
  23. data/lib/data/season-22.yml +122 -0
  24. data/lib/data/season-23.yml +117 -0
  25. data/lib/data/season-24.yml +115 -0
  26. data/lib/data/season-25.yml +126 -0
  27. data/lib/data/season-26.yml +49 -0
  28. data/lib/data/season-3.yml +125 -0
  29. data/lib/data/season-4.yml +112 -0
  30. data/lib/data/season-5.yml +107 -0
  31. data/lib/data/season-6.yml +123 -0
  32. data/lib/data/season-7.yml +124 -0
  33. data/lib/data/season-8.yml +128 -0
  34. data/lib/data/season-9.yml +123 -0
  35. data/lib/simpsons_world/railtie.rb +9 -0
  36. data/lib/simpsons_world/scrape.rb +28 -0
  37. data/lib/simpsons_world/season.rb +36 -0
  38. data/lib/simpsons_world/version.rb +3 -0
  39. data/lib/simpsons_world/view_helpers.rb +12 -0
  40. data/lib/simpsons_world.rb +13 -0
  41. data/simpsons_world.gemspec +28 -0
  42. data/spec/data/.gitkeep +0 -0
  43. data/spec/simpsons_world_spec.rb +125 -0
  44. data/spec/spec_helper.rb +4 -0
  45. data/spec/support/helpers.rb +9 -0
  46. metadata +191 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9d03f1d28ef572609667067c1ac9edce94e679ce
4
+ data.tar.gz: 586338cf1c07f76598b1b4bb9e7ad6b94a91b0e7
5
+ SHA512:
6
+ metadata.gz: af40cb9581ec05440e9c50468fbc42357da50fce81fc536985245f8730be14c6c70551fc21f87a710aa7a18ba58d1e7f4e7f78906d19155c3fcbf6b3cb4b31a5
7
+ data.tar.gz: df65dee34146c07baae757ab52666f15ec62866e020c48dd428730ac66c1cf21fd860b82061fa78b4c32548d1405aea9d1770f46d48b91e3ab1de8bc1d7cd49a
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /spec/data/*.yml
10
+ /tmp/
11
+ *.bundle
12
+ *.so
13
+ *.o
14
+ *.a
15
+ *.swp
16
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in simpsons_world.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,77 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ ## Uncomment and set this to only include directories you want to watch
5
+ # directories %w(app lib config test spec feature)
6
+
7
+ ## Uncomment to clear the screen before every task
8
+ # clearing :on
9
+
10
+ ## Guard internally checks for changes in the Guardfile and exits.
11
+ ## If you want Guard to automatically start up again, run guard in a
12
+ ## shell loop, e.g.:
13
+ ##
14
+ ## $ while bundle exec guard; do echo "Restarting Guard..."; done
15
+ ##
16
+ ## Note: if you are using the `directories` clause above and you are not
17
+ ## watching the project directory ('.'), the you will want to move the Guardfile
18
+ ## to a watched dir and symlink it back, e.g.
19
+ #
20
+ # $ mkdir config
21
+ # $ mv Guardfile config/
22
+ # $ ln -s config/Guardfile .
23
+ #
24
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
25
+
26
+ # Note: The cmd option is now required due to the increasing number of ways
27
+ # rspec may be run, below are examples of the most common uses.
28
+ # * bundler: 'bundle exec rspec'
29
+ # * bundler binstubs: 'bin/rspec'
30
+ # * spring: 'bin/rspec' (This will use spring if running and you have
31
+ # installed the spring binstubs per the docs)
32
+ # * zeus: 'zeus rspec' (requires the server to be started separately)
33
+ # * 'just' rspec: 'rspec'
34
+
35
+ guard :rspec, cmd: "bundle exec rspec --format doc --format Nc" do
36
+ require "guard/rspec/dsl"
37
+ dsl = Guard::RSpec::Dsl.new(self)
38
+
39
+ # Feel free to open issues for suggestions and improvements
40
+
41
+ # RSpec files
42
+ rspec = dsl.rspec
43
+ watch(rspec.spec_helper) { rspec.spec_dir }
44
+ watch(rspec.spec_support) { rspec.spec_dir }
45
+ watch(rspec.spec_files)
46
+
47
+ # Ruby files
48
+ ruby = dsl.ruby
49
+ dsl.watch_spec_files_for(ruby.lib_files)
50
+
51
+ # Rails files
52
+ rails = dsl.rails(view_extensions: %w(erb haml slim))
53
+ dsl.watch_spec_files_for(rails.app_files)
54
+ dsl.watch_spec_files_for(rails.views)
55
+
56
+ watch(rails.controllers) do |m|
57
+ [
58
+ rspec.spec.("routing/#{m[1]}_routing"),
59
+ rspec.spec.("controllers/#{m[1]}_controller"),
60
+ rspec.spec.("acceptance/#{m[1]}")
61
+ ]
62
+ end
63
+
64
+ # Rails config changes
65
+ watch(rails.spec_helper) { rspec.spec_dir }
66
+ watch(rails.routes) { "#{rspec.spec_dir}/routing" }
67
+ watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
68
+
69
+ # Capybara features specs
70
+ watch(rails.view_dirs) { |m| rspec.spec.("features/#{m[1]}") }
71
+
72
+ # Turnip features and steps
73
+ watch(%r{^spec/acceptance/(.+)\.feature$})
74
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
75
+ Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
76
+ end
77
+ end
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # SimpsonsWorld
2
+
3
+ Link to Simpsons episodes on the simpsonsworld.com website. Using either a season and episode number or an overall episode number this gem will generate a link to the episode streaming on the Simpsons World website.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'simpsons_world'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install simpsons_world
20
+
21
+ ## Usage
22
+
23
+ Use the view helper to get a full url to an episode.
24
+
25
+ ```ruby
26
+ simpsons_world_episode_url(season: 4, episode: 12) # http://www.simpsonsworld.com/video/306386499796
27
+ simpsons_world_episode_url(episode: 71) # http://www.simpsonsworld.com/video/306386499796
28
+ ```
29
+
30
+ See it in action at [The Episode Where](http://theepisodewhere.com).
31
+
32
+ ## Contributing
33
+
34
+ 1. Fork it ( https://github.com/mcianni/simpsons_world/fork )
35
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
36
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
37
+ 4. Push to the branch (`git push origin my-new-feature`)
38
+ 5. Create a new Pull Request
39
+
40
+ ## Disclaimer
41
+ This is *not* affiliated, in any way, with The Simpsons or Fox.
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ require 'rspec/core/rake_task'
2
+ require 'bundler/gem_tasks'
3
+ require './lib/simpsons_world'
4
+
5
+ desc "Scrape data from simpsonsworld.com"
6
+ task :scrape do
7
+ SimpsonsWorld::Scrape.all
8
+ end
9
+
10
+ RSpec::Core::RakeTask.new(:spec) do |task|
11
+ task.rspec_opts = ['--color', '--format', 'documentation']
12
+ end
13
+
14
+ #task :default => :spec
data/lib/data/.gitkeep ADDED
File without changes
@@ -0,0 +1,69 @@
1
+ ---
2
+ - 1
3
+ - 1:
4
+ :title: Simpsons Roasting on an Open Fire
5
+ :description: Homer decides to gamble on a "hunch" at the dog track when his annual
6
+ Christmas bonus is canceled.
7
+ :url: "/video/273376835817"
8
+ 2:
9
+ :title: Bart the Genius
10
+ :description: Bart is believed to be a genius after he switches I.Q. tests with
11
+ brainy Martin Prince.
12
+ :url: "/video/283744835990"
13
+ 3:
14
+ :title: Homer's Odyssey
15
+ :description: Fired from his job at the Nuclear Power Plant, Homer decides to
16
+ embark on a campaign to make all of Springfield safer.
17
+ :url: "/video/273381443699"
18
+ 4:
19
+ :title: There's No Disgrace Like Home
20
+ :description: After attending the annual company picnic, Homer becomes jealous
21
+ of fellow employees with 'normal' families. He decides to enlist the aid of
22
+ psychologist Marvin Monroe to treat his wife and children.
23
+ :url: "/video/273392195780"
24
+ 5:
25
+ :title: Bart the General
26
+ :description: Grandpa Simpson aids Bart in his war against a school bully and
27
+ his gang.
28
+ :url: "/video/300934723994"
29
+ 6:
30
+ :title: Moaning Lisa
31
+ :description: Lisa befriends a saxophone player when she develops a case of the
32
+ blues.
33
+ :url: "/video/273391683535"
34
+ 7:
35
+ :title: The Call of the Simpsons
36
+ :description: Homer is mistaken for Bigfoot when he takes his family on a trip
37
+ into the wilderness in their new camper.
38
+ :url: "/video/273396803837"
39
+ 8:
40
+ :title: The Telltale Head
41
+ :description: Bart attempts to impress his new friends by vandalizing a statue
42
+ of the town's founding father, Jebediah Springfield.
43
+ :url: "/video/305663555641"
44
+ 9:
45
+ :title: Life on the Fast Lane
46
+ :description: Marge contemplates having an affair with a local womanizer after
47
+ Homer selfishly buys her a bowling ball for her birthday.
48
+ :url: "/video/280384579592"
49
+ 10:
50
+ :title: Homer's Night Out
51
+ :description: Bart photographs Homer with belly-dancer Princess Kashmir. Marge
52
+ will only forgive her husband when he proves to Bart that all women are not
53
+ merely sexual objects.
54
+ :url: "/video/275197507879"
55
+ 11:
56
+ :title: The Crepes of Wrath
57
+ :description: To Homer's delight, Bart is sent to France for the summer as part
58
+ of a student exchange program.
59
+ :url: "/video/306382403766"
60
+ 12:
61
+ :title: Krusty Gets Busted
62
+ :description: When Homer positively identifies Krusty the Clown as an armed robber,
63
+ Bart attempts to clear his idol's name.
64
+ :url: "/video/288019523914"
65
+ 13:
66
+ :title: Some Enchanted Evening
67
+ :description: Marge and Homer unwittingly leave their children in the care of
68
+ a villainous babysitter when they attempt to rekindle their marriage.
69
+ :url: "/video/274504771647"
@@ -0,0 +1,116 @@
1
+ ---
2
+ - 10
3
+ - 1:
4
+ :title: Lard of the Dance
5
+ :description: Homer thinks he can net a fortune by recycling grease. Lisa helps
6
+ organize a school dance.
7
+ :url: "/video/292933187533"
8
+ 2:
9
+ :title: The Wizard of Evergreen Terrace
10
+ :description: After realizing half his life is over, Homer decides to become the
11
+ next Thomas Edison.
12
+ :url: "/video/306849859555"
13
+ 3:
14
+ :title: Bart the Mother
15
+ :description: Bart tends to a nest filled with eggs after he inadvertently kills
16
+ a bird with a BB gun.
17
+ :url: "/video/306854979520"
18
+ 4:
19
+ :title: Treehouse of Horror IX
20
+ :description: An evil toupee possesses Homer; Bart and Lisa find themselves trapped
21
+ inside an Itchy & Scratchy cartoon; baby Maggie turns out to be the daughter
22
+ of a space alien.
23
+ :url: "/video/302824515669"
24
+ 5:
25
+ :title: When You Dish Upon a Star
26
+ :description: Homer befriends a group of Hollywood celebrities vacationing in
27
+ a remote part of town and promises to keep their whereabouts a secret.
28
+ :url: "/video/307849283884"
29
+ 6:
30
+ :title: D'oh-in' in the Wind
31
+ :description: Homer embraces his newly discovered hippie heritage.
32
+ :url: "/video/294754883755"
33
+ 7:
34
+ :title: Lisa Gets an 'A'
35
+ :description: Lisa suffers a guilty conscience after she cheats on an exam. Homer
36
+ believes he will save a fortune by raising his own lobster.
37
+ :url: "/video/280406083749"
38
+ 8:
39
+ :title: 'Homer Simpson in: ''Kidney Trouble'''
40
+ :description: Homer offers to donate one of his kidneys to Grampa until he realizes
41
+ the surgery will place his own life in jeopardy.
42
+ :url: "/video/280386115837"
43
+ 9:
44
+ :title: Mayored to the Mob
45
+ :description: Homer takes on the mob when he acts as Mayor Quimby's bodyguard.
46
+ :url: "/video/311649347866"
47
+ 10:
48
+ :title: Viva Ned Flanders
49
+ :description: Homer shows Flanders how to enjoy life by taking him to Las Vegas.
50
+ :url: "/video/302821955599"
51
+ 11:
52
+ :title: Wild Barts Can't Be Broken
53
+ :description: The children of Springfield rebel after Wiggum enforces a curfew.
54
+ :url: "/video/306180163857"
55
+ 12:
56
+ :title: Sunday, Cruddy Sunday
57
+ :description: Homer and his friends eagerly anticipate attending the Super Bowl
58
+ until a ticketing snafu threatens to keep them from seeing the game.
59
+ :url: "/video/306862147702"
60
+ 13:
61
+ :title: Homer to the Max
62
+ :description: Homer changes his name when a dimwitted television show character
63
+ named "Homer Simpson" becomes an overnight sensation.
64
+ :url: "/video/311093827909"
65
+ 14:
66
+ :title: I'm with Cupid
67
+ :description: Apu showers his wife with Valentine's Day surprises making men throughout
68
+ Springfield look like cheapskates.
69
+ :url: "/video/310420547750"
70
+ 15:
71
+ :title: 'Marge Simpson in: ''Screaming Yellow Honkers'''
72
+ :description: Marge discovers the pleasures of driving a sport utility vehicle
73
+ until aggressive highway habits cost her.
74
+ :url: "/video/280390211796"
75
+ 16:
76
+ :title: Make Room for Lisa
77
+ :description: Lisa exhibits signs of stress when she is forced into sharing her
78
+ brother's bedroom. Marge becomes addicted to eavesdropping on cellular phone
79
+ conversations.
80
+ :url: "/video/288073795687"
81
+ 17:
82
+ :title: Maximum Homerdrive
83
+ :description: Homer and Bart take attempt to deliver a dead trucker's cargo on
84
+ schedule. Meanwhile, Marge decides to have an adventure of her own and purchases
85
+ a new doorbell.
86
+ :url: "/video/294751811564"
87
+ 18:
88
+ :title: Simpsons Bible Stories
89
+ :description: While listening to one of Reverend Lovejoy's sermons on a sweltering
90
+ Easter Sunday morning, the Simpsons fall asleep and envision themselves as characters
91
+ from the Bible.
92
+ :url: "/video/299678275566"
93
+ 19:
94
+ :title: Mom and Pop Art
95
+ :description: Homer pursues a career as an artist when his misshapen barbecue
96
+ pit attracts the attention of a gallery.
97
+ :url: "/video/310457411688"
98
+ 20:
99
+ :title: The Old Man and the 'C' Student
100
+ :description: Bart must perform community service at Grampa's retirement home.
101
+ :url: "/video/279757379586"
102
+ 21:
103
+ :title: Monty Can't Buy Me Love
104
+ :description: Mr. Burns attempts to win adoration by transporting the Loch Ness
105
+ monster to Springfield.
106
+ :url: "/video/310427203648"
107
+ 22:
108
+ :title: They Saved Lisa's Brain
109
+ :description: Lisa is invited to join Mensa; Homer receives a free erotic photo
110
+ session.
111
+ :url: "/video/306868803826"
112
+ 23:
113
+ :title: Thirty Minutes Over Tokyo
114
+ :description: The Simpsons board a mega-saver flight for Tokyo, only to find themselves
115
+ trapped overseas when they run out of money.
116
+ :url: "/video/306901571847"
@@ -0,0 +1,114 @@
1
+ ---
2
+ - 11
3
+ - 1:
4
+ :title: Beyond Blunderdome
5
+ :description: Studio executives panic when actor Mel Gibson taps Homer to help
6
+ him retool his latest film.
7
+ :url: "/video/306906179700"
8
+ 2:
9
+ :title: Brother's Little Helper
10
+ :description: Bart is diagnosed with Attention Deficit Disorder and placed on
11
+ medication that quells his disruptive behavior.
12
+ :url: "/video/302833219678"
13
+ 3:
14
+ :title: Guess Who's Coming to Criticize Dinner
15
+ :description: Homer becomes the Springfield Shopper's new food critic, but raises
16
+ the ire of restaurateurs by panning their cooking.
17
+ :url: "/video/306911811691"
18
+ 4:
19
+ :title: Treehouse of Horror X
20
+ :description: Homer's Y2K error plunges the Earth into chaos; Bart and Lisa become
21
+ superheroes and attempt to save Lucy Lawless from a super-villain; someone terrorizes
22
+ the family after Marge kills Ned Flanders.
23
+ :url: "/video/307851843709"
24
+ 5:
25
+ :title: E-I-E-I-(Annoyed Grunt)
26
+ :description: The Simpsons relocate to a farm, where Homer produces a tomato that
27
+ is highly addictive.
28
+ :url: "/video/302847555697"
29
+ 6:
30
+ :title: Hello Gutter, Hello Fadder
31
+ :description: Homer becomes an instant celebrity when he bowls a perfect game. But
32
+ when his fame fades away, he lavishes his time on baby Maggie.
33
+ :url: "/video/294762563857"
34
+ 7:
35
+ :title: Eight Misbehavin'
36
+ :description: Apu is driven to the brink when his wife, Manjula, gives birth to
37
+ octuplets.
38
+ :url: "/video/306920003903"
39
+ 8:
40
+ :title: Take My Wife, Sleaze
41
+ :description: Homer wins a vintage motorcycle during a dance contest - and attracts
42
+ the attention of Hell's Satans when he forms his own gang.
43
+ :url: "/video/301643843522"
44
+ 9:
45
+ :title: Grift of the Magi
46
+ :description: As the Christmas holiday approaches... Springfield Elementary closes
47
+ its doors for financial reasons, only to reopen when a mysterious organization
48
+ steps in to help.
49
+ :url: "/video/301646915513"
50
+ 10:
51
+ :title: Little Big Mom
52
+ :description: Lisa becomes mother-of-the-house when Marge is hospitalized with
53
+ a broken leg.
54
+ :url: "/video/300903491898"
55
+ 11:
56
+ :title: Faith Off
57
+ :description: Bart believes he has the power to heal the sick.
58
+ :url: "/video/300909123775"
59
+ 12:
60
+ :title: The Mansion Family
61
+ :description: The Simpsons care for Burns' mansion when the billionaire leaves
62
+ town for a medical exam.
63
+ :url: "/video/279747651734"
64
+ 13:
65
+ :title: Saddlesore Galactica
66
+ :description: When Homer and Bart transform a loser racehorse into a champion,
67
+ rival jockeys threaten revenge.
68
+ :url: "/video/306926659533"
69
+ 14:
70
+ :title: Alone Again Natura-Diddily
71
+ :description: Homer attempts to help when Flanders experiences a tragic loss.
72
+ :url: "/video/288077891629"
73
+ 15:
74
+ :title: Missionary Impossible
75
+ :description: Homer is forced to become a missionary on a remote island after
76
+ he pledges a large sum of money to PBS.
77
+ :url: "/video/310458435665"
78
+ 16:
79
+ :title: Pygmoelian
80
+ :description: Moe undergoes plastic surgery and becomes a hot new soap opera star.
81
+ :url: "/video/294758467783"
82
+ 17:
83
+ :title: Bart to the Future
84
+ :description: A Native American casino manager shows Bart a glimpse into the future...
85
+ a time when Bart is an over-the-hill moocher and Lisa is President of the United
86
+ States.
87
+ :url: "/video/302835267686"
88
+ 18:
89
+ :title: Days of Wine and D'Ohses
90
+ :description: Barney swears off alcohol, creating a rift between he and Homer;
91
+ seeking to win a contest, Bart and Lisa attempt to photograph a new cover for
92
+ the Springfield phone book.
93
+ :url: "/video/306930755636"
94
+ 19:
95
+ :title: Kill the Alligator and Run
96
+ :description: The Simpsons find themselves on the run from the law after they
97
+ accidentally kill a beloved alligator while vacationing in Florida.
98
+ :url: "/video/292935747924"
99
+ 20:
100
+ :title: Last Tap Dance in Springfield
101
+ :description: After watching a movie about a sexy tango dancer, Lisa enrolls in
102
+ a tap dance class... only to discover she has two left feet; Bart and Milhouse
103
+ abandon a camping trip and hide out in a shopping mall.
104
+ :url: "/video/302849091512"
105
+ 21:
106
+ :title: It's a Mad, Mad, Mad, Mad Marge
107
+ :description: When Otto ditches his fiancée at the altar, Bart invites her to
108
+ stay with the family... forcing Marge to compete with the much younger woman.
109
+ :url: "/video/301683779737"
110
+ 22:
111
+ :title: Behind the Laughter
112
+ :description: This 'behind-the-scenes' special chronicles the ups and downs of
113
+ America's favorite sitcom family.
114
+ :url: "/video/279751747780"
@@ -0,0 +1,114 @@
1
+ ---
2
+ - 12
3
+ - 1:
4
+ :title: Treehouse of Horror XI
5
+ :description: On Halloween... a deceased Homer must perform one good deed to get
6
+ into heaven; angry dolphins launch an attack against the people of Springfield;
7
+ Bart and Lisa encounter characters from fairy tales.
8
+ :url: "/video/294765123660"
9
+ 2:
10
+ :title: A Tale of Two Springfields
11
+ :description: The townspeople of Springfield divide into two communities when
12
+ the telephone company institutes a new area code system.
13
+ :url: "/video/300911171880"
14
+ 3:
15
+ :title: Insane Clown Poppy
16
+ :description: Krusty discovers that he fathered a child during the Gulf War...
17
+ only to gamble away his daughter's precious violin during a poker game with
18
+ Fat Tony.
19
+ :url: "/video/306934851515"
20
+ 4:
21
+ :title: Lisa the Treehugger
22
+ :description: Lisa joins a group of eco-radicals in her attempt to save the city's
23
+ oldest redwood tree.
24
+ :url: "/video/306939971530"
25
+ 5:
26
+ :title: Homer vs. Dignity
27
+ :description: As the Thanksgiving holiday approaches, Mr. Burns hires Homer to
28
+ be his 'prank monkey.'
29
+ :url: "/video/311670339999"
30
+ 6:
31
+ :title: The Computer Wore Menace Shoes
32
+ :description: Homer uses his new computer to spread gossip on the Internet...
33
+ and eventually finds himself stranded on a mysterious island.
34
+ :url: "/video/302843971598"
35
+ 7:
36
+ :title: The Great Money Caper
37
+ :description: Homer and Bart become scam artists when the family is faced with
38
+ the cost of a sudden car repair.
39
+ :url: "/video/304456259863"
40
+ 8:
41
+ :title: Skinner's Sense of Snow
42
+ :description: As Christmas approaches, a winter snowstorm traps Bart, Lisa and
43
+ their fellow students inside Springfield Elementary, where Principal Skinner
44
+ attempts to keep chaos from erupting.
45
+ :url: "/video/307850819951"
46
+ 9:
47
+ :title: HOMR
48
+ :description: Homer experiences a dramatic increase in intelligence when researchers
49
+ remove a crayon lodged in his brain.
50
+ :url: "/video/306945603638"
51
+ 10:
52
+ :title: Pokey Mom
53
+ :description: With Marge's help, an inmate with artistic ability is paroled from
54
+ prison. But when the ex-con gets a job painting a mural at the elementary school,
55
+ he clashes with Skinner.
56
+ :url: "/video/302844995961"
57
+ 11:
58
+ :title: Worst Episode Ever
59
+ :description: When the Comic Book Guy suffers a heart attack, Bart and Milhouse
60
+ take over his store.
61
+ :url: "/video/310459971509"
62
+ 12:
63
+ :title: Tennis the Menace
64
+ :description: When the Simpsons construct a tennis court in the backyard, Bart
65
+ pairs up with Marge and becomes a tennis whiz... much to Homer's disappointment.
66
+ :url: "/video/300916291603"
67
+ 13:
68
+ :title: Day of the Jackanapes
69
+ :description: Sideshow Bob wins release from prison and hypnotizes Bart to kill
70
+ Krusty the Clown.
71
+ :url: "/video/307106883649"
72
+ 14:
73
+ :title: New Kids on the Blecch
74
+ :description: After casting Bart and his friends as singers in an all-boy band,
75
+ a crazed record producer launches an attack on the offices of MAD magazine.
76
+ :url: "/video/310437443723"
77
+ 15:
78
+ :title: Hungry Hungry Homer
79
+ :description: Homer goes on a hunger strike after learning that the owner of the
80
+ Springfield Isotopes plans on moving the team to Albuquerque.
81
+ :url: "/video/307850819931"
82
+ 16:
83
+ :title: Bye Bye Nerdy
84
+ :description: Lisa searches for answers when a new student at school bullies her;
85
+ Homer starts his own baby-proofing business.
86
+ :url: "/video/302846019892"
87
+ 17:
88
+ :title: Simpson Safari
89
+ :description: The Simpsons journey through Africa, where they encounter jungle
90
+ animals, tribesmen... and a chimp refuge owner with a secret.
91
+ :url: "/video/302845507908"
92
+ 18:
93
+ :title: Trilogy of Error
94
+ :description: 'A day in the life of the Simpsons replays three times: Homer panics
95
+ when Marge slices off his thumb; Lisa attempts to place her entry in the school
96
+ science fair; Bart is pursued by gangsters.'
97
+ :url: "/video/302842947994"
98
+ 19:
99
+ :title: I'm Goin' to Praise Land
100
+ :description: To fulfill his dead wife's final wish, Ned Flanders converts an
101
+ old, closed amusement park into a new Christian amusement park, 'Praiseland.' The
102
+ park flops until visitors begin having 'visions.'
103
+ :url: "/video/302848579632"
104
+ 20:
105
+ :title: Children of a Lesser Clod
106
+ :description: After Homer injures his knee, he's housebound for recuperation. A
107
+ successful stint as a babysitter prompts Homer to open a full-time daycare service,
108
+ leaving Bart and Lisa feeling neglected.
109
+ :url: "/video/301652547508"
110
+ 21:
111
+ :title: Simpsons Tall Tales
112
+ :description: The Simpsons jump a train, and meet a hobo, who tells them twisted
113
+ versions of three classic tales, all of which feature Simpsons characters.
114
+ :url: "/video/301685315594"