Sha256: b3274e7d70ed4fcedb24f72ab536d45fc0ae0c4b11f119e8afbaf451dfd77ff6
Contents?: true
Size: 1.23 KB
Versions: 6
Compression:
Stored size: 1.23 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 = ["mindtonic@gmail.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 = "" # 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.9.0" end
Version data entries
6 entries across 6 versions & 1 rubygems