Sha256: fe41861c233cc8fcd7b7d0c9022982a0c0833e588def1e699b53ee125b892c94

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

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

Gem::Specification.new do |gem|
  # Details
  gem.name          = "virility"
  gem.version       = Virility::VERSION
  gem.authors       = ["Jay Sanders"]
  gem.email         = ["jay@allieslabs.com"]
  gem.description   = "Virility leverages the API's of many popular social services to collect data about the virility of a particular URL."
  gem.summary       = "Virility calls upon the API's of many popular social services such as Facebook, Twitter and Pinterest to collect the number of likes, tweets and pins of a particular URL.  Written with a modular construction, Virility makes it easy to drop new data collection strategies into the framework so that you can collect all of your statistics in one easy location."
  gem.homepage      = "http://github.com/mindtonic/virility"
  # Files
  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"]
  # Development
  gem.add_development_dependency "rspec", "~> 2.6"
  # Dependencies
  gem.add_dependency "httparty", "~> 0.13"
  gem.add_dependency "multi_json", "~> 1.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
virility-0.1.4 virility.gemspec