-
Notifications
You must be signed in to change notification settings - Fork 5
/
virility.gemspec
28 lines (26 loc) · 1.4 KB
/
virility.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- 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.11"
gem.add_dependency "multi_json", "~> 1.11"
end