Sha256: a781ead56b796ee65d8fa855b154258e9d6ab34e1842c1b93b154850bd07fd56

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require File.join File.basename(Dir.pwd), 'version'

description = <<'EOF'
Compress tweets using a variety of common substitutions in order to maximize
room for hashtags, comments on retweets, or just to fit as much information as
possible into a single tweet without compromising clarity.
EOF

Gem::Specification.new do |gem|
  gem.license       = 'GPL-3'
  gem.name          = File.basename(Dir.pwd)
  gem.version       = TweetCompressor::VERSION
  gem.authors       = [`git config user.name` ]
  gem.email         = [`git config user.email`]
  gem.description   = description
  gem.summary       = %q{Compress tweets to less than 140 characters.}
  gem.homepage      = "https://github.com/CodeGnome/#{gem.name}"

  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 = %w[lib]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tweet_compressor-0.8.2 tweet_compressor.gemspec