public
Description: A Ruby gem that connects to various URL shortening services like RubyURL, moourl, etc.
Homepage:
Clone URL: git://github.com/robbyrussell/shorturl.git
shorturl / shorturl.gemspec
100644 27 lines (25 sloc) 0.806 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require "rubygems"
 
SPEC = Gem::Specification.new do |s|
  s.name = "shorturl"
  s.version = "0.8.7"
  s.author = "Robby Russell"
  s.email = "robby@planetargon.com"
  s.homepage = "http://github.com/robbyrussell/shorturl/"
  s.platform = Gem::Platform::RUBY
  s.summary = "Shortens URLs using services such as RubyURL, urlTea, bit.ly, moourl.com, and TinyURL"
  candidates = Dir["{bin,lib,doc,test,examples}/**/*"]
  s.files = candidates
  s.require_path = "lib"
  s.autorequire = "shorturl"
  s.test_file = "test/ts_all.rb"
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "TODO", "MIT-LICENSE", "ChangeLog"]
  s.rdoc_options = [
    "--title", "ShortURL Documentation",
    "--main", "README",
    "-S",
    "-N",
    "--all"]
  s.default_executable = "shorturl"
  s.executables = ["shorturl"]
end