-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocial_linker.gemspec
26 lines (20 loc) · 1.06 KB
/
social_linker.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'social_linker/version'
Gem::Specification.new do |spec|
spec.name = "social_linker"
spec.version = SocialLinker::VERSION
spec.authors = ["murb"]
spec.email = ["[email protected]"]
spec.summary = "Social linker generates share-links for the different social networks from a simple SocialLinker::Subject class"
spec.description = "Social linker generates share-links for the different social networks from a simple SocialLinker::Subject class.
Supported networks are: Twitter, Facebook, LinkedIn, Google+, Pinterest, and email"
spec.homepage = "https://murb.nl/blog?tags=social_linker"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1"
spec.add_development_dependency "rake", "~> 11 "
spec.add_development_dependency "rspec", "~> 3"
end