Sha256: 37fc56b7852f818af6a9649e51388ae4fb98b6b67fb4d510c19610d51e39a2d1
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 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, Reddit 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" gem.licenses = ['MIT', 'Beerware'] # 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", "~> 3.4" gem.add_development_dependency "pry", "~> 0.10" # Dependencies gem.add_dependency "httparty", "~> 0.13" gem.add_dependency "multi_json", "~> 1.11" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
virility-0.3.0 | virility.gemspec |