Sha256: 14f35adc661850e35e59a089b345c914709c4a6876e93ed7123e336551beaa90
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 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", "~> 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.2.0 | virility.gemspec |