series_timer 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -2,7 +2,10 @@
2
2
 
3
3
  scrapes the list of episodes of any series from wikipedia (i.e. http://en.wikipedia.org/wiki/List_of_House_episodes)
4
4
 
5
- # Usage
5
+ ## Download
6
+ https://rubygems.org/gems/series_timer
7
+
8
+ ## Usage
6
9
 
7
10
  ````./bin/seriestimr -[lac] <series names>````
8
11
 
@@ -56,7 +59,7 @@ ex:
56
59
 
57
60
  ## Authorship
58
61
 
59
- Written by [Adriano Bacha](http://github.com/abacha) for Mendicant University's [University-Web](https://github.com/mendicant-university/university-web).
62
+ Written by [Adriano Bacha](http://github.com/abacha) for Mendicant University's January 2012 core skills course.
60
63
 
61
64
  ## License
62
65
 
data/bin/series_timer CHANGED
@@ -1,10 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'bundler/setup'
4
- require 'net/http'
5
- require 'json'
6
- require 'date'
7
- require "optparse"
8
3
  require_relative '../lib/series_timer'
9
4
 
10
5
  usage = "usage: series_timer [-lac] [series1 series2 ...]"
@@ -0,0 +1 @@
1
+ [["1", "Winter Is Coming", "2011-04-17"], ["2", "The Kingsroad", "2011-04-24"], ["3", "Lord Snow", "2011-05-01"], ["4", "Cripples", "2011-05-08"], ["5", "The Wolf and the Lion", "2011-05-15"], ["6", "A Golden Crown", "2011-05-22"], ["7", "You Win or You Die", "2011-05-29"], ["8", "The Pointy End", "2011-06-05"], ["9", "Baelor", "2011-06-12"], ["10", "Fire and Blood", "2011-06-19"], ["1", "", "2012-04-01"], ["2", "", "2012-04-08"], ["3", "", "2012-04-15"], ["4", "", "2012-04-22"], ["5", "", "2012-04-29"], ["6", "", "2012-05-06"], ["7", "", "2012-05-13"], ["8", "", "2012-05-20"], ["9", "Blackwater", "2012-05-27"], ["10", "", "2012-06-03"]]
@@ -0,0 +1 @@
1
+ [["1", "Pilot", "2009-09-22"], ["2", "Stripped", "2009-09-29"], ["3", "Home", "2009-10-06"], ["4", "Fixed", "2009-10-13"], ["5", "Crash", "2009-10-20"], ["6", "Conjugal", "2009-11-03"], ["7", "Unorthodox", "2009-11-10"], ["8", "Unprepared", "2009-11-17"], ["9", "Threesome", "2009-11-24"], ["10", "Lifeguard", "2009-12-15"], ["11", "Infamy", "2010-01-05"], ["12", "Painkiller", "2010-01-12"], ["13", "Bad", "2010-02-02"], ["14", "Hi", "2010-02-09"], ["15", "Bang", "2010-03-02"], ["16", "Fleas", "2010-03-09"], ["17", "Heart", "2010-03-16"], ["18", "Doubt", "2010-04-06"], ["19", "Boom", "2010-04-27"], ["20", "Mock", "2010-05-04"], ["21", "Unplugged", "2010-05-11"], ["22", "Hybristophilia", "2010-05-18"], ["23", "Running", "2010-05-25"], ["1", "Taking Control", "2010-09-28"], ["2", "Double Jeopardy", "2010-10-05"], ["3", "Breaking Fast", "2010-10-12"], ["4", "Cleaning House", "2010-10-19"], ["5", "VIP Treatment", "2010-10-26"], ["6", "Poisoned Pill", "2010-11-09"], ["7", "Bad Girls", "2010-11-16"], ["8", "On Tap", "2010-11-23"], ["9", "Nine Hours", "2010-12-14"], ["10", "Breaking Up", "2011-01-11"], ["11", "Two Courts", "2011-01-18"], ["12", "Silly Season", "2011-02-01"], ["13", "Real Deal", "2011-02-08"], ["14", "Net Worth", "2011-02-15"], ["15", "Silver Bullet", "2011-02-22"], ["16", "Great Firewall", "2011-03-01"], ["17", "Ham Sandwich", "2011-03-22"], ["18", "Killer Song", "2011-03-29"], ["19", "Wrongful Termination", "2011-04-05"], ["20", "Foreign Affairs", "2011-04-12"], ["21", "In Sickness", "2011-05-03"], ["22", "Getting Off", "2011-05-10"], ["23", "Closing Arguments", "2011-05-17"], ["1", "A New Day", "2011-09-25"], ["2", "The Death Zone", "2011-10-02"], ["3", "Get a Room", "2011-10-09"], ["4", "Feeding the Rat", "2011-10-16"], ["5", "Marthas and Caitlins", "2011-10-23"], ["6", "Affairs of State", "2011-10-30"], ["7", "Executive Order 13224", "2011-11-06"], ["8", "Death Row Tip", "2011-11-13"], ["9", "Whiskey Tango Foxtrot", "2011-11-20"], ["10", "Parenting Made Easy", "2011-12-04"], ["11", "What Went Wrong", "2011-12-11"], ["12", "Alienation of Affection", "2012-01-08"], ["13", "Bitcoin for Dummies", "2012-01-15"], ["14", "Another Ham Sandwich", "2012-01-29"], ["15", "Live From Damascus", "2012-02-19"]]
@@ -1,3 +1,3 @@
1
1
  module SeriesTimer
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
data/lib/series_timer.rb CHANGED
@@ -1,3 +1,8 @@
1
+ require 'bundler/setup'
2
+ require 'net/http'
3
+ require 'json'
4
+ require 'date'
5
+ require "optparse"
1
6
  require_relative '../lib/series_timer/series_manager'
2
7
  require_relative '../lib/series_timer/errors'
3
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: series_timer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-01-30 00:00:00.000000000 Z
12
+ date: 2012-02-04 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: scrapes the list of episodes of any series from wikipedia
15
15
  email:
@@ -28,6 +28,8 @@ files:
28
28
  - lib/series_timer.rb
29
29
  - cache/empty
30
30
  - cache/House.cache
31
+ - cache/Game of Thrones.cache
32
+ - cache/The Good Wife.cache
31
33
  - README.md
32
34
  homepage: http://github.com/series_timer
33
35
  licenses: []