Sha256: 600e12a3ec6d67997b43848b3a64a8b488071c1f7491ecb5d4d8d446cf4d4968
Contents?: true
Size: 815 Bytes
Versions: 1
Compression:
Stored size: 815 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'google_shortener/version' Gem::Specification.new do |gem| gem.name = "google_shortener" gem.version = VERSION gem.authors = ["Chaitanya Vellanki"] gem.email = ["me@chaitanyavellanki.com"] gem.description = %q{Rubygem to shorten long url} gem.summary = %q{Uses url shortener services from Google} gem.homepage = "" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_development_dependency "shoulda-context" gem.add_runtime_dependency "json" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
google_shortener-0.0.1 | google_shortener.gemspec |