podrick 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_BIN: bin
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'http://rubygems.org'
2
+
3
+ gemspec
4
+
5
+
6
+ group :development do
7
+ gem 'pry', :platform => :mri
8
+ end
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
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new(:test) do |test|
4
+ test.libs << 'test'
5
+ test.pattern = 'test/**/test_*.rb'
6
+ end
7
+
8
+ task :default => :test
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')