follow_redirect 0.0.2 → 0.0.3
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.textile +15 -0
- data/lib/follow_redirect/version.rb +1 -1
- metadata +2 -1
data/README.textile
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
h1. follow_redirect
|
|
2
|
+
|
|
3
|
+
h2. description
|
|
4
|
+
|
|
5
|
+
Simple gem to find the eventual destination of a url through its redirects if it has any.
|
|
6
|
+
|
|
7
|
+
h2. installation
|
|
8
|
+
|
|
9
|
+
Just add 'gem follow_redirects' to your Gemfile
|
|
10
|
+
|
|
11
|
+
h2. usage
|
|
12
|
+
|
|
13
|
+
_FollowRedirect::Url.resolve("http://google.com")_
|
|
14
|
+
|
|
15
|
+
Simples.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: follow_redirect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -22,6 +22,7 @@ files:
|
|
|
22
22
|
- .gitignore
|
|
23
23
|
- .rvmrc
|
|
24
24
|
- Gemfile
|
|
25
|
+
- README.textile
|
|
25
26
|
- Rakefile
|
|
26
27
|
- follow_redirect.gemspec
|
|
27
28
|
- lib/follow_redirect.rb
|