podrick 0.0.1
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.
- checksums.yaml +7 -0
- data/.bundle/config +2 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +38 -0
- data/README.md +11 -0
- data/Rakefile +8 -0
- data/bin/coderay +16 -0
- data/bin/nokogiri +16 -0
- data/bin/pry +16 -0
- data/test/assets/back_to_work.xml +6056 -0
- data/test/assets/by_the_way.xml +67 -0
- data/test/assets/radio_lab.xml +3605 -0
- data/test/assets/roderick_on_the_line.xml +267 -0
- data/test/assets/unprofessional.xml +879 -0
- data/test/assets/you_look_nice_today.xml +2223 -0
- data/test/helper.rb +12 -0
- data/test/podrick/test_episode.rb +72 -0
- data/test/podrick/test_podcast.rb +91 -0
- metadata +126 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 00437e7eea539a6312881647daae8834a3d28700
|
4
|
+
data.tar.gz: bf6df46486207b8f48d192f296f86861b1f0bd14
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2cf06ac817531a39687d395e24ce142f0aba56a11bae530aa359b20d6aef139874c3f7d913514b91f02f2acb72173b75989544e1713ffad55fcd9b010de32a28
|
7
|
+
data.tar.gz: 3a80c88a69288033bcae96c7d1e969bbc104dc8b9440ae7d5d641608073341d373bc8ed60979e14ce98f62558600255f6bf72edcb566a8517fc9666c6a24118b
|
data/.bundle/config
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
podrick (0.0.1)
|
5
|
+
faraday (~> 0.8.5)
|
6
|
+
nokogiri (~> 1.5.6)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: http://rubygems.org/
|
10
|
+
specs:
|
11
|
+
addressable (2.3.5)
|
12
|
+
coderay (1.0.9)
|
13
|
+
crack (0.4.1)
|
14
|
+
safe_yaml (~> 0.9.0)
|
15
|
+
faraday (0.8.8)
|
16
|
+
multipart-post (~> 1.2.0)
|
17
|
+
method_source (0.8.2)
|
18
|
+
minitest (4.7.5)
|
19
|
+
multipart-post (1.2.0)
|
20
|
+
nokogiri (1.5.10)
|
21
|
+
pry (0.9.12.2)
|
22
|
+
coderay (~> 1.0.5)
|
23
|
+
method_source (~> 0.8)
|
24
|
+
slop (~> 3.4)
|
25
|
+
safe_yaml (0.9.5)
|
26
|
+
slop (3.4.6)
|
27
|
+
webmock (1.13.0)
|
28
|
+
addressable (>= 2.2.7)
|
29
|
+
crack (>= 0.3.2)
|
30
|
+
|
31
|
+
PLATFORMS
|
32
|
+
ruby
|
33
|
+
|
34
|
+
DEPENDENCIES
|
35
|
+
minitest (~> 4)
|
36
|
+
podrick!
|
37
|
+
pry
|
38
|
+
webmock (~> 1.9)
|
data/README.md
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
```
|
2
|
+
_______ __ __ __
|
3
|
+
/ \ / | / | / |
|
4
|
+
$$$$$$$ | ______ ____$$ | ______ $$/ _______ $$ | __
|
5
|
+
$$ |__$$ |/ \ / $$ | / \ / | / |$$ | / |
|
6
|
+
$$ $$//$$$$$$ |/$$$$$$$ |/$$$$$$ |$$ |/$$$$$$$/ $$ |_/$$/
|
7
|
+
$$$$$$$/ $$ | $$ |$$ | $$ |$$ | $$/ $$ |$$ | $$ $$<
|
8
|
+
$$ | $$ \__$$ |$$ \__$$ |$$ | $$ |$$ \_____ $$$$$$ \
|
9
|
+
$$ | $$ $$/ $$ $$ |$$ | $$ |$$ |$$ | $$ |
|
10
|
+
$$/ $$$$$$/ $$$$$$$/ $$/ $$/ $$$$$$$/ $$/ $$/
|
11
|
+
```
|
data/Rakefile
ADDED
data/bin/coderay
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'coderay' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('coderay', 'coderay')
|
data/bin/nokogiri
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'nokogiri' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('nokogiri', 'nokogiri')
|
data/bin/pry
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'pry' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('pry', 'pry')
|