unshortme 0.1.2 → 1.0.0
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/CHANGELOG +1 -0
- data/LICENSE +11 -5
- data/README.rdoc +5 -1
- data/unshortme.gemspec +5 -5
- metadata +62 -75
- data/Manifest +0 -10
data/CHANGELOG
CHANGED
data/LICENSE
CHANGED
@@ -1,20 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
1
3
|
Copyright (c) 2011, Julián David Duque
|
2
4
|
All rights reserved.
|
3
|
-
|
5
|
+
|
4
6
|
Redistribution and use in source and binary forms, with or without modification,
|
5
7
|
are permitted provided that the following conditions are met:
|
6
|
-
|
8
|
+
|
7
9
|
* Redistributions of source code must retain the above copyright notice,
|
8
10
|
this list of conditions and the following disclaimer.
|
9
|
-
|
11
|
+
|
10
12
|
* Redistributions in binary form must reproduce the above copyright notice,
|
11
13
|
this list of conditions and the following disclaimer in the documentation
|
12
14
|
and/or other materials provided with the distribution.
|
13
|
-
|
15
|
+
|
14
16
|
* The name of Julián David Duque may not be used to endorse or promote
|
15
17
|
products derived from this software without specific prior written
|
16
18
|
permission.
|
17
|
-
|
19
|
+
|
18
20
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
21
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
22
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
@@ -25,3 +27,7 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
25
27
|
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26
28
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
27
29
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
|
+
|
31
|
+
Aclaration:
|
32
|
+
|
33
|
+
I'm not the owner of http://unshort.me service, it's an API that I wrote for that service ;)
|
data/README.rdoc
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
A RubyGem for unshort.me API
|
4
4
|
|
5
|
+
What is unshort.me?
|
6
|
+
|
7
|
+
{Unshort.me}[http://unshort.me] is a service that let you unshort any URL created using the URL shortening services. Currently, there are too many URL shortening services. Unshort.me provides a single place to unshort all those URLs.
|
8
|
+
|
5
9
|
= Installation
|
6
10
|
|
7
11
|
gem install unshortme
|
@@ -11,4 +15,4 @@ gem install unshortme
|
|
11
15
|
require 'rubygems'
|
12
16
|
require 'unshortme'
|
13
17
|
|
14
|
-
unshorted = Unshortme.unshort("http://bit.ly/xxxx")
|
18
|
+
unshorted = Unshortme.unshort("http://bit.ly/xxxx")
|
data/unshortme.gemspec
CHANGED
@@ -2,21 +2,21 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{unshortme}
|
5
|
-
s.version = "0.
|
5
|
+
s.version = "1.0.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = [%q{Julian Duque}]
|
9
|
-
s.date = %q{
|
10
|
-
s.description = %q{Use the unshort.me API}
|
9
|
+
s.date = %q{2012-11-17}
|
10
|
+
s.description = %q{Use the http://unshort.me API to unshort URL from many providers. }
|
11
11
|
s.email = %q{julianduquej@gmail.com}
|
12
12
|
s.extra_rdoc_files = [%q{CHANGELOG}, %q{LICENSE}, %q{README.rdoc}, %q{lib/unshortme.rb}]
|
13
|
-
s.files = [%q{CHANGELOG}, %q{LICENSE}, %q{README.rdoc}, %q{Rakefile}, %q{init.rb}, %q{lib/unshortme.rb}, %q{spec/spec_helper.rb}, %q{spec/unshortme_spec.rb}, %q{unshortme.gemspec}
|
13
|
+
s.files = [%q{CHANGELOG}, %q{LICENSE}, %q{README.rdoc}, %q{Rakefile}, %q{init.rb}, %q{lib/unshortme.rb}, %q{spec/spec_helper.rb}, %q{spec/unshortme_spec.rb}, %q{unshortme.gemspec}]
|
14
14
|
s.homepage = %q{http://github.com/julianduque/unshortme}
|
15
15
|
s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Unshortme}, %q{--main}, %q{README.rdoc}]
|
16
16
|
s.require_paths = [%q{lib}]
|
17
17
|
s.rubyforge_project = %q{unshortme}
|
18
18
|
s.rubygems_version = %q{1.8.5}
|
19
|
-
s.summary = %q{Use the unshort.me API}
|
19
|
+
s.summary = %q{Use the http://unshort.me API}
|
20
20
|
|
21
21
|
if s.respond_to? :specification_version then
|
22
22
|
s.specification_version = 3
|
metadata
CHANGED
@@ -1,76 +1,74 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: unshortme
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
- 2
|
10
|
-
version: 0.1.2
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Julian Duque
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-11-17 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
21
15
|
name: json
|
22
|
-
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
26
|
-
- -
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
|
29
|
-
segments:
|
30
|
-
- 0
|
31
|
-
version: "0"
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
32
22
|
type: :runtime
|
33
|
-
version_requirements: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: rest-client
|
36
23
|
prerelease: false
|
37
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
25
|
none: false
|
39
|
-
requirements:
|
40
|
-
- -
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rest-client
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
46
38
|
type: :runtime
|
47
|
-
version_requirements: *id002
|
48
|
-
- !ruby/object:Gem::Dependency
|
49
|
-
name: rspec
|
50
39
|
prerelease: false
|
51
|
-
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
41
|
none: false
|
53
|
-
requirements:
|
54
|
-
- -
|
55
|
-
- !ruby/object:Gem::Version
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rspec
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
60
54
|
type: :development
|
61
|
-
|
62
|
-
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description: ! 'Use the http://unshort.me API to unshort URL from many providers. '
|
63
63
|
email: julianduquej@gmail.com
|
64
64
|
executables: []
|
65
|
-
|
66
65
|
extensions: []
|
67
|
-
|
68
|
-
extra_rdoc_files:
|
66
|
+
extra_rdoc_files:
|
69
67
|
- CHANGELOG
|
70
68
|
- LICENSE
|
71
69
|
- README.rdoc
|
72
70
|
- lib/unshortme.rb
|
73
|
-
files:
|
71
|
+
files:
|
74
72
|
- CHANGELOG
|
75
73
|
- LICENSE
|
76
74
|
- README.rdoc
|
@@ -80,45 +78,34 @@ files:
|
|
80
78
|
- spec/spec_helper.rb
|
81
79
|
- spec/unshortme_spec.rb
|
82
80
|
- unshortme.gemspec
|
83
|
-
- Manifest
|
84
81
|
homepage: http://github.com/julianduque/unshortme
|
85
82
|
licenses: []
|
86
|
-
|
87
83
|
post_install_message:
|
88
|
-
rdoc_options:
|
84
|
+
rdoc_options:
|
89
85
|
- --line-numbers
|
90
86
|
- --inline-source
|
91
87
|
- --title
|
92
88
|
- Unshortme
|
93
89
|
- --main
|
94
90
|
- README.rdoc
|
95
|
-
require_paths:
|
91
|
+
require_paths:
|
96
92
|
- lib
|
97
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
98
94
|
none: false
|
99
|
-
requirements:
|
100
|
-
- -
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
|
103
|
-
|
104
|
-
- 0
|
105
|
-
version: "0"
|
106
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ! '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
107
100
|
none: false
|
108
|
-
requirements:
|
109
|
-
- -
|
110
|
-
- !ruby/object:Gem::Version
|
111
|
-
|
112
|
-
segments:
|
113
|
-
- 1
|
114
|
-
- 2
|
115
|
-
version: "1.2"
|
101
|
+
requirements:
|
102
|
+
- - ! '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '1.2'
|
116
105
|
requirements: []
|
117
|
-
|
118
106
|
rubyforge_project: unshortme
|
119
|
-
rubygems_version: 1.8.
|
107
|
+
rubygems_version: 1.8.23
|
120
108
|
signing_key:
|
121
109
|
specification_version: 3
|
122
|
-
summary: Use the unshort.me API
|
110
|
+
summary: Use the http://unshort.me API
|
123
111
|
test_files: []
|
124
|
-
|